:root {
  --verde-principal: #62b175;
  --verde-escuro: #386641;
  --amarelo: #ffe066;
  --branco: #ffffff;
  --cinza: #6b7280;
  --cinza-claro: #f9fafb;
  --cinza-escuro: #374151;
  --preto: #111827;
  --verde-hover: #4a9960;
  --sombra: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --sombra-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --whatsapp: #25d366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: var(--cinza-escuro);
  background: var(--branco);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: var(--branco);
  border-bottom: 1px solid #e5e7eb;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: 50px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cinza-escuro);
  margin: 5px 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.nav-links a {
  text-decoration: none;
  color: var(--cinza-escuro);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--verde-principal);
}

.cta-header {
  background: var(--verde-principal);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-header:hover {
  background: var(--verde-hover);
}

/* Hero Section */
.hero {
  padding: 80px 0 100px;
  background: var(--branco);
  text-align: center;
}

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  color: var(--cinza);
  font-size: 14px;
}

.user-avatars {
  display: flex;
  margin-right: 10px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--verde-principal);
  border: 2px solid var(--branco);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
}

.avatar:first-child {
  margin-left: 0;
}

.hero h1 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--preto);
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.brand-title {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--preto);
  display: inline-block;
  margin-bottom: 16px;
  position: relative;
}

.brand-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--verde-principal) 0%,
    #5aa76c 20%,
    #8fd9a5 50%,
    #4a9960 80%,
    var(--verde-escuro) 100%
  );
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(56, 102, 65, 0.25);
  background-size: 300% 100%;
  animation: brand-bar-wave 3s ease-in-out infinite;
}

@keyframes brand-bar-wave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.hero-highlight {
  color: var(--verde-principal);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--cinza);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  background: var(--verde-principal);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
  margin-bottom: 60px;
}

.hero-cta:hover {
  background: var(--verde-hover);
  transform: translateY(-2px);
}

/* Hero Image */
.hero-image {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.hero-video {
  border: 6px solid var(--verde-principal);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sombra-lg);
  width: min(88vw, 60vh, 760px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.hero-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

@media (max-width: 640px) {
  .hero-video {
    width: min(92vw, 480px);
    aspect-ratio: 9 / 16;
  }

  .hero-video video {
    object-fit: cover;
    background: transparent;
  }
}

/* Quiz Callout */
.quiz-callout {
  padding: 80px 0;
  background: var(--cinza-claro);
  margin-bottom: 3%;
}

.quiz-callout .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.quiz-callout-header {
  max-width: 720px;
}

.quiz-callout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.quiz-callout-card {
  background: var(--branco);
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
  gap: 24px;
  align-items: center;
  box-shadow: var(--sombra);
}

.quiz-callout-card--highlight {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(145deg, #ffffff 0%, #f1f7f2 100%);
}

.quiz-callout-card--highlight h3 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--preto);
}

.quiz-callout-card--highlight p {
  color: var(--cinza);
  font-size: 1rem;
}

.quiz-callout-bullets {
  display: grid;
  gap: 10px;
  color: var(--cinza-escuro);
  font-weight: 600;
}

.quiz-callout-bullets span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quiz-callout-bullets span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--verde-principal);
  flex-shrink: 0;
}

.quiz-callout-text h2 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--preto);
  margin-bottom: 12px;
}

.quiz-callout-text p {
  color: var(--cinza);
  font-size: 1.05rem;
}

.quiz-callout-header h2 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--preto);
}

.quiz-callout-actions {
  align-self: center;
}

.quiz-cta {
  margin-bottom: 0;
}

/* Problems Section */
.problems {
  padding: 100px 0;
  background: var(--cinza-claro);
}

.section-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  color: var(--preto);
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--preto);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.problem-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--sombra);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.problem-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.2);
}

.problem-icon {
  width: 80px;
  height: 80px;
  background: #fef2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #dc2626;
  font-size: 2rem;
}

.problem-card h3 {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--preto);
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--cinza);
}

/* Solution Section */
.solution {
  padding: 100px 0;
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  margin: 60px 0;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stats-grid--copy {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  text-align: left;
}

.stat-item--copy {
  padding: 0;
}

.stat-title {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--preto);
  font-weight: 700;
}

.stat-icon {
  font-size: 1.2rem;
}

.stat-number {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--verde-principal);
  display: block;
  margin-bottom: 8px;
}

.stat-title .stat-number {
  display: inline;
  margin: 0;
  font-size: 1.6rem;
}

.stat-text {
  font-size: 1.1rem;
  text-transform: none;
  letter-spacing: 0;
}

.stat-desc {
  margin: 8px 0 0;
  color: var(--cinza);
  font-size: 0.95rem;
  line-height: 1.6;
}

.stat-label {
  color: var(--cinza);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--cinza-claro);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.feature-row.feature-row--content {
  align-items: start;
}

.feature-row:nth-child(even) .feature-content {
  order: 2;
}

.feature-row:nth-child(even) .feature-visual {
  order: 1;
}

.feature-content h3 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--preto);
  margin-bottom: 20px;
}

.feature-content p {
  font-size: 1.1rem;
  color: var(--cinza);
  margin-bottom: 30px;
  line-height: 1.7;
}

.feature-visual {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--sombra);
  text-align: center;
}

.feature-icon-lg {
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    var(--verde-principal),
    var(--verde-escuro)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: white;
  font-size: 3rem;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.benefit-item {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--sombra);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--verde-principal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.5rem;
}

.benefit-item h4 {
  font-weight: 600;
  color: var(--preto);
  margin-bottom: 10px;
}

.benefit-item p {
  color: var(--cinza);
  font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  --colmeia-w: 120px;
  --colmeia-h: 208px;
  --colmeia-linha: rgba(0, 0, 0, 0.05);
  background-color: #f9fafb;
  background-image:
    linear-gradient(
      30deg,
      var(--colmeia-linha) 12%,
      transparent 12.5%,
      transparent 87%,
      var(--colmeia-linha) 87.5%,
      var(--colmeia-linha)
    ),
    linear-gradient(
      150deg,
      var(--colmeia-linha) 12%,
      transparent 12.5%,
      transparent 87%,
      var(--colmeia-linha) 87.5%,
      var(--colmeia-linha)
    ),
    linear-gradient(
      90deg,
      var(--colmeia-linha) 2%,
      transparent 2.5%,
      transparent 97%,
      var(--colmeia-linha) 97.5%,
      var(--colmeia-linha)
    );
  background-size: var(--colmeia-w) var(--colmeia-h);
  background-position:
    0 0,
    0 0,
    0 0;
}

.pricing-container {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: var(--sombra-lg);
  border: 3px solid var(--verde-principal);
  position: relative;
  text-align: center;
}

.pricing-container * {
  text-decoration: line-through;
}

.pricing-container .free-trial-ribbon {
  text-decoration: none;
}

.pricing-container .features-included,
.pricing-container .features-included * {
  text-decoration: none;
}

.pricing-container .promo-badge {
  text-decoration: none;
}

.promo-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amarelo);
  color: var(--verde-escuro);
  padding: 10px 30px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--sombra);
}

.free-trial-ribbon {
  position: absolute;
  top: 117px;
  left: calc(50% + 5px);
  transform: translateX(-50%) rotate(-10deg);
  width: calc(135% - 3px);
  background: var(--verde-principal);
  color: white;
  padding: 22px 20px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: var(--sombra);
  z-index: 2;
  pointer-events: none;
  animation: ribbon-pulse 2.2s ease-in-out infinite;
}

@keyframes ribbon-pulse {
  0%,
  100% {
    transform: translateX(-50%) rotate(-10deg) scale(1);
    box-shadow: var(--sombra);
  }
  50% {
    transform: translateX(-50%) rotate(-10deg) scale(1.04);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  }
}

.price-section {
  margin: 30px 0;
}

.price-original {
  font-size: 1.1rem;
  color: var(--cinza);
  text-decoration: line-through;
  margin-bottom: 5px;
}

.price-current {
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--verde-principal);
  margin-bottom: 5px;
}

.price-period {
  color: var(--cinza);
  margin-bottom: 10px;
}

.price-note {
  font-size: 0.9rem;
  color: var(--cinza);
  margin-bottom: 30px;
}

.bonus-section {
  background: linear-gradient(135deg, var(--amarelo), #fef3c7);
  padding: 25px;
  border-radius: 12px;
  margin: 30px 0;
  border: 2px solid var(--amarelo);
}

.bonus-section h4 {
  color: var(--verde-escuro);
  font-weight: 700;
  margin-bottom: 10px;
}

.features-included {
  text-align: left;
  margin: 30px 0;
}

.features-included h4 {
  color: var(--preto);
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.features-included ul {
  list-style: none;
}

.features-included li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--cinza-escuro);
}

.features-included .icon {
  color: var(--verde-principal);
  font-weight: bold;
}

.guarantee-section {
  background: #f0fdf4;
  padding: 20px;
  border-radius: 12px;
  margin: 30px 0;
  border-left: 4px solid var(--verde-principal);
}

.whatsapp-btn {
  background: var(--whatsapp);
  color: white;
  padding: 18px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: var(--cinza-claro);
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: var(--sombra);
}

.faq-question {
  padding: 25px;
  font-weight: 600;
  color: var(--preto);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 25px 25px;
  color: var(--cinza);
  line-height: 1.6;
  display: none;
}

/* Footer */
footer {
  background: var(--preto);
  color: white;
  padding: 60px 0 30px;
  text-align: center;
}

.footer-content {
  margin-bottom: 30px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

.footer-social a {
  color: #9ca3af;
  font-size: 1.4rem;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 30px;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing {
    --colmeia-w: 80px;
    --colmeia-h: 139px;
  }

  .free-trial-ribbon {
    top: 114px;
    width: 120%;
    padding: 18px 14px;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
    transform: translateX(-50%) rotate(-8deg);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .cta-header {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--branco);
    flex-direction: column;
    gap: 16px;
    padding: 16px 20px 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 12px 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-row:nth-child(even) .feature-content,
  .feature-row:nth-child(even) .feature-visual {
    order: initial;
  }

  .quiz-callout-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .quiz-callout-grid {
    grid-template-columns: 1fr;
  }

  .quiz-callout-actions {
    align-self: center;
    width: 100%;
  }

  .quiz-callout .container {
    align-items: center;
    text-align: center;
  }

  .quiz-callout-header {
    max-width: 520px;
  }

  .quiz-callout-actions .quiz-cta {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problems-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--whatsapp);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  z-index: 1000;
  box-shadow: var(--sombra-lg);
  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 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ========================================
   CORREÇÕES APLICADAS — 2026-04-15
   Veja CHANGELOG.md pra detalhes
   ======================================== */

/* Hero — CTAs separados por persona */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0 1rem;
}
.hero-cta--primary {
  background: #2E7D32;
  color: #fff;
}
.hero-cta--primary:hover { background: #256029; }
.hero-cta--secondary {
  background: transparent;
  color: #2E7D32;
  border: 2px solid #2E7D32;
}
.hero-cta--secondary:hover { background: #2E7D32; color: #fff; }
.hero-cta-note {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  opacity: 0.85;
}
.hero-cta-link {
  color: #2E7D32;
  font-weight: 600;
  text-decoration: underline;
}

/* Footer expandido — 4 colunas */
footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 3rem 0 2rem;
}
.footer-col h3.footer-logo { margin-bottom: 0.5rem; }
.footer-col h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.8;
}
.footer-col .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col .footer-links a {
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-col .footer-links a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
  text-align: center;
}
.footer-bottom a {
  text-decoration: underline;
  margin: 0 0.25rem;
}

/* Brand-title: era H1, virou p pra ter só 1 H1 na página (SEO) */
p.brand-title {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

/* ========================================
   PASSE 2 — 2026-04-15
   Como funciona 3 passos + Depoimentos + Risk reversal
   ======================================== */

/* Como funciona — 3 passos */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
}
.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2E7D32;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.step-icon {
  font-size: 2.5rem;
  color: #2E7D32;
  margin: 0.5rem 0 1rem;
}
.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.step-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}
.features-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Depoimentos */
.testimonials {
  background: #FAF6EE;
  padding: 4rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-left: 4px solid #2E7D32;
}
.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  margin-bottom: 1.25rem;
  quotes: '"' '"';
}
.testimonial-author strong {
  display: block;
  font-size: 1.05rem;
  color: #1C1C1C;
  margin-bottom: 0.2rem;
}
.testimonial-author span {
  font-size: 0.85rem;
  color: #666;
}

/* Pricing risk reversal */
.pricing-fineprint {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #666;
  text-align: center;
}

/* -------------------------------------------------------------------- */
/* Legal pages (política de privacidade, termos de uso)                 */
/* -------------------------------------------------------------------- */
.legal-page {
  padding: 60px 0 80px;
  background: var(--branco);
  min-height: 70vh;
}

.legal-page .container {
  max-width: 820px;
}

.legal-page .breadcrumb {
  font-size: 0.9rem;
  color: var(--cinza);
  margin-bottom: 24px;
}

.legal-page .breadcrumb a {
  color: var(--verde-escuro);
  text-decoration: none;
}

.legal-page .breadcrumb a:hover {
  text-decoration: underline;
}

.legal-page .breadcrumb span {
  margin: 0 6px;
  color: #cbd5e1;
}

.legal-page h1 {
  font-family: "DM Sans", "Inter", sans-serif;
  font-size: 2.4rem;
  line-height: 1.15;
  color: var(--preto);
  margin-bottom: 12px;
}

.legal-page .legal-meta {
  font-size: 0.9rem;
  color: var(--cinza);
  margin-bottom: 32px;
}

.legal-page section {
  margin-bottom: 28px;
}

.legal-page h2 {
  font-family: "DM Sans", "Inter", sans-serif;
  font-size: 1.4rem;
  color: var(--verde-escuro);
  margin: 28px 0 12px;
  line-height: 1.3;
}

.legal-page h3 {
  font-size: 1.1rem;
  color: var(--preto);
  margin: 20px 0 10px;
}

.legal-page p {
  margin-bottom: 14px;
  color: var(--cinza-escuro);
  line-height: 1.75;
}

.legal-page ul {
  margin: 0 0 16px 20px;
  color: var(--cinza-escuro);
}

.legal-page ul li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.legal-page a {
  color: var(--verde-escuro);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.legal-page a:hover {
  color: var(--verde-principal);
}

.legal-page strong {
  color: var(--preto);
  font-weight: 600;
}

@media (max-width: 640px) {
  .legal-page {
    padding: 40px 0 60px;
  }
  .legal-page h1 {
    font-size: 1.8rem;
  }
  .legal-page h2 {
    font-size: 1.2rem;
  }
}

/* -------------------------------------------------------------------- */
/* Hero extras — trust line + stack de CTAs                             */
/* -------------------------------------------------------------------- */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 20px 0 12px;
}

.hero-trust {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 6px;
  letter-spacing: 0.2px;
}

/* -------------------------------------------------------------------- */
/* "Como funciona em 3 passos" section wrapper                          */
/* -------------------------------------------------------------------- */
.howitworks {
  padding: 72px 0;
  background: var(--cinza-claro);
}

.howitworks .section-title {
  margin-bottom: 8px;
}

.howitworks .section-subtitle {
  margin-bottom: 40px;
}

/* -------------------------------------------------------------------- */
/* Pricing — rótulo "Gratuito"                                          */
/* -------------------------------------------------------------------- */
.price-current-label {
  font-family: "DM Sans", "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--verde-escuro);
  line-height: 1;
  margin-bottom: 4px;
}

/* -------------------------------------------------------------------- */
/* Nav — página atual (aria-current)                                     */
/* -------------------------------------------------------------------- */
.nav-links a[aria-current="page"] {
  color: var(--verde-principal);
  font-weight: 600;
  position: relative;
}
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--verde-principal);
  border-radius: 2px;
}

@media (max-width: 640px) {
  .price-current-label { font-size: 2.2rem; }
  .howitworks { padding: 48px 0; }
}

/* -------------------------------------------------------------------- */
/* Consent banner (LGPD) — fica no rodapé, não bloqueante              */
/* -------------------------------------------------------------------- */
#cmp-consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: #111827;
  color: #f1f5f9;
  border-radius: 14px;
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.5);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  max-width: 980px;
  margin: 0 auto;
  animation: cmpSlideUp 0.35s ease-out;
}

@keyframes cmpSlideUp {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cmp-consent-inner {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
}

.cmp-consent-text {
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1 1 auto;
  color: #e2e8f0;
}

.cmp-consent-text strong {
  color: #ffffff;
  font-weight: 600;
}

.cmp-consent-text a {
  color: #86efac;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cmp-consent-text a:hover {
  color: #bbf7d0;
}

.cmp-consent-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.cmp-btn {
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 10px;
  border: 0;
  padding: 10px 18px;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease;
  white-space: nowrap;
}

.cmp-btn:hover { transform: translateY(-1px); }
.cmp-btn:active { transform: translateY(0); }

.cmp-btn--decline {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.cmp-btn--decline:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.cmp-btn--accept {
  background: var(--verde-principal, #62b175);
  color: #0b1b0f;
}
.cmp-btn--accept:hover {
  background: #4a9960;
  color: #ffffff;
}

@media (max-width: 640px) {
  #cmp-consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 12px;
  }
  .cmp-consent-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
  }
  .cmp-consent-actions {
    justify-content: flex-end;
  }
  .cmp-btn { padding: 11px 18px; }
}

/* ===== CROSS-SELL BANNER ===== */
.crosssell {
  background: linear-gradient(135deg, #2D5016 0%, #3A6B1E 100%);
  padding: 48px 0;
}

.crosssell__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.crosssell__content {
  flex: 1;
  min-width: 280px;
}

.crosssell__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.crosssell__title {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.crosssell__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 520px;
}

.crosssell__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F5E6C8;
  color: #2D5016;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.crosssell__cta:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

@media (max-width: 640px) {
  .crosssell__inner {
    flex-direction: column;
    text-align: center;
  }
  .crosssell__text {
    max-width: none;
  }
}
