/* ══════════════════════════════════════════════════
   COZINHA LEVE — styles.css
   Mobile-first · Poppins · max-width 720px
   Organizado por seção com comentários
══════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   SCROLL FADE (IntersectionObserver)
───────────────────────────────────────────── */
.js-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   TIPOGRAFIA GLOBAL
───────────────────────────────────────────── */
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* ─────────────────────────────────────────────
   UTILITÁRIOS DE SEÇÃO
───────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 0 0 10px;
}

.section-label--white {
  color: rgba(255, 255, 255, 0.75);
}

.section-title {
  font-size: clamp(1.55rem, 5vw, 2.3rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.section-title--white {
  color: #fff;
}

.section-title--lg {
  font-size: clamp(1.8rem, 5.5vw, 2.6rem);
}

.section-title--caps {
  text-transform: uppercase;
  font-size: clamp(1.1rem, 3.8vw, 1.7rem);
  letter-spacing: 0.04em;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 40px;
  max-width: 520px;
}

.section-sub--white {
  color: rgba(255, 255, 255, 0.8);
}

.text-green {
  color: var(--green-dark);
}

.text-orange {
  color: var(--orange);
}

/* ─────────────────────────────────────────────
   PAGE DIVIDERS — ondas SVG suaves entre seções
───────────────────────────────────────────── */
.page-divider {
  line-height: 0;
  font-size: 0;
  margin: 0;
  padding: 0;
  margin-top: -1px;
}

.page-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.page-divider.inverted svg {
  transform: rotate(180deg);
}

.divider {
  display: block;
  line-height: 0;
  font-size: 0;
  margin: 0;
  padding: 0;
}

.divider svg {
  display: block;
  width: 100%;
  height: 90px;
}

/* ─────────────────────────────────────────────
   BOTÃO FEEDBACK
───────────────────────────────────────────── */
.btn-primary,
.btn-green {
  will-change: transform, box-shadow;
}

/* ─────────────────────────────────────────────
   2. VSL SECTION
───────────────────────────────────────────── */
.vsl-section {
  background: #fff;
  padding: 18px 0 20px;
  text-align: center;
}

/* Food carousel — square, menor que o de depoimentos */
.food-carousel-heading {
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px;
  line-height: 1.3;
}
.food-carousel {
  max-width: 320px !important;
  margin-bottom: 32px !important;
}
.food-carousel-track {
  aspect-ratio: 1 / 1 !important;
  min-height: unset !important;
}
.food-carousel .carousel-slide {
  border-radius: 8px !important;
}
.food-carousel .carousel-slide img {
  border-radius: 8px !important;
}

.vsl-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #F5F5F5;
}

.vsl-play-btn {
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
}

.vsl-play-btn svg {
  margin-left: 4px;
}

.vsl-hint {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
}

.vsl-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.btn-primary--lg {
  font-size: 1rem;
  padding: 15px 40px;
}

/* Barra de confiança */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   3. IMAGINE SUA ROTINA ASSIM
   Cards 3D brancos sobre fundo verde
───────────────────────────────────────────── */
.imagine-section {
  background: linear-gradient(160deg, #1DB954 0%, #0A8C3A 50%, #065f24 100%);
  padding: 18px 0 20px;
  text-align: center;
}

.imagine-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 0;
}

@media (min-width: 580px) {
  .imagine-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards 3D brancos */
.imagine-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px 22px 28px;
  text-align: center;
  box-shadow:
    5px 8px 0 rgba(0, 0, 0, 0.13),
    0 16px 40px rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.2s;
}

.imagine-card:hover {
  transform: translateY(-4px);
  box-shadow:
    7px 12px 0 rgba(0, 0, 0, 0.11),
    0 24px 50px rgba(0, 0, 0, 0.13);
}

.imagine-icon {
  width: 60px;
  height: 60px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.35);
}

.imagine-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 10px;
  line-height: 1.35;
}

.imagine-card p {
  font-size: 0.85rem;
  color: #2d7d46;
  line-height: 1.6;
  margin: 0;
}

/* Divisor decorativo: linha + ícone + linha */
.icon-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 44px 0 36px;
}

.icon-divider__line {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
}

.icon-divider__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Checklist abaixo das cards */
.imagine-checklist-wrap {
  text-align: center;
}

.imagine-checklist-title {
  font-size: clamp(1.1rem, 3.5vw, 1.35rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
  line-height: 1.3;
}

.imagine-checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.imagine-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 500;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1.45;
}

.imagine-checklist li::before {
  content: '';
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230A8C3A' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/15px no-repeat;
}

/* ─────────────────────────────────────────────
   4. O QUE VOCÊ RECEBE + BÔNUS
   Cards mockup brancos sobre verde escuro
───────────────────────────────────────────── */
.receives-section {
  background: var(--bg);
  padding: 18px 0 20px;
  color: var(--text);
  text-align: center;
}

/* Grid de módulos com mockup */
.module-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 44px;
}

@media (min-width: 540px) {
  .module-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.module-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    5px 7px 0 rgba(0, 0, 0, 0.13),
    0 12px 32px rgba(0, 0, 0, 0.09);
  text-align: left;
  transition: transform 0.2s;
}

.module-card:hover {
  transform: translateY(-3px);
  box-shadow:
    7px 10px 0 rgba(0, 0, 0, 0.11),
    0 20px 42px rgba(0, 0, 0, 0.12);
}

/* Glow amarelo via pseudo-elemento + opacity — 100% GPU composited */
@keyframes glow-kids {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.module-card--featured {
  border: 2px solid var(--yellow);
  position: relative;
}

.module-card--featured::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  box-shadow: 0 0 14px 4px rgba(255, 209, 102, 0.75);
  pointer-events: none;
  will-change: opacity;
  animation: glow-kids 1.8s ease-in-out infinite;
}

.module-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(160deg, #e8f5e9 0%, #f0fff4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 10px;
}

.module-img-wrap--icon {
  background: linear-gradient(160deg, #dcf5e7 0%, #b2ebb4 100%);
}

.whatsapp-icon-svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 16px rgba(37, 211, 102, 0.35));
}

.module-card-body {
  padding: 18px 20px 22px;
}

.module-card-body h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 12px;
  line-height: 1.3;
}

.module-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  background: var(--yellow);
  color: #1A1A1A;
  border-radius: 30px;
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

/* Header do Módulo Kids com indicador piscando */
.module-kids-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

@keyframes blink-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.3;
    transform: scale(0.7);
  }
}

.module-kids-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  animation: blink-dot 1.2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(255, 87, 34, 0.6);
}

.module-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.module-checklist li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 28px;
  position: relative;
  line-height: 1.45;
}

.module-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* Banner "E não para por aí" — destaque total */
.receives-more-banner {
  position: relative;
  margin: 0 0 32px;
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #065f24 0%, #0A8C3A 55%, #1DB954 100%);
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(10, 140, 58, 0.25);
}

.receives-more-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.receives-more-icon-wrap {
  font-size: 2.2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.receives-more-label {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0;
  line-height: 1.2;
}

.receives-more-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  max-width: 480px;
}

.receives-more-text strong {
  color: var(--yellow);
}

.receives-more-tag-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.receives-more-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.4);
}

/* Bônus preview cards */
.bonus-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 540px) {
  .bonus-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bonus-preview-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    4px 6px 0 rgba(0, 0, 0, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.2s;
}

.bonus-preview-card:hover {
  transform: translateY(-3px);
}

.bonus-preview-img {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(160deg, #e8f5e9 0%, #f0fff4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-preview-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 8px;
}

.bonus-preview-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
}

.bonus-preview-body {
  padding: 14px 16px 18px;
}

.bonus-preview-body h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 6px;
  line-height: 1.3;
}

.bonus-preview-body p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ─────────────────────────────────────────────
   5. MOCKUP DO APP
   Sem frame de celular — só a imagem
───────────────────────────────────────────── */
.mockup-section {
  background: linear-gradient(160deg, #065f24 0%, #0A8C3A 100%);
  padding: 18px 0 20px;
  text-align: center;
}

.mockup-img-wrap {
  max-width: 480px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.mockup-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─────────────────────────────────────────────
   6. POR QUE FUNCIONA — Pilares
───────────────────────────────────────────── */
.pillars-section {
  background: var(--bg);
  padding: 18px 0 20px;
  text-align: center;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 580px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow:
    5px 8px 0 rgba(0, 0, 0, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow:
    7px 12px 0 rgba(0, 0, 0, 0.07),
    0 24px 50px rgba(0, 0, 0, 0.10);
}

.pillar-icon {
  width: 72px;
  height: 72px;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.pillar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
}

.pillar-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ─────────────────────────────────────────────
   7. CARROSSEL DE DEPOIMENTOS
───────────────────────────────────────────── */
.testimonials-section {
  background: linear-gradient(160deg, #1DB954 0%, #0A8C3A 100%);
  padding: 18px 0 20px;
  text-align: center;
}

.carousel {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  user-select: none;
}

.carousel-track {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Reserva espaço para prints de celular 9:16 */
  aspect-ratio: 9 / 16;
}

/* Slides: só opacity+transform (GPU composited) — sem visibility */
.carousel-slide {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(52px);
  transition: opacity 0.72s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.72s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 2;
}

.carousel-slide.is-leaving {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-52px);
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.15s;
}

.carousel-btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.carousel-btn--prev {
  left: -22px;
}

.carousel-btn--next {
  right: -22px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: background 0.2s, width 0.2s;
}
/* Expande área de toque para 44x44px sem mudar o visual */
.carousel-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
}

.carousel-dot.is-active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}

/* ─────────────────────────────────────────────
   8. PLANOS E OFERTA
───────────────────────────────────────────── */
/* Botões da oferta: glow fixo, sem scale */
.offer-section .btn-primary,
.offer-section .btn-green {
  animation: none;
  box-shadow: 0 0 14px 8px rgba(255,87,34,.65);
}
.offer-section .btn-primary:hover,
.offer-section .btn-green:hover {
  box-shadow: 0 0 22px 12px rgba(255,87,34,.5);
}

.offer-section {
  background: var(--bg);
  padding: 18px 0 20px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

@media (min-width: 540px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pricing-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px 18px;
  text-align: center;
  position: relative;
  border: 2px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.pricing-card--featured {
  border-color: var(--yellow);
  border-width: 3px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14), 0 0 24px rgba(255, 209, 102, 0.35);
}

/* Card header area */
.pricing-card-head {
  position: relative;
  margin: -24px -18px 16px;
  padding: 20px 18px 16px;
  text-align: left;
}

.pricing-card-head--neutral {
  background: var(--green-bg);
  border-bottom: 1px solid rgba(29, 185, 84, 0.15);
}

.pricing-card-head--featured {
  background: linear-gradient(135deg, #065f24 0%, #1DB954 100%);
  border-bottom: none;
}

.pricing-card-head--featured .pricing-name {
  color: #fff;
}

.pricing-card-head--featured .pricing-desc {
  color: rgba(255, 255, 255, 0.82);
}

.pricing-top-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 10px;
}

.pricing-duration-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(29, 185, 84, 0.45);
}

.pricing-card--featured .pricing-duration-badge {
  background: var(--orange);
  box-shadow: 0 3px 14px rgba(255, 87, 34, 0.5);
}

.pricing-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.pricing-badge--neutral {
  background: var(--border);
  color: var(--muted);
}

.pricing-badge--top {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  color: #1A1A1A;
  font-size: 0.78rem;
  padding: 6px 18px;
}

.pricing-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
}

.pricing-desc {
  font-size: 0.83rem;
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.5;
}

.pricing-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 14px;
  padding: 12px 0 4px;
  border-top: 1px solid var(--border);
}

.pricing-old {
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing-price {
  font-size: 3.6rem;
  font-weight: 800;
  color: #22c55e;
  line-height: 1.1;
}

.pricing-price--big {
  font-size: 4.2rem;
  color: #22c55e;
}

.pricing-old-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.pricing-por {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: lowercase;
  letter-spacing: 0;
  text-decoration: none;
}

.pricing-installment {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

/* Checkmarks circulares */
.pricing-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.pricing-features li {
  font-size: 0.87rem;
  color: var(--text);
  padding-left: 32px;
  position: relative;
  line-height: 1.45;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/13px no-repeat;
}

.pricing-features li strong {
  font-weight: 700;
}

.pricing-features li.locked,
.pricing-features--bonus li.locked {
  color: var(--text);
  opacity: 1;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
}

.pricing-features li.locked::before,
.pricing-features--bonus li.locked::before {
  display: none !important;
}

.locked-x {
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pricing-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 12px 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange-dark);
}

/* ─────────────────────────────────────────────
   9. GARANTIA
───────────────────────────────────────────── */
.guarantee-section {
  background: var(--bg);
  padding: 18px 0 20px;
}

.guarantee-card {
  background: linear-gradient(135deg, #fff 0%, #F0FFF4 100%);
  border-radius: 28px;
  border: 2px solid rgba(29, 185, 84, 0.35);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  box-shadow:
    0 8px 40px rgba(29, 185, 84, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(29, 185, 84, 0.06);
  pointer-events: none;
}

.guarantee-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(29, 185, 84, 0.05);
  pointer-events: none;
}

@media (min-width: 520px) {
  .guarantee-card {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
}

.guarantee-img-wrap {
  flex-shrink: 0;
}

.guarantee-img-wrap img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.guarantee-content h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.guarantee-days {
  color: var(--green-dark);
}

.guarantee-content p {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 10px;
}

/* ─────────────────────────────────────────────
   10. AUTORIDADE
───────────────────────────────────────────── */
.authority-section {
  background: #fff;
  padding: 18px 0 20px;
  text-align: center;
}

.authority-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 520px) {
  .authority-card {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
}

.authority-photo-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.authority-photo-caption {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-dark);
  text-align: center;
  margin: 0;
  line-height: 1.4;
}

.authority-photo {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
  border: 4px solid var(--green);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

@media (min-width: 520px) {
  .authority-photo {
    width: 220px;
    height: 220px;
  }
}

.authority-text h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.authority-cred {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.authority-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 10px;
}

/* ─────────────────────────────────────────────
   11. FAQ — Sempre visível, sem accordion
   Cards com borda esquerda verde
───────────────────────────────────────────── */
.faq-section {
  background: var(--bg);
  padding: 18px 0 20px;
  text-align: center;
}

.faq-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.faq-icon svg {
  width: 160px;
  height: 160px;
}

.faq-list {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  border-left: 4px solid var(--green);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 10px;
  line-height: 1.3;
}

.faq-a {
  font-size: 0.9rem;
  color: #4B5563;
  line-height: 1.7;
  margin: 0;
}

.faq-sep {
  border: none;
  margin: 10px 0;
}

/* ─────────────────────────────────────────────
   12. FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: #1A1A1A;
  color: rgba(255, 255, 255, 0.5);
  padding: 32px 0;
  text-align: center;
}

.footer-copy {
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.78rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-nav span {
  color: rgba(255, 255, 255, 0.25);
}


/* ── PRICING — novos elementos ── */
.pricing-features-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin: 12px 0 6px;
}

.pricing-features-title--bonus {
  color: var(--orange);
  font-size: 1rem;
  margin-top: 14px;
}

.pricing-card--featured .pricing-features-title {
  color: var(--green-dark);
}

.pricing-features--bonus li {
  color: var(--text);
  font-size: 0.93rem;
}

.pricing-features--bonus li::before {
  background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/13px no-repeat !important;
}

.pricing-order-bump {
  background: #FFF8F0;
  border: 1px dashed var(--orange);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.78rem;
  color: #5a3a00;
  margin: 14px 0 16px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.45;
}

.pricing-order-bump svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA inter-seções */
.section-cta {
  text-align: center;
  padding: 16px 0 4px;
}

.section-cta .trust-row {
  margin-top: 14px;
  justify-content: center;
}

/* trust-row em fundo verde */
.mockup-section .trust-row,
.testimonials-section .trust-row,
.imagine-section .trust-row {
  color: rgba(255, 255, 255, 0.85);
}

.mockup-section .trust-dot,
.testimonials-section .trust-dot,
.imagine-section .trust-dot {
  background: rgba(255, 255, 255, 0.4);
}