/* =========================
   SEÇÃO HERO (1ª PÁGINA DO SITE)
   Controla a primeira seção principal da página inicial
========================= */



/* SEÇÃO PRINCIPAL - TODA A TELA ORIGEM DO SITE (O FUNDO DO SITE BASICAMENTE) */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  padding-top: 210px;
  background-image: url("../images/FUNDOPRINCIPAL.png");
  z-index: 1;
}

/* CONTAINER - ESTRUTURA ORIGEM (RETANGULO QUE VAI SER INSERIDO CARDS/TEXTO DENTRO DELE)*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
/*===========================================================================================================*/


/* CARD PRINCIPAL - O QUE VAI DENTRO DO CONTAINER, NO CASO COLOCAMOS UMA IMAGEM DE TRIANGULOS*/
.card-destaque {
  position: relative;
  width: 100%;
  min-height: 560px;
  border-radius: 32px;
  overflow: visible;
  background-image: url("../images/fundocard1.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;      /* centraliza na altura */
  justify-content: center; /* mantém à esquerda */
  padding: 80px;
  
}

/* CAMADA ESCURA O CARD PRINCIPAL (UNICA FUNÇÃO É VISUAL, PARA DAR UMA SOMBRA NO CARD PRINCIPAL
NO CASO EU DEIXEI TRANSPARENTE POR ENQUANTO, NÃO GOSTEI DA SOMBRA) */

.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
}

/* TODO O CONTEÚDO DENTRO DO CARD */
.card-destaque {
  position: relative;
  z-index: 2;
}
 /*CONFIGURAÇÕES DA IMAGEM DO HOMEM QUE FICA POR CIMA DO CARD*/
.img-destaque {
  position: absolute;
  right: -5px; /* (move a imagem para direita, quanto mais negativo mais para direita)*/
  bottom: -370px; /*move a imagem para baixo, quanto mais negativo mais ela vai para baixo*/
  height: 850px;
  width: auto;
  z-index: 30;
  display: block;
  margin: 0;
  transform: none;
}

/* TÍTULO (CONFIGURAÇÃO DO TÍTULO DO CARD QUE É: WINFIT AGRO*/
.hero-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: #006459;
  margin-bottom: 26px;
}
/* ESSE COMANDO AQUI SERVE PARA PODER COLOCAR A IMAGEM DO SÍMBOLO DO + LADO A LADO COM O ESCRITO WINFIT AGRO
OU SEJA, ALINHA MELHOR O ESCRITO WINFIT AGRO COM A IMAGEM DO SÍMBOLO + */
.brand-text {
  display: inline-block;
}

/*===========================================================================================================*/
/* CONFIGURAÇÕES DA IMAGEM DO SÍMBOLO + */

.plus-img {
  height: 52px;
  width: auto;
  margin-left: 0px;
  vertical-align: middle;
}

/* Controla a cor do plus em texto */
.plus {
  color: #f5a623;
}

/*==============================================================================================================*/
/* SUBTÍTULOS */

/* ESSE COMANDO É PARA DIZER ONDE O SUBTITULO VAI ESTAR DENTRO DO CONTAINER,COMO SE FOSSE UMA CAIXA QUE VAI
SER UTILIZADA PARA COLOCAR UM TEXTO DENTRO, O MARGIM-BOTTOM NO CASO AQUI É UM 
ESPAÇO EXTERNO ABAIXO DO ELEMENTO, OU SEJA, O ESPAÇO ENTRE ELE E O TEXTO DO PARÁGRAFO ABAIXO*/
.hero-subtitles {
  margin-bottom: 28px;
}

/*AQUI CONTROLE AS REGRAS PARA OS TEXTOS DENTRO DO HERO-SUBTITLES*/
.hero-subtitles h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #006459;
  margin-bottom: 6px;
  line-height: 1.15;
}


/* TEXTO - CONTROLA O TEXTO: Potencialize seus resultados no agronegócio com uma solução 
completa que une receituário agronômico e gestão em um único sistema.*/
.hero-text {
  font-size: 1.08rem;
  color: #5b6764;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 32px;
}

/*==============================================================================================================*/

/* Cria o efeito de marca-texto atrás do destaque */
.highlight {
  position: relative;
  display: inline-block;
  z-index: 2;
}

.highlight::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 101%;
  height: 100%;
  background-color: #f5a623;
  z-index: -1;
  border-radius: 9px;
  transform: translateY(3px);
}
/*===========================================================================================================*/

/*ÍCONES DO LORDICONQUE IRÃO SEPARAR A PRIMEIRA SEÇÃO DA SEGUNDA. 
(+ 30 ANOS DE EXPERIENCIA, ATUAMOS EM TODO O BRASIL, + 1000 CLIENTES ATENDIDOS)*/
   


/* Controla o bloco que "ponteia" os stats entre seções */

.container-stats {
  padding-left: 0;
  padding-right: 100px;
  background-image: url(../images/fundoteste2.png);
  
  
}

/*controla o posicionamento dessa miniseção entre a seção 1 e 2*/
.stats-bridge {
  width: 100%;
  position: relative;
  z-index: -3;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}


/*estrutura de cada card (tivemos que fazer isso para criar cards que juntem o icone, numero e texto)*/
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 50px; /*altura do mini container entre a seção 1 e 2*/
  text-align: start;
  background-color: transparent;
  margin-top: -20px; /*ajustei os icones nessa margem para ficar mais perto do card */
  margin-left: 0px;
  z-index: 10000;
}

/*centraliza o ícone*/
.stat-icon {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
  left: -150px;
  z-index: 1;
}

/*controla o tamanho dos ícones*/
.stat-card lord-icon {
  width: 50px;
  height: 50px;
  z-index: 32;
}

/* controla o número que foi digitado em cima do ícone (+30 anos, +1000 clientes) */
.stat-number {
  position: relative;
  font-size: 2rem;
  font-weight: 800;
  color: #006459;
  margin-bottom: 4px;
  margin-top: 5px;
  left: -150px;
}
/* controla o escrito embaixo do ícone (anos de experiência, clientes, atuamos em todo Brasil) */
.stat-label {
  position: relative;
  font-size: 0.95rem;
  color: #7a8682;
  line-height: 1.4;
  margin:0; 
  min-height: 48px;
  left: -150px;
}

/*=================================================================================================================================*/

/* SEGUNDA SEÇÃO */

/* Controla fundo, espaçamento e camada da seção alternativa. Essa classe está cuidando mais do 
visual e do posicionamento da seção inteira. Ela faz isso:
coloca imagem de fundo
sobe a seção com margin-top: -30px
cria espaço interno em cima e embaixo
define position: relative para servir de referência a elementos posicionados dentro dela
controla a camada com z-index*/

.section-alt {
  background-image: url("../images/fundoteste9.png");
  margin-top: -30px;
  border-radius: 0px 0px 0 0;
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

/*Essa aqui está cuidando mais do alinhamento do conteúdo dentro da seção.
Ela faz isso:
ocupa toda a largura
cria espaçamento interno
usa flex
centraliza o conteúdo horizontalmente*/

.section-2 {
  width: 100%;
  padding: 120px 20px; /* 👈 espaço em cima e embaixo */
  display: flex;
  justify-content: center;
}


/*CONTROLA OO 1º CARD, COM FUNDO DA IMAGEM DO CANVA*/
.card-selection {
  position: relative;
  width: 100%;
  min-height: 50px;
  border-radius: 32px;
  overflow: hidden;
  background-image: url("../images/fundocardselection.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* 👈 joga pra direita */
  padding: 30px 50px;
  margin-bottom: 50px;
}
/*EFEITO POR CIMA DO CARD, POR ENQUANTO ESTÁ TRANSPARENTE, NÃO APARECE NADA*/
.overlay-selection {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 32px;
  background: transparent;
  
}
/*IMAGEM DO HOMEM QUE FICA POR CIMA DO CARD-SELECTION*/
.img-selection {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); /* 👈 centralização perfeita */
  height: 370px;
  width: auto;
  z-index: 5;
  display: block;
}
/*CONTROLE O PRIMEIRO TEXTO DO CARD: "SOLUÇÕES PARA O AGRO*/
.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  z-index: 2;
  text-align: right;
}
/*CONTROLA O SEGUNDO TEXTO DO CARD: "DO RECEITUÁRIO À NOTA FISCAL EM UM ÚNICO CLIQUE"*/
.section-title {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  z-index: 2;
  text-align: right;
}
/*CONTROLA O TERCEIRO TEXTO DO CARD: "INTEGRAÇÃO TOTAL PARA UMA OPERAÇÃO MAIS RÁPIDA E SEGURA"*/
.section-text {
  position: relative;
  font-size: 1.1rem;
  color: #e8f5f1;
  max-width: 650px;
  line-height: 1.7;
  z-index: 2;
  text-align: right;
  font-family: 'Montserrat', sans-serif;  
}

/*CONTROLA O TÍTULO (FACILIDADES PARA SEU DIA A DIA, COM WINFIT AGRO +....)*/

.coverage-card {
  background: transparent;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.00);
}

/* título */
.coverage-card h2 {
  font-size: 20px;              /* tamanho da letra */
  font-weight: 700;             /* espessura da letra */
  color: #006459;               /* cor do texto */
  text-align: center;           /* alinhamento */
  line-height: 1.2;             /* altura entre linhas */
  letter-spacing: 0.5px;        /* espaçamento entre letras */
  margin-bottom: 16px;          /* espaço abaixo do título */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18); /* sombra no texto */
}

/* parágrafo */
.coverage-card p {
  font-size: 18px;              /* tamanho da letra */
  font-weight: 400;             /* espessura */
  color: #5f5f5f;               /* cor */
  text-align: center;           /* alinhamento */
  line-height: 1.6;             /* altura da linha */
  letter-spacing: 0.2px;        /* espaçamento entre letras */
  margin-bottom: 10px;                    /* remove margem padrão */
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.05); /* sombra suave */
}



/*CONTROLE DOS CONTAINER ABAIXO DO CARD COM O HOMEM NO CENTRO*/

/*controle de container PAI que foi dividido em duas divs (text e imagem) 
dando a sensação de 2 containers lado a lado: 1 para texto e outro para imagem*/

.section-alt-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  overflow: visible;
  overflow-y: visible;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-alt-text {
  flex: 1;
  max-width: 550px;
}

/* IMAGEM */
.section-alt-image {
  flex: 1.6;
  display: flex;
  justify-content: flex-end;
  z-index: 10;
}

.section-alt-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  border-radius: 30px;
  transform: scale(2.5) translateX(200px) translateY(90px); /* scale=tamanho, x lateral
  y altura */
  transform-origin: center right; /* cresce para a direita */
  z-index: 10;
}

/* TÍTULO */
.section-alt-title {
  font-size: 32px;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 30px;
}

/* LISTA */
.section-alt-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ITEM */
.motivo-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* ÍCONE */
.motivo-icon {
  width: 26px;
  height: 26px;
  background: #00A86B;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: -3px;
}

/* TEXTO */
.motivo-texto h4 {
  margin: 0 0 6px 0;
  font-size: 18px;
  color: #2D3748;
}

.motivo-texto p {
  margin: 0;
  font-size: 16px;
  color: #6B7280;
  line-height: 1.5;
  text-align: justify;
}

/*====================================================================================*/

/*SEÇÃO 3 - FINALMENTE!!!!!!!!!!!*/

.section-destaque {
  width: 100%;
  padding: 110px 20px;
  background-image: url("../images/fundocard1.png");
}

.section-destaque-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.section-destaque-texto {
  max-width: 760px;
}
/*controla o POR QUE ESCOLHER O WINFIR AGRO+*/
.section-destaque-tag {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #006459;
  
}
.titulo-menor {
    white-space: nowrap;
    text-decoration: underline;
}

.section-destaque-titulo {
  
  display: flex;
  margin: 0 0 22px 0;
  font-size: 3.3rem;
  line-height: 1.08;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -1.2px;
  align-items: center;
  gap:10px;
  flex-wrap: nowrap; /* 🔥 NÃO deixa quebrar linha */  
  font-family: 'Poppins', sans-serif  
}

.section-destaque-subtitulo {
  margin: 0 0 34px 0;
  font-size: 1.14rem;
  line-height: 1.8;
  color: #3b414b;
  max-width: 690px;
  margin-bottom: 50px;
  
}

.section-destaque-lista {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-destaque-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.section-destaque-icone {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: #0b6b57;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
  box-shadow: 0 8px 18px rgba(11, 107, 87, 0.18);
}

.section-destaque-item p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #190e0e;
}

.section-destaque-card {
  position: relative;
  border-radius: 34px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(11,107,87,0.16), rgba(8,31,45,0.08));
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.10);
}

.section-destaque-card-conteudo {
  background: #ffffff;
  border-radius: 34px;
  padding: 42px 38px;
}

.section-destaque-card-mini {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0b6b57;
}

.section-destaque-card h3 {
  margin: 0 0 16px 0;
  font-size: 2rem;
  line-height: 1.15;
  color: #0f172a;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-destaque-card p {
  margin: 0 0 28px 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #5b6473;
}

/*=====================================================================================*/
/*QUARTA SEÇÃO...DOS ACCORDIONS*/




.section-accordion-image {
  width: 100%;
  padding: 100px 20px;
  background-image: url("../images/fundosecaocard4.png");
  padding-bottom: 0; /* 👈 remove espaço embaixo */
}


.section-accordion-image-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

/* IMAGEM */
.section-accordion-image-left {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
  
}

.section-accordion-image-left img {
  width: 100%;
  max-width: 580px;
  height: auto;
  display: block;
  border-radius: 32px;
  background-color: transparent;
  margin-top: 40px;
}

/* TEXTO */
.section-accordion-image-right {
  width: 100%;
}

.section-accordion-tag {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #0b6b57;
}

.section-accordion-title {
  margin: 0 0 18px 0;
  font-size: 2.8rem;
  line-height: 1.08;
  font-weight: 800;
  color: #0A2540;
  letter-spacing: -1px;
}

.section-accordion-subtitle {
  margin: 0 0 30px 0;
  font-size: 1.04rem;
  line-height: 1.75;
  color: #5f6b7a;
  text-align: justify;
}

/* ACCORDION */
.accordion-novo {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-novo-item {
  background: #ffffff;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.accordion-novo-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.accordion-novo-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.accordion-novo-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #00A86B;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 168, 107, 0.20);
}

.accordion-novo-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #1f2f46;
  line-height: 1.4;
}

.accordion-novo-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A2540;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-novo-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.accordion-novo-content p {
  margin: 0;
  padding-bottom: 22px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #667085;
  text-align: justify;
}

/* ESTADO ATIVO */
.accordion-novo-item.active .accordion-novo-content {
  max-height: 220px;
  padding: 0 24px;
}

.accordion-novo-item.active .accordion-novo-arrow {
  transform: rotate(180deg);
}

/*===============================================================================*/
/*FOOTER*/

.footer {
  background: #0A2540;
  color: #ffffff;
  position: relative;
  margin-top: 0px;
}

.footer .container {
  max-width: 1200px;
}

/* LOGO */
.footer-brand {
  text-decoration: none;
}

.footer-logo {
  max-width: 180px;
  height: auto;
  display: block;
}

/* TEXTO */
.footer-text {
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  max-width: 320px;
  margin: 0;
}

/* TÍTULOS */
.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

/* LISTAS */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

/* LINKS */
.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #00A86B;
  transform: translateX(4px);
}

/* CONTATO */
.footer-contact li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* LINHA */
.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 35px 0 20px;
}

/* COPYRIGHT */
.footer-copy {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.footer-icon {
  color: #25D366; /* verde WhatsApp */
  margin-right: 8px;
  font-size: 16px;
}

/*==============================================================================*/
/*CONFIGURAÇÕES DO MODAL FALE CONOSCO*/

/* =========================
   MODAL DE CONTATO
========================= */


.agro-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.agro-contact-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.agro-contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 14, 0.72);
  backdrop-filter: blur(4px);
}

.agro-contact-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s ease;
}

.agro-contact-modal.active .agro-contact-panel {
  transform: translateY(0) scale(1);
}

.agro-contact-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: #1a1a1a;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s ease, transform 0.25s ease;
}

.agro-contact-close:hover {
  background: rgba(0, 0, 0, 0.10);
  transform: rotate(90deg);
}

.agro-contact-content {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  min-height: 660px;
}

/* LADO ESQUERDO */
.agro-contact-info {
  background:
    linear-gradient(180deg, rgba(0, 100, 89, 0.94) 0%, rgba(0, 74, 66, 0.96) 100%);
  color: #ffffff;
  padding: 60px 48px 48px;
  position: relative;
  overflow: hidden;
}

.agro-contact-info::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -120px;
  right: -120px;
}

.agro-contact-info::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.10);
  bottom: -80px;
  left: -60px;
}

.agro-contact-tag,
.agro-contact-title,
.agro-contact-text,
.agro-contact-details,
.agro-contact-socials {
  position: relative;
  z-index: 2;
}

.agro-contact-socials a{
display: flex;
align-items: center;
gap: 8px; /* 👈 espaço entre ícone e texto */
}

.agro-contact-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  background: rgba(255,255,255,0.08);
}

.agro-contact-title {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.08;
  font-weight: 700;
  margin: 0 0 20px;
  max-width: 500px;
}

.agro-contact-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  max-width: 510px;
  margin-bottom: 34px;
}

.agro-contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.agro-contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
}

.agro-contact-detail-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.10);
  font-size: 1rem;
}

.agro-contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.agro-contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

.agro-contact-socials a:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

/* LADO DIREITO */
.agro-contact-form-wrap {
  background: #ffffff;
  padding: 58px 42px 42px;
  
}

.agro-contact-form {
  width: 100%;
}

.agro-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.agro-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.agro-form-group label {
  font-size: 0.93rem;
  font-weight: 600;
  color: #18322f;
  margin-bottom: 8px;
}

.agro-form-group input,
.agro-form-group select,
.agro-form-group textarea {
  width: 100%;
  border: 1px solid #dce5e3;
  background: #f9fbfb;
  border-radius: 16px;
  padding: 15px 16px;
  font-size: 0.98rem;
  color: #1f2c2a;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-sizing: border-box;
}

.agro-form-group input:focus,
.agro-form-group select:focus,
.agro-form-group textarea:focus {
  border-color: #006459;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 100, 89, 0.08);
  box-sizing: border-box;
}

.agro-form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.agro-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 24px;
}

.agro-form-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: #006459;
}

.agro-form-consent label {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #506360;
}

.agro-contact-submit {
  width: 100%;
  min-height: 58px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #006459 0%, #008b72 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 100, 89, 0.20);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.agro-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(0, 100, 89, 0.26);
}

.agro-contact-submit:active {
  transform: translateY(0);
}

.agro-contact-success {
  display: none;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px 20px;
  animation: agroFadeUp 0.4s ease;
}

.agro-contact-success.active {
  display: flex;
}

.agro-contact-success-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #00A86B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 22px;
  box-shadow: 0 18px 35px rgba(0, 168, 107, 0.18);
}

.agro-contact-success h3 {
  font-size: 2rem;
  color: #18322f;
  margin-bottom: 14px;
}

.agro-contact-success p {
  max-width: 420px;
  font-size: 1rem;
  line-height: 1.7;
  color: #5a6b68;
  margin-bottom: 28px;
}

.agro-contact-success-button {
  min-height: 54px;
  padding: 0 28px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #006459 0%, #008b72 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 100, 89, 0.20);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.agro-contact-success-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(0, 100, 89, 0.26);
}

/* segurança geral */
* {
  box-sizing: border-box;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b858;
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/*======================================================================*/
/*clientes que usam e confiam*/

.clientes-section {
  width: 100%;
  padding: 1px 20px;
  
  background-image: url(../images/fundoteste2.png);
}

.clientes-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

/* TEXTO */
.clientes-texto {
  flex: 1;
  min-width: 300px;
}

.clientes-titulo {
  margin: 0 0 12px 0;
  font-size: 2.8rem;
  line-height: 1.08;
  font-weight: 800;
  color: #0A2540;
  letter-spacing: -1px;
  margin-top: 50px;
  text-align: left;
    
}

.clientes-descricao {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: justify;
}

/* BOTÃO */
.clientes-botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: #0b6b57;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 16px 30px rgba(11, 107, 87, 0.22);
}

.clientes-botao:hover {
  background: #095645;
  transform: translateY(-2px);
}

/* IMAGEM */
.clientes-imagem {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  pointer-events: none;
}

.clientes-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-top: -170px;
  margin-bottom: -100px;
  
}

.plus-img-cliente {
  height: 52px;
  width: auto;
  margin-left: 0px;
  vertical-align: middle;
  
}

.cookie-banner-premium {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  max-width: 980px;
  background: rgba(10, 37, 64, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  padding: 20px;
  z-index: 99999;
  animation: cookieFadeUp 0.45s ease;
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-title {
  margin: 0 0 8px 0;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
}

.cookie-banner-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.6;
}

.cookie-banner-description a {
  color: #00A86B;
  font-weight: 600;
  text-decoration: none;
}

.cookie-banner-description a:hover {
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  min-width: 120px;
  height: 46px;
  border: none;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

.cookie-btn-primary {
  background: #0b6b57;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(11, 107, 87, 0.28);
}

.cookie-btn-primary:hover {
  background: #095645;
}

.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

@keyframes cookieFadeUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* TEXTO */
.animar-texto {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.animar-texto.ativo {
  opacity: 1;
  transform: translateY(0);
}

/* ÍCONE + (efeito mais chamativo) */
.animar-mais {
  opacity: 0;
  transform: scale(0.6) rotate(-20deg);
  transition: all 0.6s ease;
}

.animar-mais.ativo {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.animar-item {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
}

.animar-item.ativo {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: all 0.6s ease;
}

.animar-item {
  opacity: 0;
  transform: translateY(40px);
}

.animar-item.ativo {
  opacity: 1;
  transform: translateY(0);
}

.no-js .animar-item {
  opacity: 1;
  transform: none;
}
