@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --rosa: #f4a8c4;
  --rosa-forte: #c94f7c;
  --rosa-claro: #fff0f5;
  --azul: #a9dff1;
  --azul-forte: #397f99;
  --azul-claro: #edfaff;
  --texto: #403945;
  --texto-suave: #746c78;
  --fundo: #fffafc;
  --branco: #ffffff;
  --sombra: 0 14px 40px rgba(127, 79, 102, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'DM Sans', Arial, sans-serif;
  color: var(--texto);
  background:
    radial-gradient(circle at 10% 0%, rgba(244,168,196,.22), transparent 26rem),
    radial-gradient(circle at 92% 12%, rgba(169,223,241,.30), transparent 28rem),
    var(--fundo);
  line-height: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  gap: 1.2rem;
  align-items: center;
  padding: .75rem max(1.25rem, calc((100vw - 1180px) / 2));
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(201,79,124,.14);
  box-shadow: 0 4px 24px rgba(111,77,95,.08);
  backdrop-filter: blur(14px);
}

.site-header .logo {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--rosa-forte);
  text-decoration: none;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.1;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 16px rgba(201,79,124,.18);
  border: 2px solid #fff;
}

.site-header nav { display: flex; align-items: center; gap: .35rem; }

.site-header nav a {
  color: var(--texto);
  text-decoration: none;
  padding: .55rem .8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .94rem;
  transition: .2s ease;
}

.site-header nav a:hover {
  color: var(--rosa-forte);
  background: var(--rosa-claro);
  transform: translateY(-1px);
}

.online-counter { display: none; }
.online-counter img { vertical-align: middle; border-radius: 5px; }

main {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

main > h1, main > p, main > .product-cta, main > .hero-subtitulo, main > .hero-ctas { max-width: 820px; margin-left: auto; margin-right: auto; }

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

h1 {
  color: var(--rosa-forte);
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin: 1.7rem auto .75rem;
  letter-spacing: -.025em;
}

h2 { color: var(--azul-forte); margin-top: 2rem; }
a { color: var(--rosa-forte); }

.hero-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(320px, 42vw, 560px);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin: 0 auto;
  justify-self: center;
  border-radius: 30px;
  box-shadow: var(--sombra);
  border: 6px solid rgba(255,255,255,.9);
}

body:has(main > .card) main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

body:has(main > .card) .hero-img,
body:has(main > .card) main > h1,
body:has(main > .card) main > p,
body:has(main > .card) main > .product-cta,
body:has(main > .card) main > .hero-subtitulo,
body:has(main > .card) main > .hero-ctas,
body:has(main > .card) main > .sales-block { grid-column: 1 / -1; }

.sales-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--rosa-claro) 0%, #fff 55%, var(--azul-claro) 100%);
  border: 1px solid #f1d9e4;
  border-radius: 24px;
  padding: 2.2rem;
  margin: .5rem 0;
}
.sales-block h2 { font-size: 1.7rem; margin: .5rem 0 .8rem; }
.sales-block .sales-block-kicker {
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--rosa-forte); font-size: .82rem;
}
.sales-block ul {
  list-style: none; margin: 1rem 0 1.3rem; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .9rem;
}
.sales-block ul li { font-weight: 600; font-size: .95rem; }
.sales-block .sales-block-price {
  font-weight: 700; font-size: 1.15rem; margin: 0 0 1rem;
}
.sales-block img {
  width: 100%;
  max-width: 260px;
  justify-self: center;
  border-radius: 12px;
}
@media (max-width: 720px) {
  .sales-block { grid-template-columns: 1fr; text-align: center; padding: 1.6rem; }
  .sales-block img { max-width: 200px; }
  .sales-block ul { grid-template-columns: 1fr; text-align: left; max-width: 320px; margin-left: auto; margin-right: auto; }
}

body:has(main > .card) main > p,
body:has(main > .card) main > .hero-subtitulo {
  text-align: center;
  color: var(--texto-suave);
  font-size: 1.12rem;
  margin-top: -.25rem;
}

body:has(main > .card) main > h1 { text-align: center; }

.card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(201,79,124,.10);
  border-radius: 22px;
  padding: 0 1.25rem 1.25rem;
  margin: 0;
  box-shadow: 0 9px 28px rgba(110,81,96,.09);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover { transform: translateY(-6px); box-shadow: var(--sombra); }
.card h2 { margin: 1rem 0 .45rem; font-size: 1.35rem; }
.card h2 a { color: var(--texto); text-decoration: none; }
.card h2 a:hover { color: var(--rosa-forte); }
.card p { color: var(--texto-suave); margin: 0; font-size: .96rem; }

.card-img {
  display: block;
  width: calc(100% + 2.5rem);
  margin: 0 -1.25rem;
  height: 210px;
  object-fit: cover;
}

.article-img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 24px;
  margin: .75rem 0 2rem;
  box-shadow: var(--sombra);
}

/* kit-mae-organizada-capa.png é um quadrado com texto/rosto colados na borda
   superior — o crop landscape de .article-img corta "CURSO" e a cabeça.
   Mostra a imagem inteira em vez de cropar. */
img.article-img[src*="kit-mae-organizada-capa"] {
  max-height: none;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

img.hero-img[src*="kit-mae-organizada-capa"] {
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
}

/* Título mantido no HTML pra SEO/acessibilidade, mas escondido visualmente
   quando a imagem logo abaixo já mostra o mesmo texto (ex: capa do curso). */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.article-meta,
.article-sources {
  margin: 1rem 0 1.6rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--azul);
  border-radius: 12px;
  background: var(--azul-claro);
}

.article-meta p { margin: .25rem 0; }
.article-sources h2 { margin-top: 0; }

body:not(:has(main > .card)) main {
  max-width: 840px;
  background: rgba(255,255,255,.76);
  margin-top: 2.5rem;
  padding: clamp(1.3rem, 4vw, 3.5rem);
  border-radius: 28px;
  box-shadow: var(--sombra);
}

.ad-slot {
  min-height: 90px;
  margin: 1.5rem 0;
  border: 1px dashed #ddcbd3;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a8c94;
  font-size: .85rem;
  background: #fff;
}

.site-footer {
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: .88rem;
  color: var(--texto-suave);
  background: linear-gradient(135deg, var(--rosa-claro), var(--azul-claro));
  border-top: 1px solid rgba(201,79,124,.12);
}

.site-footer a { color: var(--texto-suave); }
.product-tagline { font-size: 1.18rem; color: var(--azul-forte); }
.product-pain { font-size: 1.05rem; color: var(--texto-suave); }
.product-opening {
  max-width: 860px;
  margin: 0 auto 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  background: linear-gradient(145deg, #fff7fb, #f7fbff);
  border: 1px solid rgba(201, 79, 124, .22);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(98, 67, 87, .09);
}
.product-opening h2 { margin: .55rem auto .8rem; max-width: 720px; }
.product-opening > p { max-width: 700px; margin: 0 auto; color: var(--texto-suave); }
.product-opening .product-cta { margin-bottom: 0; }
.product-cta { text-align: center; margin-top: 1.5rem; margin-bottom: 2.2rem; }

.btn-comprar {
  display: inline-block;
  background: linear-gradient(135deg, var(--rosa-forte), #e6789f);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(201,79,124,.28);
  transition: .2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-comprar:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201,79,124,.36); }
.product-cta-nota { font-size: .86rem; color: var(--texto-suave); margin-top: .7rem; }

.sticky-buy-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .7rem 1rem;
  padding-bottom: calc(.7rem + env(safe-area-inset-bottom));
  background: var(--branco);
  box-shadow: 0 -6px 20px rgba(0,0,0,.1);
}
.sticky-buy-bar-price { font-size: .86rem; color: var(--texto-suave); }
.sticky-buy-bar-price strong { color: var(--rosa-forte); font-size: 1rem; }
.sticky-buy-bar .btn-comprar { padding: .7rem 1.2rem; font-size: .92rem; white-space: nowrap; }

@media (max-width: 720px) {
  .sticky-buy-bar { display: flex; }
  body:has(.sticky-buy-bar) { padding-bottom: 4.2rem; }
}

.product-beneficios {
  list-style: none;
  margin: 1.5rem 0;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(135deg, var(--rosa-claro), var(--azul-claro));
  border-radius: 20px;
}

.product-beneficios li { padding: .45rem 0; font-weight: 600; }

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

.product-receive {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.6rem;
  align-items: center;
  margin: 1rem 0 1.8rem;
}
.product-receive-mockup { width: 100%; border-radius: 12px; }
.product-receive .product-beneficios { margin: 0; }
@media (max-width: 620px) {
  .product-receive { grid-template-columns: 1fr; text-align: center; }
  .product-receive-mockup { max-width: 200px; margin: 0 auto; }
}

.product-gallery img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 7px 20px rgba(83,66,74,.12);
  border: 3px solid #fff;
}

/* Hero: segunda linha de CTA (guias gratuitos) + isca de e-mail — mantidos
   do redesenho de hoje, com as mesmas cores/variaveis do design real. */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.install-help {
  position: fixed;
  right: 1rem;
  bottom: 5.5rem;
  z-index: 31;
  max-width: min(360px, calc(100vw - 2rem));
  padding: .8rem 1rem;
  border-radius: 14px;
  background: var(--branco);
  box-shadow: var(--sombra);
  color: var(--azul-forte);
  font-weight: 600;
  margin: 0;
}

#install-app {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  max-width: calc(100vw - 2rem);
}

.btn-secundario {
  display: inline-block;
  background: #fff;
  color: var(--rosa-forte);
  text-decoration: none;
  font-weight: 700;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  border: 2px solid var(--rosa);
}

.btn-secundario:hover { background: var(--rosa-claro); }

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 420px;
  margin: 1.5rem auto;
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--sombra);
}

.lead-form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--texto);
  text-align: left;
}

.lead-form input[type="text"],
.lead-form input[type="email"] {
  padding: 0.7rem 0.9rem;
  border: 1px solid #e5d5dc;
  border-radius: 10px;
  font-size: 1rem;
  margin-bottom: 0.6rem;
  font-family: inherit;
}

.lead-form-honeypot { position: absolute; left: -9999px; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .online-counter { display: none; }
  .site-header nav { grid-column: 1 / -1; justify-content: center; }
  body:has(main > .card) main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .site-header { padding: .65rem .8rem; }
  .site-header .logo { font-size: .98rem; }
  .brand-logo { width: 46px; height: 46px; }
  .site-header nav { gap: .1rem; overflow-x: auto; justify-content: flex-start; }
  .site-header nav a { padding: .45rem .62rem; white-space: nowrap; font-size: .86rem; }
  main { width: min(100% - 1rem, 1160px); padding-top: 1rem; }
  body:has(main > .card) main { grid-template-columns: 1fr; gap: 1rem; }
  .hero-img { border-radius: 20px; height: 280px; }
  h1 { font-size: 2.2rem; }
  .card-img { height: 220px; }
  body:not(:has(main > .card)) main { margin-top: 1rem; border-radius: 20px; }
  .product-gallery { grid-template-columns: 1fr; }
}

.whatsapp-float {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 40;
  width: 3.4rem;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 8px 26px rgba(37,211,102,.4);
  font-size: 1.6rem;
  text-decoration: none;
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.06); }

.btn-whatsapp {
  display: inline-block;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  border: none;
  margin-left: .6rem;
}
.btn-whatsapp:hover { background: #1ebc59; }

@media (max-width: 720px) {
  .whatsapp-float { left: .6rem; bottom: .6rem; width: 3rem; height: 3rem; font-size: 1.4rem; }
  .btn-whatsapp { margin-left: 0; margin-top: .6rem; }
}

/* Não flutua mais por cima do conteúdo (evita disputar espaço com o botão
   flutuante do WhatsApp) — vira um bloco centralizado antes do rodapé. */
.sales-agent { position: relative; z-index: 40; font-family: inherit; text-align: center; margin: 2.5rem auto; max-width: 820px; }
.sales-agent-toggle {
  border: 0; border-radius: 999px; padding: .85rem 1.1rem; cursor: pointer;
  color: #fff; background: var(--rosa-forte); box-shadow: 0 8px 26px rgba(83,66,74,.25);
  font: inherit; font-weight: 700;
}
.sales-agent-panel {
  position: absolute; left: 50%; top: 3.8rem; transform: translateX(-50%);
  width: min(380px, calc(100vw - 2rem)); text-align: left;
  overflow: hidden; border: 1px solid #f1dce5; border-radius: 22px;
  background: #fff; box-shadow: 0 18px 50px rgba(83,66,74,.25);
}
.sales-agent-panel[hidden] { display: none; }
.sales-agent-panel header {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.1rem; color: #fff; background: linear-gradient(135deg, var(--rosa-forte), var(--azul-forte));
}
.sales-agent-panel header div { display: grid; }
.sales-agent-panel header small { margin-top: .15rem; opacity: .9; }
.sales-agent-close { border: 0; background: transparent; color: #fff; cursor: pointer; font-size: 1.8rem; }
.sales-agent-messages { padding: 1rem 1rem .3rem; }
.sales-agent-bubble { margin: 0; padding: .9rem 1rem; border-radius: 16px 16px 16px 4px; background: var(--rosa-claro); line-height: 1.5; }
.sales-agent-options { display: grid; gap: .55rem; padding: .7rem 1rem; }
.sales-agent-options button {
  width: 100%; border: 1px solid var(--rosa); border-radius: 13px; padding: .72rem .8rem;
  cursor: pointer; color: var(--texto); background: #fff; font: inherit; font-weight: 650; text-align: left;
}
.sales-agent-options button:hover, .sales-agent-options button:focus-visible { background: var(--rosa-claro); }
.sales-agent-disclosure { margin: 0; padding: .35rem 1rem 1rem; color: var(--texto-suave); font-size: .75rem; line-height: 1.35; }

@media (max-width: 620px) {
  .sales-agent-panel { width: calc(100vw - 1rem); max-height: calc(100vh - 8rem); overflow-y: auto; }
}

/* Página "Ofertas para Mamães" — essas classes nunca tinham CSS (bug antigo,
   imagens renderizavam no tamanho natural, sem grid). */
.offers-hero { text-align: center; max-width: 700px; margin: 0 auto 2.5rem; }
.offers-kicker {
  display: inline-block; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--rosa-forte); font-size: .82rem;
  margin-bottom: .5rem;
}
.offers-hero h2 { font-size: 2rem; margin: 0 0 .8rem; }
.offers-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin: 1.2rem 0 .8rem; }
.offers-hero small { color: var(--texto-suave); }

.offer-feature {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; align-items: center;
  background: var(--rosa-claro); border-radius: 24px; padding: 2.2rem; margin: 0 0 2rem;
}
.offer-feature img { width: 100%; max-width: 280px; justify-self: center; border-radius: 14px; }
.offer-badge {
  display: inline-block; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  font-size: .78rem; color: var(--azul-forte); background: var(--azul-claro);
  padding: .35rem .8rem; border-radius: 999px; margin-bottom: .6rem;
}
.offer-feature h2 { font-size: 1.5rem; margin: 0 0 .6rem; }
.offer-checks { list-style: none; margin: 1rem 0; padding: 0; }
.offer-checks li { padding: .35rem 0 .35rem 1.6rem; position: relative; font-weight: 600; }
.offer-checks li::before { content: '✓'; position: absolute; left: 0; color: var(--rosa-forte); }
.offer-price { margin: 1rem 0 1.2rem; }
.offer-price span { display: block; color: var(--texto-suave); font-size: .9rem; }
.offer-price strong { font-size: 1.5rem; color: var(--rosa-forte); }
.btn-destaque { font-size: 1.05rem; padding: 1.1rem 1.6rem; }

.amazon-offers { text-align: center; margin: 0 0 2rem; }
.offers-intro { max-width: 600px; margin: .5rem auto 1.5rem; color: var(--texto-suave); }
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; text-align: left; }
.offer-grid article {
  border: 1px solid #f1dce5; border-radius: 18px; padding: 1.3rem;
  background: #fff; box-shadow: var(--sombra);
}
.offer-grid span { font-weight: 700; color: var(--rosa); font-size: 1.3rem; }
.offer-grid h3 { margin: .4rem 0 .3rem; font-size: 1.05rem; }
.offer-grid p { color: var(--texto-suave); font-size: .9rem; margin: 0 0 .8rem; }
.offer-grid a { color: var(--rosa-forte); font-weight: 700; text-decoration: none; }
.offer-grid a:hover { text-decoration: underline; }

.affiliate-notice {
  background: var(--azul-claro); border-radius: 16px; padding: 1rem 1.3rem;
  font-size: .88rem; color: var(--texto-suave); margin: 0 0 2rem;
}

.final-offer { text-align: center; padding: 2rem 0; }
.final-offer span { display: block; color: var(--texto-suave); font-weight: 600; }
.final-offer h2 { font-size: 1.7rem; margin: .4rem 0 1.2rem; }

@media (max-width: 720px) {
  .offer-feature { grid-template-columns: 1fr; text-align: center; padding: 1.6rem; }
  .offer-feature img { max-width: 220px; }
  .offer-checks { text-align: left; max-width: 320px; margin-left: auto; margin-right: auto; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offers-actions { flex-direction: column; align-items: stretch; }
}
