/* =========================
   Design tokens
   ========================= */
:root {
  --bg: #ffffff; /* Branco absoluto */
  --bg-2: #ffffff;
  --bg-alt: #f9f9f9; /* seções alternadas sutis */
  --text: #2d2d2d; /* grafite escuro para alto contraste */
  --muted: #a4978b; /* texto secundário/bege acinzentado */
  --highlight: #8d7b6d; /* destaque */
  --primary: #e9d8c9; /* nude/bege areia */
  --primary-strong: #d8c2ae; /* nude um pouco mais forte */
  --accent: #f2eae2;  /* areia clara de apoio */
  --success: #dbe7d1;
  --metal: #b08d57; /* bronze/dourado para selos */
  --shadow: 0 10px 30px rgba(20, 16, 12, 0.08);
  --radius: 24px;
  --radius-sm: 24px;
  --radius-lg: 24px;
}

/* =========================
   Base
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  margin: 0 0 12px;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.02em; /* sofisticação e calma */
  font-weight: 600; /* leve aumento de peso para escaneabilidade */
}

p {
  margin: 0 0 16px;
  color: var(--text);
}

.muted {
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

.link {
  color: var(--highlight);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =========================
   Header
   ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.2) blur(10px);
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  box-shadow: var(--shadow);
}

.brand-name {
  font-weight: 700;
  color: var(--highlight);
}

.site-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-link {
  color: var(--muted);
  font-weight: 500;
}

.nav-link:hover,
.cta-link {
  color: var(--text);
}

/* Botão minimalista no header */
.header-cta {
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(141, 123, 109, 0.25);
  background: rgba(253,252,251,0.8);
  color: var(--highlight);
  font-weight: 600;
}
.header-cta:hover {
  background: #fff;
}
/* =========================
   Hero
   ========================= */
.hero {
  padding: 64px 0 32px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.hero-title {
  font-size: 40px;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 56ch;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 8px;
}

.stars {
  color: #f7b500;
  letter-spacing: 2px;
  font-size: 16px;
}

.star-dim {
  opacity: 0.35;
}

.rating-text strong {
  font-weight: 700;
}

.badge {
  margin-left: 8px;
  background: #fffaf0;
  color: #8a6d3b;
  border: 1px solid #fbeed5;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin: 18px 0 10px;
}

.hotmart-note {
  font-size: 12px;
  color: var(--muted);
  max-width: 60ch;
}

.hero-art {
  position: relative;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  /* Suporte a imagem do bebê com máscara suave nas bordas */
  background: var(--hero-image, url("assets/hero-bebe.jpg")) center / cover no-repeat;
  -webkit-mask-image: radial-gradient(90% 80% at 50% 50%, #000 70%, rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(90% 80% at 50% 50%, #000 70%, rgba(0,0,0,0) 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* Esconde o placeholder anterior do hero */
.hero-blob,
.hero-card,
.hero-card-line,
.hero-card-seal { display: none; }

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.05s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn-lg {
  height: 52px;
  padding: 0 22px;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--primary), var(--primary-strong));
  color: #5f5247;
  box-shadow: 0 0 0 1px rgba(141,123,109,0.25) inset, var(--shadow);
}
.btn-primary:hover {
  filter: brightness(1.04);
}

.btn-ghost {
  background: #fff;
  color: var(--highlight);
  border-color: rgba(141,123,109,0.25);
}
.btn-ghost:hover {
  background: #fff;
  filter: brightness(0.99);
}

/* =========================
   Pricing
   ========================= */
.pricing {
  padding: 10px 0 40px;
}

.pricing-card {
  background: var(--bg-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  border: 0;
}

.section-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 18px 24px;
  justify-content: space-between;
}

.price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.price-currency {
  font-size: 18px;
  color: var(--muted);
}

.price-value {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  letter-spacing: -0.02em;
  color: var(--highlight);
}

.installments {
  color: var(--text);
}

.price-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.footnote {
  color: var(--muted);
  font-size: 12px;
}

.guarantees {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.guarantees li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.icon {
  font-size: 18px;
}

/* =========================
   ROI Luxe (alto ticket)
   ========================= */
.roi-luxe {
  padding: 12px 0 40px;
  background: var(--bg-alt);
}
.roi-luxe-card {
  background: #fff;
  border: 0;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.roi-luxe-title {
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--highlight);
  margin: 0 0 6px;
}
.roi-luxe-text {
  color: var(--text);
  margin: 0 0 12px;
}
.roi-math {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #fff8f2, #fff);
  border: 1px solid rgba(141,123,109,0.25);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--highlight);
  font-weight: 600;
}

/* =========================
   Testimonials (vídeo)
   ========================= */
.testimonials {
  padding: 10px 0 40px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.video-card {
  background: #fff;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-caption {
  padding: 12px 14px;
  color: var(--text);
}
.video-caption strong {
  color: var(--highlight);
}

/* =========================
   Informational (SEO/guide)
   ========================= */
.info {
  background: #fafafa;
  padding: 20px 0 36px;
}
.info-columns {
  column-count: 3;
  column-gap: 24px;
}
.info-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  break-inside: avoid;
}
.info-text + .info-text {
  margin-top: 10px;
}

.info-subtitle {
  color: #666;
  font-size: 1rem;
  font-weight: 700;
  margin: 10px 0 6px;
  break-inside: avoid;
}

.info-list {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 10px 0;
  padding: 0;
  list-style: none;
  break-inside: avoid;
}
.info-list li {
  position: relative;
  padding-left: 18px;
}
.info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--highlight);
  font-weight: 700;
}

.info-lead {
  font-size: 1rem;
  color: #575757;
  font-weight: 500;
}

.info-callout {
  border-left: 3px solid rgba(141,123,109,0.35);
  padding-left: 10px;
  color: #5d5d5d;
}

/* =========================
   Gallery
   ========================= */
.gallery {
  padding: 10px 0 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.gallery-item {
  background: #fff;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.gallery-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* =========================
   ROI Calculator
   ========================= */
.roi-calculator {
  padding: 10px 0 40px;
}

.roi-intro {
  color: var(--muted);
  max-width: 70ch;
  margin-bottom: 16px;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.roi-card {
  background: var(--bg-2);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow);
  padding: 20px;
}

.roi-card.is-featured {
  border-color: rgba(141, 123, 109, 0.25); /* destaque sutil na cor de destaque */
  background:
    linear-gradient(180deg, rgba(242, 234, 226, 0.45), rgba(255,255,255,0)) no-repeat,
    var(--bg-2);
}

.roi-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.roi-tier {
  font-weight: 600;
  color: var(--highlight);
  letter-spacing: 0.02em;
}

.roi-badge {
  font-size: 12px;
  color: var(--highlight);
  background: #fff;
  border: 1px dashed rgba(141, 123, 109, 0.45);
  border-radius: 999px;
  padding: 4px 8px;
}

.roi-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-large {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  letter-spacing: 0.01em;
  color: var(--highlight);
}

.price-note {
  color: var(--muted);
}

.roi-text {
  margin-top: 8px;
}

/* =========================
   Benefits
   ========================= */
.benefits {
  padding: 18px 0 40px;
}

.benefits-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.responsible-seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  color: var(--highlight);
  border: 1px dashed rgba(141, 123, 109, 0.45);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit {
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 18px;
  border: 0;
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fbf6f2;
  color: var(--highlight);
  margin-bottom: 10px;
}

.benefit-title {
  font-size: 18px;
  margin-bottom: 6px;
}

.benefit-text {
  color: var(--muted);
}

/* =========================
   Content
   ========================= */
.content {
  padding: 10px 0 56px;
}

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

.content-card {
  background: var(--bg-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  border: 0;
}

.content-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}

.content-list li + li {
  margin-top: 8px;
}

.program-benefits {
  padding: 10px 0 32px;
}

.audience {
  padding: 10px 0 32px;
}

.audience-card {
  background: var(--bg-2);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

.audience-list {
  margin: 8px 0 0;
  padding-left: 18px;
}

.program-benefits-list {
  margin: 0;
  padding-left: 22px; /* manter numeração visível */
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pb-item {
  background: var(--bg-2);
  border: 0;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.pb-title {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--highlight);
  letter-spacing: 0.02em;
}

.pb-text {
  margin: 0;
  color: var(--text);
}

.curriculum {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.curriculum-group {
  background: var(--bg);
  border: 0;
  border-radius: var(--radius);
  padding: 14px 16px;
}

.curriculum-title {
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--highlight);
  letter-spacing: 0.02em;
}

.curriculum-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}

.curriculum-list li + li {
  margin-top: 6px;
}

.curriculum-sublist {
  margin-top: 6px;
  padding-left: 18px;
}

.concept-note {
  margin: 10px 0 14px;
  background: var(--bg);
  border: 1px dashed rgba(141, 123, 109, 0.35);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.01em;
}

/* =========================
   Accordions (Curriculum)
   ========================= */
.accordion {
  display: block;
  background: var(--bg-2);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: clip;
}

.accordion-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  cursor: pointer;
  background: var(--bg);
}

.accordion-summary::-webkit-details-marker {
  display: none;
}
.accordion-summary::marker {
  content: "";
}

.accordion-title {
  font-size: 18px;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.02em;
  color: var(--highlight);
}

.accordion-icon {
  transition: transform 0.2s ease;
  color: var(--muted);
}

.accordion[open] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-panel {
  padding: 10px 16px 14px;
  background: #fff;
}
.content-cta {
  margin-top: 18px;
}

/* =========================
   Footer
   ========================= */
.site-footer {
  padding: 24px 0 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
}

.footer-nav {
  display: flex;
  gap: 12px;
}

/* =========================
   Bonuses
   ========================= */
.bonuses {
  padding: 10px 0 40px;
  background: var(--bg-alt);
}
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.bonus-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.bonus-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fbf6f2;
  color: var(--highlight);
  margin-bottom: 10px;
}
.bonus-title {
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--highlight);
}
.bonus-text {
  color: var(--text);
}

/* =========================
   WhatsApp Floating Button
   ========================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  display: grid;
  place-items: center;
  z-index: 60;
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4), 0 8px 24px rgba(0,0,0,0.18); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 8px 24px rgba(0,0,0,0.18); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 8px 24px rgba(0,0,0,0.18); }
}

/* =========================
   Trust (selo e garantia)
   ========================= */
.trust {
  padding: 10px 0 36px;
  background: var(--bg-alt);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.certificate-seal,
.guarantee-card {
  background: #fff;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.seal-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: radial-gradient(120% 120% at 30% 30%, #f3e6d3, #fff);
  border: 1px solid rgba(176,141,87,0.35);
  color: var(--metal);
  font-weight: 700;
}
.seal-text strong {
  color: var(--highlight);
}
.guarantee-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(180deg, #f0e0c9, #e3cda9);
  color: #5f4a31;
  font-weight: 800;
  border: 1px solid rgba(176,141,87,0.45);
}
.guarantee-text strong {
  color: var(--highlight);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-art {
    order: -1;
    height: 280px;
  }
  .benefits-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonials-grid,
  .gallery-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .guarantees {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .info-columns {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .header-inner {
    height: auto;
    padding: 12px 0;
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav {
    justify-content: space-between;
  }
  .hero {
    padding: 36px 0 20px;
  }
  .hero-title {
    font-size: 32px;
  }
  .section-title {
    font-size: 24px;
  }
  .testimonials-grid,
  .gallery-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .info-columns {
    column-count: 1;
  }
}


