@charset "utf-8";

/* VARIÁVEIS DE DESIGN */
:root {
	--primary: #0071bc;       /* Azul Escuro */
	--primary-light: #29abe2; /* Azul Claro */
	--dark-bg: #0f172a;       /* Slate Escuro */
	--light-bg: #f8fafc;      /* Cinza Claro */
	--text-main: #334155;     /* Texto Padrão */
	--text-dark: #0f172a;     /* Títulos */
	--white: #ffffff;
	--border-color: #e2e8f0;
	--max-width: 1140px;
	--transition: all 0.3s ease;
}

/* CONFIGURAÇÕES GERAIS */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}


html {
	scroll-behavior: smooth;
	font-family: "MontserratLight", sans-serif;
}
body {
	background-color: var(--light-bg);
	color: var(--text-main);
	line-height: 1.6;
}
.container {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
}

/* HEADER & NAVEGAÇÃO */
header {
	/* background-color: var(--white); */
	background-color: #29abe2;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}
.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
}
.logo {
	font-size: 24px;
	font-weight: 800;
	color: var(--primary);
	text-decoration: none;
	letter-spacing: -0.5px;
}
a.logo img {
	display: block;
}
.logo span {
	color: var(--primary-light);
}
nav {
	display: flex;
	gap: 32px;
}
nav a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
}
nav a:hover {
	color: var(--primary);
}
.lang-selector {
	display: flex;
	gap: 8px;
	align-items: center;
	border-left: 1px solid var(--border-color);
	padding-left: 16px;
	padding-right: 24px;
}
.lang-selector button {
	background: none;
	border: none;
	font-weight: 700;
	cursor: pointer;
	font-size: 14px;
	transition: var(--transition);
}
.lang-active { color: var(--primary); }
.lang-inactive { color: #cbd5e1; }
.lang-inactive:hover { color: var(--primary); }

/* HERO SECTION */
.hero {

	position: relative; /* Establishes a boundary for the absolute layers */

	background: linear-gradient(135deg, var(--primary) 0%, var(--dark-bg) 100%); 

	color: var(--white);
	padding: 96px 0;

	/* Hide the banner initially and set up the fade duration */
	/* opacity: 0;
	transition: opacity 0.8s ease-in-out; */
}

.bg-layer {

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background: linear-gradient(135deg, var(--primary) 0%, var(--dark-bg) 100%);
	
	/* background-image: 
	linear-gradient(rgba(0,113,188,0.7), rgba(15,23,42,0.9)), 
	url('https://picsum.photos/1600/600?technology'); */

	/* Centers the image both horizontally and vertically */
	background-position: center; 
	
	/* Ensures the image stretches to fill the container without distortion */
	background-size: cover; 
	
	/* Prevents the image from repeating if the container is larger than 1600x600 */
	background-repeat: no-repeat;
	
	opacity: 0; /* Hidden by default */
	z-index: 1;
	/* This forces the browser to smoothly fade opacity changes over 1 second */
	transition: opacity 1500ms ease-in-out; 
}

/* The currently displayed background layer */
.bg-layer.active {
	opacity: 1;
	z-index: 2; 
}


.hero-content {
	position: relative;
	z-index: 3; /* Sits cleanly on top of the background */
	max-width: 800px;
	text-align: center;

}
.hero h1 {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 24px;
	font-family: "MontserratExtraBold", sans-serif;
}
.hero p {
	font-size: 20px;
	color: var(--primary-light);
	/* color: var(--white); */
	margin-bottom: 32px;
}
.btn {
	display: inline-block;
	background-color: var(--primary);
	color: var(--white);
	font-family: "MontserratExtraBold", sans-serif;
	padding: 12px 32px;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
	transition: var(--transition);
	border: none;
	cursor: pointer;
}
.btn:hover {
	background-color: var(--primary-light);
	transform: translateY(-2px);
}

/* SEÇÃO CICLO DE ENTREGA */
.ciclo-section {
	padding: 80px 0;
}
.section-header {
	text-align: center;
	margin-bottom: 64px;
}
.section-header h2 {
	font-size: 32px;
	color: var(--primary);
	margin-bottom: 16px;
	font-family: "MontserratExtraBold", sans-serif;
}
.section-header p {
	color: #64748b;
}
.grid-ciclo {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
}
.card {
	background-color: var(--white);
	padding: 32px;
	border-radius: 12px;
	/* border: 1px solid #f1f5f9; */
	border: 1px solid #d5d5d5;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
	text-align: center;
}
.card:hover {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}
.card-number {
	margin-left: auto;
  	margin-right: auto;

	width: 48px;
	height: 48px;
	background-color: #dbeafe;
	color: var(--primary);
	font-family: "MontserratExtraBold", sans-serif;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 20px;
}
.card h3 {
	font-size: 20px;
	color: var(--primary);
	margin-bottom: 12px;
	font-family: "MontserratExtraBold", sans-serif;
	/* text-align: center; */
}
.card p {
	font-size: 15px;
	color: #64748b;
}

/* MANIFESTO MÃO-NA-MASSA */
.manifesto {
	/* background-color: var(--dark-bg); */
	background-color: #000000;
	color: var(--white);
	padding: 80px 0;
	text-align: center;
}
.manifesto-content {
	max-width: 700px;
	margin: 0 auto;
}
.manifesto h2 {
	font-size: 32px;
	margin-bottom: 24px;
	font-family: "MontserratExtraBold", sans-serif;
}
.manifesto p {
	color: #94a3b8;
	font-size: 18px;
	line-height: 1.8;
}

/* FORMULÁRIO DE CONTATO */
.contato-section {
	padding: 80px 0;
	display: flex;
	justify-content: center;
}
.box-contato {
	background-color: var(--white);
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
	border: 1px solid #d5d5d5;
	width: 100%;
	max-width: 500px;
}
.box-contato h2 {
	color: var(--primary);
	font-family: "MontserratExtraBold", sans-serif;
}
.form-group {
	margin-bottom: 20px;
}
.form-group label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--text-dark);
}
.form-group input, .form-group textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	font-family: inherit;
	font-size: 15px;
	transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
	outline: none;
	border-color: var(--primary-light);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.btn-full {
	width: 100%;
	text-align: center;
}

#form-contato-feedback {
    white-space: pre-line;
    text-align: center;
}

.grecaptcha-badge {
    visibility: hidden !important;
}

footer {
	height:150px;
	width:100%;
	/* position:absolute; */
	bottom:0;
	left:0;
	border-top: 1px solid #999999;
	background: var(--primary); 
	color: white; 
}
footer #legalize{
	width: 100%;
	margin: 25px 0 0 0;
	font-size: 13px;
	text-align: center;
}
footer #legalize span{
	/* display: inline-block; */
	margin: 0 15px;
}

/* RESPONSIVIDADE (MOBILE) */
@media (max-width: 768px) {
	nav { display: none; } /* Oculta menu no mobile para simplificar */
	.hero h1 { font-size: 32px; }
	.hero p { font-size: 18px; }
	.manifesto h2 { font-size: 26px; }
	.manifesto p { font-size: 16px; }
}


