/* ========================================
   1. VARIÁVEIS CSS
======================================== */
:root {
  --verde-profundo: #2A6544;
  --verde-escuro: #1F4D33;
  --verde-claro: #3D8B5F;
  --verde-muito-claro: #EDF7F0;
  --verde-confirmacao: #00B894;
  --vermelho-marca: #AC4649;
  --vermelho-escuro: #8B3940;
  --vermelho-claro: #FDEAEA;
  --branco-neve: #F8F9FA;
  --branco-puro: #FFFFFF;
  --cinza-grafite: #2D3436;
  --cinza-medio: #636E72;
  --cinza-claro: #DFE6E9;
  --font-headings: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --section-padding-desktop: 80px;
  --section-padding-mobile: 48px;
  --container-padding-mobile: 24px;
  --container-padding-desktop: 40px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(42, 101, 68, 0.08);
  --shadow-md: 0 8px 24px rgba(42, 101, 68, 0.12);
  --shadow-lg: 0 12px 32px rgba(172, 70, 73, 0.25);
  --shadow-xl: 0 20px 48px rgba(42, 101, 68, 0.18);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --navbar-height: 72px;
}

/* ========================================
   2. RESET & BASE
======================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--cinza-grafite);
  background-color: var(--branco-neve);
  overflow-x: hidden;
  padding-top: var(--navbar-height);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ========================================
   3. TIPOGRAFIA
======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  line-height: 1.2;
  color: var(--verde-profundo);
}
h1 { font-size: 32px; font-weight: 800; }
h2 { font-size: 26px; font-weight: 700; }
h3 { font-size: 20px; font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }
p { margin-bottom: 16px; }
strong { font-weight: 600; color: var(--verde-profundo); }

/* ========================================
   4. LAYOUT GLOBAL
======================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding-mobile);
}
section { padding: var(--section-padding-mobile) 0; }

.section-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background-color: var(--vermelho-marca);
  border-radius: var(--radius-pill);
  margin: 12px auto 0;
}
.section-title--light { color: var(--branco-puro); }
.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: var(--cinza-medio);
  max-width: 700px;
  margin: 0 auto 40px;
}
.section-subtitle--light { color: rgba(255, 255, 255, 0.85); }

/* ========================================
   5. NAVBAR (BARRA DE NAVEGAÇÃO)
======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 12px rgba(42, 101, 68, 0.08);
  border-bottom: 1px solid rgba(42, 101, 68, 0.06);
}
.navbar__container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding-mobile);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 800;
  color: var(--verde-profundo);
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar__logo span {
  color: var(--vermelho-marca);
}
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navbar__link {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 15px;
  color: var(--cinza-medio);
  transition: color var(--transition-fast);
  position: relative;
}
.navbar__link:hover { color: var(--verde-profundo); }
.navbar__link--active { color: var(--verde-profundo); }
.navbar__link--active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--vermelho-marca);
  border-radius: var(--radius-pill);
}
.navbar__cta {
  background-color: var(--vermelho-marca);
  color: var(--branco-puro);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
}
.navbar__cta:hover {
  background-color: var(--vermelho-escuro);
  transform: scale(1.05);
}
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.navbar__toggle span {
  width: 24px;
  height: 3px;
  background-color: var(--verde-profundo);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.navbar__toggle--open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.navbar__toggle--open span:nth-child(2) { opacity: 0; }
.navbar__toggle--open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ========================================
   6. COMPONENTES
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  text-align: center;
  line-height: 1.4;
  border: 2px solid transparent;
}
.btn--primary {
  background-color: var(--vermelho-marca);
  color: var(--branco-puro);
  box-shadow: var(--shadow-lg);
}
.btn--primary:hover {
  transform: scale(1.05);
  background-color: var(--vermelho-escuro);
  box-shadow: 0 16px 40px rgba(172, 70, 73, 0.35);
}
.btn--secondary {
  background-color: transparent;
  color: var(--verde-profundo);
  border-color: var(--verde-profundo);
}
.btn--secondary:hover {
  background-color: var(--verde-profundo);
  color: var(--branco-puro);
  transform: scale(1.05);
}
.btn--large { font-size: 18px; padding: 20px 40px; }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform var(--transition-base);
  animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; }
@keyframes pulse-whatsapp {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ========================================
   7. PAGE HEADER (inner pages)
======================================== */
.page-header {
 background-color: var(--verde-muito-claro);
  padding: 48px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(42, 101, 68, 0.08);
}
.page-header__decoracao {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.page-header__decoracao--1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -80px;
  background-color: rgba(42, 101, 68, 0.05);
}
.page-header__decoracao--2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: -60px;
  background-color: rgba(172, 70, 73, 0.03);
}
.page-header__container {
  position: relative;
  z-index: 1;
}
.page-header__title {
  font-size: 30px;
  font-weight: 800;
  color: var(--verde-profundo);
  margin-bottom: 12px;
}
.page-header__subtitle {
  font-size: 16px;
  color: var(--cinza-medio);
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--cinza-medio);
  margin-bottom: 16px;
}
.breadcrumb a {
  color: var(--verde-profundo);
  transition: color var(--transition-fast);
}
.breadcrumb a:hover { color: var(--verde-claro); }

/* ========================================
   8. SEÇÕES — HERO (Home)
======================================== */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65vh;
}
/* Imagem de fundo */
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Sobreposição escura transparente */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    160deg,
    rgba(31, 46, 33, 0.88) 0%,
    rgba(31, 46, 33, 0.75) 50%,
    rgba(31, 46, 33, 0.85) 100%
  );
  z-index: 1;
}

/* Container do conteúdo acima da imagem e overlay */
.hero__container {
  position: absolute;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  padding: 0 var(--container-padding-mobile);
}
.hero__decoracao {
  z-index: 1;
}
.hero__decoracao--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background-color: rgba(61, 139, 95, 0.15);
  opacity: 0.5;
}

.hero__decoracao--2 {
   width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
  background-color: rgba(172, 70, 73, 0.08);
}

.hero__badge {
  background-color: rgba(172, 70, 73, 0.25);
  color: #FDEAEA;
  border: 1px solid rgba(172, 70, 73, 0.4);
}
.hero__title {
  color: #FFFFFF;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
}
.hero__subtitle strong {
  color: #FFFFFF;
}
.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}
.hero__microcopy {
  color: rgba(255, 255, 255, 0.6);
}
/* ========================================
   9. SEÇÕES — PROBLEMA, SOLUÇÃO, SERVIÇOS
======================================== */
.problema { background-color: var(--branco-neve); }
.problema__grid { display: flex; flex-direction: column; gap: 32px; margin-bottom: 40px; }
.problema__bloco { display: flex; flex-direction: column; gap: 16px; }
.problema__bloco-title {
  font-size: 20px;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--verde-muito-claro);
}
.problema__card {
  background-color: var(--branco-puro);
  border-left: 4px solid rgba(172, 70, 73, 0.6);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.problema__icone { font-size: 24px; flex-shrink: 0; line-height: 1; }
.problema__texto { font-size: 16px; color: var(--cinza-grafite); margin-bottom: 0; }
.problema__texto strong { color: var(--vermelho-marca); }
.problema__fechamento {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background-color: var(--verde-muito-claro);
  border-radius: var(--radius-md);
}
.problema__fechamento p { font-size: 16px; color: var(--cinza-grafite); }
.problema__destaque { font-size: 20px !important; font-weight: 700; color: var(--vermelho-marca) !important; margin-top: 16px; }
.problema__destaque strong { color: var(--vermelho-marca); }

.solucao {   background-color: var(--branco-neve);}
.solucao__grid { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.solucao__pilar {
  background-color: var(--branco-puro);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(42, 101, 68, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.solucao__pilar:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--verde-claro);
}
.solucao__icone {
  width: 64px;
  height: 64px;
  background-color: var(--verde-muito-claro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.solucao__pilar-title { font-size: 20px; margin-bottom: 16px; }
.solucao__pilar-texto { font-size: 16px; color: var(--cinza-grafite); margin-bottom: 12px; }
.solucao__fechamento {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--verde-profundo);
  max-width: 700px;
  margin: 0 auto 32px;
  padding: 24px;
  background-color: var(--verde-muito-claro);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--verde-claro);
}
.solucao__fechamento strong { color: var(--vermelho-marca); }
.solucao__cta { text-align: center; }

.servicos { background-color: var(--branco-neve); }
.servicos__grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
.servicos__card {
  background-color: var(--branco-puro);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  display: flex; flex-direction: column;
}
.servicos__card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--verde-claro); }
.servicos__icone { font-size: 32px; margin-bottom: 16px; }
.servicos__card-title { font-size: 18px; margin-bottom: 8px; }
.servicos__card-subtitle { font-size: 14px; color: var(--verde-claro); font-weight: 600; margin-bottom: 16px; }
.servicos__lista { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; flex-grow: 1; }
.servicos__lista li {
  font-size: 15px;
  padding-left: 24px;
  position: relative;
  color: var(--cinza-grafite);
}
.servicos__lista li::before { content: '✓'; position: absolute; left: 0; color: var(--verde-claro); font-weight: 700; }
.servicos__card-destaque {
  font-size: 14px;
  font-style: italic;
  color: var(--vermelho-marca);
  padding-top: 16px;
  border-top: 1px solid var(--verde-muito-claro);
  margin-top: auto;
}
.servicos__cta { text-align: center; }

/* ========================================
   10. PROVA SOCIAL
======================================== */
.prova-social { background-color: var(--verde-profundo); position: relative; overflow: hidden; }
.prova-social::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--verde-claro) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.05;
}
.prova-social .container { position: relative; z-index: 1; }
.prova-social__logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 48px; }
.prova-social__logo {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 20px 12px;
  text-align: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-base);
  filter: grayscale(100%);
}
.prova-social__logo:hover { background-color: rgba(255, 255, 255, 0.15); color: var(--branco-puro); filter: grayscale(0%); transform: scale(1.05); }
.prova-social__numeros { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 48px; }
.prova-social__numero { text-align: center; padding: 24px 16px; }
.prova-social__numero-valor { display: block; font-family: var(--font-headings); font-size: 36px; font-weight: 800; color: var(--branco-puro); margin-bottom: 8px; }
.prova-social__numero-label { display: block; font-size: 14px; color: rgba(255, 255, 255, 0.7); line-height: 1.4; }
.prova-social__depoimentos { display: flex; flex-direction: column; gap: 24px; }
.prova-social__depoimento {
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 28px;
  border-left: 4px solid var(--vermelho-marca);
}
.prova-social__depoimento-texto { font-size: 16px; color: rgba(255, 255, 255, 0.9); font-style: italic; margin-bottom: 12px; }
.prova-social__depoimento-autor { font-size: 14px; font-weight: 600; color: var(--verde-claro); }

/* ========================================
   11. SOBRE
======================================== */
.sobre { background-color: var(--branco-neve); }
.sobre__grid { display: flex; flex-direction: column; gap: 40px; margin-bottom: 48px; }
.sobre__conteudo { flex: 1; }
.sobre__conteudo .section-title { text-align: left; }
.sobre__conteudo .section-title::after { margin-left: 0; }
.sobre__texto { font-size: 16px; line-height: 1.8; color: var(--cinza-grafite); margin-bottom: 16px; }
.sobre__texto strong { color: var(--verde-profundo); }
.sobre__visual { flex: 1; display: flex; align-items: center; justify-content: center; }
.sobre__placeholder {
  width: 100%;
  height: 300px;
  background-color: var(--verde-muito-claro);
  border: 2px dashed var(--verde-claro);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  color: var(--verde-profundo);
  font-family: var(--font-headings);
  font-weight: 600;
}
.sobre__placeholder-sub { font-size: 13px; font-weight: 400; color: var(--cinza-medio); }
.sobre__mvv { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
.sobre__mvv-card {
  background-color: var(--branco-puro);
  border-radius: var(--radius-md);
  padding: 28px;
  border-top: 4px solid var(--verde-claro);
  box-shadow: var(--shadow-sm);
}
.sobre__mvv-title { font-size: 18px; margin-bottom: 12px; }
.sobre__mvv-texto { font-size: 15px; color: var(--cinza-grafite); margin-bottom: 0; }
.sobre__cta { text-align: center; }

/* ========================================
   12. FAQ
======================================== */
.faq {
  background-color: var(--branco-neve);
}
.faq__lista { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background-color: var(--branco-puro);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}
.faq__item:hover { box-shadow: var(--shadow-md); }
.faq__pergunta {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 16px;
  color: var(--cinza-grafite);
  text-align: left;
}
.faq__icone { font-size: 24px; color: var(--verde-profundo); flex-shrink: 0; margin-left: 16px; transition: color var(--transition-base); }
.faq__pergunta[aria-expanded="true"] {
  background-color: var(--verde-muito-claro);
}
.faq__pergunta[aria-expanded="true"] .faq__icone { color: var(--vermelho-marca); }
.faq__resposta { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow), padding var(--transition-slow); padding: 0 24px; }
.faq__resposta--aberta { max-height: 600px; padding: 0 24px 20px; }
.faq__resposta p { font-size: 15px; color: var(--cinza-grafite); margin-bottom: 12px; }
.faq__resposta p:last-child { margin-bottom: 0; }
.faq__resposta strong { color: var(--verde-profundo); }
.faq__resposta ul { margin-bottom: 12px; padding-left: 20px; }
.faq__resposta li { font-size: 15px; list-style: disc; margin-bottom: 6px; color: var(--cinza-grafite); }

/* ========================================
   13. CTA FINAL
======================================== */
.cta-final { position: relative; background: linear-gradient(160deg, var(--verde-profundo) 0%, var(--verde-escuro) 100%); overflow: hidden; text-align: center; }
.cta-final__decoracao { position: absolute; border-radius: 50%; background-color: var(--verde-claro); opacity: 0.06; pointer-events: none; }
.cta-final__decoracao--1 { width: 350px; height: 350px; top: -120px; left: -120px; }
.cta-final__decoracao--2 { width: 280px; height: 280px; bottom: -100px; right: -100px; }
.cta-final__conteudo { position: relative; z-index: 1; max-width: 750px; margin: 0 auto; }
.cta-final__title { font-size: 28px; font-weight: 800; color: var(--branco-puro); line-height: 1.3; margin-bottom: 20px; }
.cta-final__subtitle { font-size: 16px; color: rgba(255, 255, 255, 0.85); margin-bottom: 16px; }
.cta-final__oferta { font-size: 15px; color: rgba(255, 255, 255, 0.7); margin-bottom: 32px; }
.cta-final__oferta strong { color: var(--branco-puro); }
.cta-final .btn--primary { margin-bottom: 16px; }
.cta-final__reforco { font-size: 14px; color: rgba(255, 255, 255, 0.5); }

/* ========================================
   14. CONTATO (formulário)
======================================== */
.contato { background-color: var(--branco-neve); }
.contato__grid { display: flex; flex-direction: column; gap: 40px; }
.contato__form-wrapper {
  background-color: var(--branco-puro);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contato__form-title { font-size: 20px; margin-bottom: 8px; }
.contato__form-subtitle { font-size: 14px; color: var(--cinza-medio); margin-bottom: 24px; }
.contato__form { display: flex; flex-direction: column; gap: 16px; }
.contato__field { display: flex; flex-direction: column; gap: 6px; }
.contato__label { font-family: var(--font-headings); font-weight: 600; font-size: 14px; color: var(--verde-profundo); }
.contato__input, .contato__textarea, .contato__select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border: 2px solid var(--cinza-claro);
  border-radius: var(--radius-sm);
  background-color: var(--branco-neve);
  color: var(--cinza-grafite);
  transition: border-color var(--transition-base);
  outline: none;
}
.contato__input:focus, .contato__textarea:focus, .contato__select:focus { border-color: var(--verde-claro); }
.contato__textarea { resize: vertical; min-height: 120px; }
.contato__info-wrapper { display: flex; flex-direction: column; gap: 24px; }
.contato__info-card {
  background-color: var(--verde-muito-claro);
  border-radius: var(--radius-md);
  padding: 28px;
}
.contato__info-title { font-size: 18px; margin-bottom: 16px; }
.contato__info-lista { display: flex; flex-direction: column; gap: 16px; }
.contato__info-item { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--cinza-grafite); }
.contato__info-item a { color: var(--verde-profundo); font-weight: 500; transition: color var(--transition-fast); }
.contato__info-item a:hover { color: var(--verde-claro); }
.contato__info-icone { font-size: 20px; flex-shrink: 0; }

/* ========================================
   15. RODAPÉ
======================================== */
.rodape { background-color: var(--cinza-grafite); color: rgba(255, 255, 255, 0.7); padding: 48px 0 24px; }
.rodape__grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
.rodape__coluna { display: flex; flex-direction: column; gap: 12px; }
.rodape__logo { font-family: var(--font-headings); font-size: 22px; font-weight: 800; color: var(--branco-puro); margin-bottom: 4px; }
.rodape__slogan { font-size: 14px; color: var(--verde-claro); font-weight: 500; margin-bottom: 8px; }
.rodape__descricao { font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.5); }
.rodape__titulo { font-family: var(--font-headings); font-size: 16px; font-weight: 700; color: var(--branco-puro); margin-bottom: 8px; }
.rodape__links { display: flex; flex-direction: column; gap: 8px; }
.rodape__links a { font-size: 14px; color: rgba(255, 255, 255, 0.6); transition: color var(--transition-fast); }
.rodape__links a:hover { color: var(--verde-claro); }
.rodape__contato { display: flex; flex-direction: column; gap: 12px; }
.rodape__contato li { font-size: 14px; color: rgba(255, 255, 255, 0.6); display: flex; gap: 8px; align-items: flex-start; }
.rodape__contato a { color: rgba(255, 255, 255, 0.6); transition: color var(--transition-fast); }
.rodape__contato a:hover { color: var(--verde-claro); }
.rodape__icone { flex-shrink: 0; }
.rodape__bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.rodape__bottom p { font-size: 13px; color: rgba(255, 255, 255, 0.4); margin-bottom: 0; }

/* ========================================
   CARROSSEL DE LOGOS — VERSÃO FINAL
   Cards: 200px | Imagens: 90px altura
======================================== */

.carrossel-section {
  text-align: center;
  padding: 60px 20px;
}

.carrossel-section__titulo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a3c2e;
  margin-bottom: 36px;
}

.carrossel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}

.carrossel__viewport {
  flex: 1;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.carrossel__track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* CARD — bem maior agora */
.carrossel__item {
  flex: 0 0 200px;
  width: 250px;

}

.carrossel__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 110px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #555;
  text-align: center;
  transition: all 0.3s ease;
  user-select: none;
}

.carrossel__logo:hover {
  border-color: #AC4649;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

/* Se for imagem */
.carrossel__logo img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
}

/* BOTÕES */
.carrossel__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1a3c2e;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.carrossel__btn:hover {
  background: #AC4649;
  transform: scale(1.1);
}

.carrossel__btn:active {
  transform: scale(0.95);
}

/* MOBILE */
@media (max-width: 767px) {
    .hero {
    padding-top: 130px;
    padding-bottom: 60px;
    min-height: auto;
  }

  .carrossel-section {
    padding: 40px 12px;
  }
  .carrossel-section__titulo {
    font-size: 1.3rem;
    margin-bottom: 24px;
  }
  .carrossel {
    gap: 8px;
  }
  .carrossel__btn {
    display: none;
  }
  .carrossel__item,
  .carrossel__logo {
    width: 160px;
  }
  .carrossel__logo {
    height: 90px;
    font-size: 13px;
  }
  .carrossel__logo img {
    max-height: 70px;
  }
}

/* ========================================
   LOGO NAS BARRAS (Navbar + Rodapé)
======================================== */

/* Logo na Navbar */
.navbar__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar__logo-img {
  height: 44px;
  width: auto;
  /* Fundo branco arredondado para destacar sobre o verde escuro */
  background-color: var(--branco-puro);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-base);
}

.navbar__logo:hover .navbar__logo-img {
  transform: scale(1.03);
}

/* Logo no Rodapé */
.rodape__logo-img {
  height: 52px;
  width: auto;
  /* Fundo branco para destacar sobre o cinza grafite */
  /*background-color: var(--branco-puro);
  padding: 6px 14px;
  border-radius: var(--radius-sm);*/
  margin-bottom: 8px;
  transition: opacity var(--transition-fast);
}

.rodape a:has(.rodape__logo-img):hover .rodape__logo-img {
  opacity: 0.85;
}

/* Responsividade da logo */
@media (max-width: 480px) {
  .navbar__logo-img {
    height: 36px;
    padding: 3px 8px;
  }
  .rodape__logo-img {
    height: 42px;
    padding: 4px 10px;
  }
}

/* ========================================
   16. ANIMAÇÕES
======================================== */
.animar { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animado { opacity: 1 !important; transform: translateY(0) !important; }
@media (prefers-reduced-motion: reduce) {
  .animar { opacity: 1; transform: none; transition: none; }
  .whatsapp-float { animation: none; }
  * { scroll-behavior: auto; }
}

/* ========================================
   17. RESPONSIVIDADE — TABLET (≥768px)
======================================== */
@media (min-width: 768px) {
  h1 { font-size: 40px; } h2 { font-size: 32px; } h3 { font-size: 22px; }
  .container { padding: 0 var(--container-padding-desktop); }
  section { padding: var(--section-padding-desktop) 0; }
  .section-title { font-size: 32px; }
  .hero { min-height: 75vh; }
  .hero__title { font-size: 40px; }
  .hero__cta-group { flex-direction: row; justify-content: center; }
  .problema__grid { flex-direction: row; gap: 40px; }
  .problema__bloco { flex: 1; }
  .problema__bloco-title { font-size: 22px; }
  .solucao__grid { flex-direction: row; gap: 32px; }
  .solucao__pilar { flex: 1; }
  .servicos__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .prova-social__logos { grid-template-columns: repeat(4, 1fr); }
  .prova-social__numeros { grid-template-columns: repeat(4, 1fr); }
  .prova-social__numero-valor { font-size: 42px; }
  .prova-social__depoimentos { flex-direction: row; gap: 20px; }
  .prova-social__depoimento { flex: 1; }
  .sobre__grid { flex-direction: row; align-items: flex-start; }
  .sobre__mvv { grid-template-columns: repeat(3, 1fr); }
  .cta-final__title { font-size: 36px; }
  .rodape__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
  .contato__grid { flex-direction: row; }
  .contato__form-wrapper { flex: 1.5; }
  .contato__info-wrapper { flex: 1; }
  .page-header__title { font-size: 38px; }
}

/* ========================================
   18. RESPONSIVIDADE — DESKTOP (≥1024px)
======================================== */
@media (min-width: 1024px) {
  h1 { font-size: 48px; } h2 { font-size: 36px; } h3 { font-size: 24px; }
  .section-title { font-size: 36px; }
  .hero__title { font-size: 48px; }
  .servicos__grid { grid-template-columns: repeat(3, 1fr); }
  .prova-social__logos { grid-template-columns: repeat(5, 1fr); }
  .prova-social__numero-valor { font-size: 48px; }
  .faq__pergunta { font-size: 18px; }
  .faq__resposta p { font-size: 16px; }
  .cta-final__title { font-size: 40px; }
}

@media (min-width: 1440px) {
  .hero { min-height: 80vh; }
}

/* ========================================
   19. MOBILE — NAVBAR MENU
======================================== */
@media (max-width: 767px) {
   .navbar__menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    width: 100%;
    background-color: var(--branco-puro);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    transform: translateY(-150%);
    transition: transform var(--transition-base);
    box-shadow: 0 8px 24px rgba(42, 101, 68, 0.12);
  }
  .navbar__menu--open { transform: translateY(0); }
  .navbar__link {
    width: 100%;
    padding: 14px var(--container-padding-mobile);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .navbar__cta {
    margin: 16px var(--container-padding-mobile) 0;
    text-align: center;
  }
  .navbar__toggle { display: flex; }
}