:root {
  color-scheme: light;
  --color-black-base: #0B0B0D;
  --color-green-primary: #16A34A;
  --color-green-dark: #0F7A38;
  --color-green-pressed: #0C5E2E;
  --color-green-lime: #84CC16;
  --color-gray-200: #E5E7EB;
  --color-white: #FFFFFF;

  --font-heading: 'Poppins', 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html, body {
  overflow-x: hidden; /* impede scroll lateral */
}

body {
  background-color: var(--color-black-base);
  color: var(--color-gray-200);
  font-family: var(--font-body);
  line-height: 1.6;
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  margin: 0 0 1rem;
  line-height: 1.3;
}

a {
  text-decoration: none;
}

.green {
  color: var(--color-green-primary);
  font-weight: 600;
}

.highlight {
  color: var(--color-green-primary);
  border-bottom: 2px solid var(--color-green-lime);
}

/* Scroll animations */
section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

section.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Additional animation keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px) translateZ(0);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateZ(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px) translateZ(0);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateZ(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateZ(0);
  }
  to {
    opacity: 1;
    transform: scale(1) translateZ(0);
  }
}

/* Animation classes */
.animate-fadeIn {
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  will-change: opacity, transform;
}

.animate-slideInLeft {
  animation-name: slideInLeft;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  will-change: opacity, transform;
}

.animate-slideInRight {
  animation-name: slideInRight;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  will-change: opacity, transform;
}

.animate-zoomIn {
  animation-name: zoomIn;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  will-change: opacity, transform;
}

/* Animation delay utility classes */
.animate-delay-0 { animation-delay: 0s; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }
.animate-delay-7 { animation-delay: 0.7s; }
.animate-delay-8 { animation-delay: 0.8s; }
.animate-delay-9 { animation-delay: 0.9s; }
.animate-delay-10 { animation-delay: 1s; }

/* ================= BLOCO 1 – HERO ================= */
.hero {
  position: relative;
  padding: 6rem 1.5rem;
  background-color: var(--color-black-base);
}

.hero::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(22,163,74,0.25) 0%, rgba(22,163,74,0) 60%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 540px;
  position: relative;
  z-index: 2;
}

.line1 {
  color: var(--color-white);
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
}

.line2 {
  color: var(--color-white);
  font-size: 2.6rem;
  font-weight: 800;
  display: block;
  margin-top: .75rem;
}

.subheadline {
  margin: 2rem 0;
  font-size: 1.125rem;
  color: var(--color-gray-200);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}

.cta {
  display: inline-block;
  background: var(--color-green-primary);
  color: var(--color-white);
  font-weight: 600;
  border-radius: 14px;
  padding: 1rem 2rem;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.2);
  transition: all 0.25s ease;
}

.cta:hover {
  background: var(--color-green-dark);
  transform: scale(1.02);
}

.cta:active {
  background: var(--color-green-pressed);
  transform: scale(0.98);
}

.cta:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.6);
}

.selo {
  width: 100px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.hero-mockup {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  z-index: 1;
}

.hero-mockup.desktop-only {
  right: 0;
  width: 420px;
  height: auto;
}

.hero-mockup.mobile-only {
  position: relative;
  opacity: 1;
  width: 300px;
  height: auto;
  margin: 0 auto 1rem auto;
  transform: none;
  z-index: 2;
}

.hero-mockup img {
  display: block;
  height: auto;
  width: 100%;
}

.desktop-only { display: block; }
.mobile-only { display: none; }

/* MOBILE */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .line1 { font-size: 1.8rem; }
  .line2 { font-size: 2rem; }
  .subheadline { font-size: 1rem; }

  .desktop-only { display: none; }
  .mobile-only { display: block; margin: 1.5rem 0; }
  .mobile-only img { width: 300px; }

  .hero-cta {
    flex-direction: column;
    gap: .5rem;
  }

  .cta { width: 100%; max-width: 320px; }
  .selo { width: 90px; margin: 0 auto; }
}
}
.paraquem {
  background: #121317; /* preto-elevado */
  padding: 5rem 1.5rem;
}

.paraquem-container {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.paraquem .card {
  flex: 1;
  background: #0B0B0D; /* preto base para contraste */
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paraquem .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}

.paraquem .card h2 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.paraquem .card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.paraquem .card li {
  font-size: 1rem;
  color: #d1d5db; /* cinza 300-400 */
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}

.paraquem .card li .green {
  color: var(--color-green-primary);
  font-weight: 600;
}

.paraquem .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.paraquem .icon.check {
  color: var(--color-green-primary);
}

.paraquem .icon.x {
  color: #6B7280; /* cinza 500 */
}

/* MOBILE */
@media (max-width: 992px) {
  .paraquem-container {
    flex-direction: column;
  }
}

/* ================= BLOCO 3 – O PROBLEMA NÃO É VOCÊ ================= */
.problema {
  background: #F9FAFB; /* cinza 50-100 */
  padding: 5rem 1.5rem;
}

.problema-container {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.problema-texto {
  flex: 2;
}

.problema-texto h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: #111827; /* cinza 900 */
  margin-bottom: 1rem;
}

.problema-texto .outlined {
  color: transparent;
  -webkit-text-stroke: 1px var(--color-green-primary);
  text-stroke: 1px var(--color-green-primary);
}

.problema-texto .subheadline {
  font-size: 1.125rem;
  color: #374151; /* cinza 700 */
  margin-bottom: 1rem;
}

.problema-texto .green {
  color: var(--color-green-primary);
  font-weight: 600;
}

.problema-lista {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.problema-lista .item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
}

.problema-lista .barra {
  width: 3px;
  height: 100%;
  background: var(--color-green-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.problema-lista .conteudo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.problema-lista .icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.problema-lista p {
  margin: 0;
  font-size: 1rem;
  color: #374151; /* cinza 700 */
  line-height: 1.4;
}

.problema-lista strong {
  color: #111827; /* cinza 900 */
}

/* MOBILE */
@media (max-width: 992px) {
  .problema-container {
    flex-direction: column;
  }

  .problema-texto {
    text-align: center;
  }

  .problema-lista {
    margin-top: 2rem;
  }
}

/* ================= BLOCO 4 – METODOLOGIA ================= */
.metodologia {
  background: var(--color-black-base);
  padding: 5rem 1.5rem;
  text-align: center;
}

.metodologia-container {
  max-width: 1200px;
  margin: 0 auto;
}

.metodologia h2 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.metodologia h2 .green {
  color: var(--color-green-primary);
}

.pilares {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.pilar {
  flex: 1;
  background: #121317; /* preto-elevado */
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  position: relative;
}

.pilar h3 {
  color: var(--color-white);
  font-size: 1.3rem;
  margin: 1rem 0;
}

.pilar p {
  color: #d1d5db; /* cinza 300-400 */
  font-size: 1rem;
  line-height: 1.5;
}

.pilar .green {
  color: var(--color-green-primary);
  font-weight: 600;
}

/* Ícones */
.pilar .icon {
  font-size: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pilar-mente .aura {
  box-shadow: 0 0 40px rgba(22, 163, 74, 0.4);
  border-radius: 50%;
  padding: 0.5rem;
}

.pilar-corpo .borda {
  border: 2px solid var(--color-green-lime);
  border-radius: 50%;
  padding: 0.5rem 0.7rem;
}

.pilar-alimentacao .badge {
  position: relative;
}

.pilar-alimentacao .tag {
  font-size: 0.7rem;
  background: var(--color-green-primary);
  color: var(--color-white);
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  margin-left: 0.3rem;
}

/* Divisores */
.divisor {
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #4b5563 0,
    #4b5563 6px,
    transparent 6px,
    transparent 12px
  );
  position: relative;
}

.divisor::after {
  content: "•";
  color: var(--color-green-primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 40%;
  font-size: 1.2rem;
}

/* Callout final */
.callout {
  margin-top: 3rem;
  color: var(--color-white);
}

.callout .chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--color-green-primary);
  color: var(--color-white);
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.callout p {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--color-gray-200);
}

.callout .highlight {
  color: var(--color-green-primary);
  border-bottom: 2px solid var(--color-green-lime);
  font-weight: 700;
}

/* MOBILE */
@media (max-width: 992px) {
  .pilares {
    flex-direction: column;
  }

  .divisor {
    display: none;
  }

  .pilar {
    margin-bottom: 1.5rem;
  }
}

/* Animação de pulse/glow */
@keyframes pulseGlow {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(22, 163, 74, 0.6); }
  50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(22, 163, 74, 0.4); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(22, 163, 74, 0); }
}

.pulse {
  animation: pulseGlow 1.2s ease-out;
}

/* ================= BLOCO 5 – ENTREGÁVEIS ================= */
.entregaveis {
  background: #F3F4F6; /* cinza bem claro */
  padding: 5rem 1.5rem;
}

.entregaveis-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.entregaveis h2 {
  color: #111827; /* cinza escuro */
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.entregaveis h2 .green {
  color: var(--color-green-primary);
}

/* Lista principal */
.lista-principal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.lista-principal .item {
  background: #FFFFFF; /* branco */
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
}

.lista-principal .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.lista-principal .icon {
  font-size: 1.5rem;
  color: var(--color-green-primary);
  flex-shrink: 0;
}

.lista-principal p {
  margin: 0;
  font-size: 1rem;
  color: #374151; /* cinza 700 */
}

.lista-principal p .green {
  color: var(--color-green-primary);
  font-weight: 600;
}

/* Bônus */
.bonus {
  background: #FFFFFF;
  border: 2px dashed var(--color-green-lime);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.bonus h3 {
  color: var(--color-green-primary);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.bonus ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bonus li {
  color: #374151; /* cinza escuro */
  font-size: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.bonus .icon {
  color: var(--color-green-primary);
  font-size: 1.2rem;
}

/* CTA */
.cta-area {
  margin-top: 2rem;
}

.cta-area .cta {
  display: inline-block;
  background: var(--color-green-primary);
  color: var(--color-white);
  font-weight: 600;
  border-radius: 14px;
  padding: 1rem 2rem;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.2);
  transition: all 0.25s ease;
}

.cta-area .cta:hover {
  background: var(--color-green-dark);
  transform: scale(1.02);
}

.cta-area .cta:active {
  background: var(--color-green-pressed);
  transform: scale(0.98);
}

.cta-area .cta:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.6);
}

/* ================= BLOCO 6 – LINHA DO TEMPO ================= */
.timeline {
  background: #F9FAFB; /* fundo claro */
  padding: 5rem 1.5rem;
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.timeline h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: #111827; /* cinza 900 */
  margin-bottom: 3rem;
}

.timeline h2 .green {
  color: var(--color-green-primary);
}

.timeline-track {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 2rem;
}

/* Linha de fundo */
.timeline-track::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(22, 163, 74, 0.6); /* verde 60% opacidade */
  z-index: 0;
}

.step {
  position: relative;
  flex: 1;
  text-align: center;
}

/* Círculos */
.circle {
  width: 32px;
  height: 32px;
  background: var(--color-white);
  border: 3px solid var(--color-green-primary);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.circle.active {
  background: var(--color-green-primary);
  box-shadow: 0 0 15px rgba(22, 163, 74, 0.6);
}

/* Cards */
.timeline .card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}

.timeline .card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #111827; /* cinza 900 */
}

.timeline .card p {
  margin: 0;
  font-size: 0.9rem;
  color: #374151; /* cinza 700 */
  line-height: 1.4;
}

.timeline .card .green {
  color: var(--color-green-primary);
  font-weight: 600;
}

.timeline .card .highlight {
  color: var(--color-green-primary);
  border-bottom: 2px solid var(--color-green-lime);
  font-weight: 700;
}

/* MOBILE */
@media (max-width: 992px) {
  .timeline-track {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .timeline-track::before {
    top: 0;
    left: 16px;
    width: 3px;
    height: 100%;
  }

  .step {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .circle {
    margin: 0;
  }

  .timeline .card {
    margin: 0;
    max-width: 100%;
  }
}

/* BLOCO 7 – PROVA SOCIAL */
.prova-social {
  background: #F9FAFB; /* fundo claro similar ao timeline */
  padding: 5rem 1.5rem;
}

.prova-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.prova-social h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: #111827; /* cinza 900 */
  margin-bottom: 3rem;
}

.prova-social h2 .green {
  color: var(--color-green-primary);
}

.prova-social .card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex-shrink: 0;
  width: 300px; /* largura fixa para consistência */
}

.prova-social .foto {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Mobile */
@media (max-width: 992px) {
  .prova-social .card {
    width: 250px;
  }

  .prova-social .foto {
    height: 180px;
  }
}

.carrossel-wrapper {
  position: relative;
}

.carrossel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
}

.carrossel::-webkit-scrollbar {
  display: none; /* esconde a barra de scroll */
}

/* Controles (botões abaixo) */
.carrossel-controles {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.carrossel-btn {
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.carrossel-btn:hover {
  background: rgba(0,0,0,0.8);
}

/* Esconde botões no mobile */
@media (max-width: 992px) {
  .carrossel-controles {
    display: none;
  }
}

/* BLOCO 8 – QUEM ESTÁ POR TRÁS */
.quem {
  background: #121317; /* preto-elevado */
  padding: 5rem 1.5rem;
}

.quem-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Texto */
.quem-texto {
  flex: 1;
  color: #d1d5db; /* cinza 300-400 */
}

.quem-texto h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  position: relative;
}

.quem-texto h2::before {
  content: "";
  width: 40px;
  height: 4px;
  background: var(--color-green-primary);
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 2px;
}

.quem-texto p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.quem-texto .green {
  color: var(--color-green-primary);
  font-weight: 600;
}

.quem-texto .highlight {
  color: var(--color-green-primary);
  border-bottom: 2px solid var(--color-green-lime);
  font-weight: 700;
}

.quem-texto .missao {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-white);
  margin-top: 2rem;
}

/* Foto */
.quem-foto {
  flex: 1;
  display: flex;
  justify-content: center;
}

.quem-foto img {
  width: 100%;
  max-width: 400px;
  border: 3px solid var(--color-green-primary);
  border-radius: 8px; /* quadrada premium */
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.25);
  object-fit: cover;
}

/* Mobile */
@media (max-width: 992px) {
  .quem-container {
    flex-direction: column;
    text-align: center;
  }

  .quem-texto h2::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .quem-foto {
    order: -1; /* foto em cima no mobile */
    margin-bottom: 2rem;
  }
}

/* BLOCO 9 – INVESTIMENTO */
.investimento {
  background: var(--color-black-base); /* fundo preto base */
  padding: 6rem 1.5rem;
  text-align: center;
}

.investimento-container {
  max-width: 780px;
  margin: 0 auto;
  background: linear-gradient(145deg, #0B0B0D 0%, #121317 100%);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* Título */
.investimento h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--color-white);
  margin-bottom: 2.5rem;
}

.investimento h2 .green {
  color: var(--color-green-primary);
}

/* Texto de ancoragem */
.preco .ancoragem {
  font-size: 1.1rem;
  color: var(--color-gray-200);
  margin-bottom: 0.75rem;
}

.preco .ancoragem .riscado {
  text-decoration: line-through;
  color: #6B7280; /* cinza 500 */
}

/* Parcelado (principal) */
.preco .parcelado {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 0.5rem 0 1rem;
  text-shadow: 0 0 20px rgba(22, 163, 74, 0.25);
}

.preco .parcelado span {
  color: var(--color-green-primary);
}

.preco .parcelado .badge {
  background: var(--color-green-primary);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  margin-left: 0.5rem;
}

/* À vista (secundário) */
.preco .avista {
  font-size: 1.3rem;
  color: var(--color-gray-200);
  margin-bottom: 1rem;
}

.preco .avista span {
  color: var(--color-white);
  font-weight: 700;
}

/* Âncora por dia */
.preco .ancora {
  margin: 1rem 0 2.5rem;
}

.preco .badge-lime {
  background: var(--color-green-lime);
  color: var(--color-black-base);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(132, 204, 22, 0.3);
}

/* Lista de inclusões */
.inclui {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.inclui li {
  color: var(--color-gray-200);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.inclui .check {
  color: var(--color-green-primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* CTA */
.investimento .cta-area {
  margin-top: 2rem;
}

.investimento .cta {
  display: inline-block;
  background: var(--color-green-primary);
  color: var(--color-white);
  font-weight: 700;
  border-radius: 16px;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.25);
  transition: all 0.3s ease;
}

.investimento .cta:hover {
  background: var(--color-green-dark);
  transform: translateY(-3px) scale(1.02);
}

.investimento .cta:active {
  background: var(--color-green-pressed);
  transform: scale(0.97);
}

.investimento .cta:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.6);
}

/* Microcopy de segurança */
.pagamento-seguro {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #6B7280; /* cinza 500 */
  font-style: italic;
}

/* Mobile */
@media (max-width: 768px) {
  .investimento-container {
    padding: 2.5rem 1.5rem;
  }

  .investimento h2 {
    font-size: 1.8rem;
  }

  .preco .parcelado {
    font-size: 2rem;
  }

  .preco .avista {
    font-size: 1.1rem;
  }

  .inclui {
    align-items: flex-start;
  }

  .investimento .cta {
    width: 100%;
  }
}

/* BLOCO 11 – FAQ */
.faq {
  background: #121317; /* preto-elevado */
  padding: 5rem 1.5rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-container h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 3rem;
}

/* FAQ item */
.faq-item {
  border: 1px solid rgba(15, 122, 56, 0.4); /* verde-escuro sutil */
  border-radius: 12px;
  background: #0B0B0D;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Botão da pergunta */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(22, 163, 74, 0.05); /* hover verde leve */
}

.faq-question .icon {
  color: var(--color-green-primary);
  font-size: 1.3rem;
  font-weight: bold;
}

/* Resposta */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  background: #0B0B0D;
  color: #d1d5db; /* cinza 300 */
  font-size: 1rem;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Quando aberto */
.faq-item.open .faq-answer {
  max-height: 300px; /* suficiente para o texto */
  padding: 1rem 1.25rem 1.25rem;
}

.faq-item.open .faq-question .icon {
  content: "–";
  color: var(--color-green-primary);
}

/* Mobile */
@media (max-width: 768px) {
  .faq-container h2 {
    font-size: 1.6rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 0.9rem 1rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }
}

/* BLOCO 12 – FECHAMENTO */
.fechamento {
  background: var(--color-black-base);
  position: relative;
  padding: 6rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

/* Glow verde sutil */
.fechamento::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(22,163,74,0.2) 0%, rgba(22,163,74,0) 70%);
  z-index: 0;
}

.fechamento-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

/* Nota de vagas */
.nota-vagas {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-green-lime);
  color: var(--color-black-base);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 2rem;
}

.nota-vagas .icon {
  font-size: 1rem;
}

/* Título */
.fechamento h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.fechamento h2 .green {
  color: var(--color-green-primary);
}

/* Subheadline */
.fechamento .subheadline {
  color: var(--color-gray-200);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* CTA group */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* CTA primário */
.cta-primary {
  background: var(--color-green-primary);
  color: var(--color-white);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-primary:hover {
  background: var(--color-green-dark);
  transform: translateY(-2px);
}

.cta-primary:active {
  background: var(--color-green-pressed);
  transform: scale(0.97);
}

/* CTA WhatsApp */
.cta-whats {
  background: var(--color-green-dark);
  color: var(--color-white);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-whats:hover {
  background: #136e34; /* um pouco mais claro */
  transform: translateY(-2px);
}

.cta-whats .icon {
  font-size: 1.2rem;
}

/* Mobile */
@media (max-width: 768px) {
  .fechamento h2 {
    font-size: 1.7rem;
  }

  .cta-group {
    flex-direction: column;
  }

  .cta-primary,
  .cta-whats {
    width: 100%;
    justify-content: center;
  }
}
