/* ===================== RESET / TOKENS ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose: #e89aa3;        /* cor principal da marca */
  --rose-deep: #d2727f;   /* tom mais intenso p/ contraste */
  --magenta: #c0306b;     /* tom das cápsulas (cor padrão dos botões) */
  --magenta-deep: #8a1e4d; /* tom mais escuro para o hover */
  --ink: #4a3b3e;         /* texto principal (marrom acinzentado quente) */
  --ink-soft: #8a7a7d;    /* texto secundário */
  --cream: #fdf4f0;       /* fundo creme/rosado */
  --cream-2: #fbe9e3;     /* fundo alternativo */
  --white: #ffffff;
  --line: #f0ddd7;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(210,114,127,.18);
  --container: 1120px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.hl { color: var(--rose-deep); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-family: var(--sans); cursor: pointer; border: none;
  border-radius: 999px; padding: 16px 32px; font-size: 16px;
  position: relative; overflow: hidden;
  transition: transform .15s ease, box-shadow .2s ease, background .2s;
}
.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 14px; }
.btn-lg { padding: 19px 36px; font-size: 18px; }
.btn-primary { background: var(--magenta); color: var(--white); box-shadow: 0 12px 26px rgba(192,48,107,.4); }
.btn-primary:hover { transform: translateY(-2px); background: var(--magenta-deep); box-shadow: 0 16px 34px rgba(138,30,77,.5); }

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--rose-deep); color: var(--white);
  font-size: 13px; font-weight: 500; text-align: center; padding: 10px 16px;
}

/* ===================== HEADER ===================== */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--rose-deep); border-bottom: 1px solid rgba(255,255,255,.12); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 30px; width: auto; display: block; }
.logo.light img { height: 32px; opacity: .95; }
/* CTA do header sobre fundo rosa */
.header-cta { background: var(--white); color: var(--rose-deep); box-shadow: 0 8px 20px rgba(0,0,0,.12); }
.header-cta:hover { background: var(--cream); color: var(--magenta); }

/* ===================== HERO ===================== */
.hero { padding: 60px 0 70px; background: linear-gradient(170deg, var(--cream) 0%, var(--cream-2) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.badge {
  display: inline-block; background: var(--white); color: var(--rose-deep);
  border: 1px solid var(--rose); font-weight: 600; font-size: 12px; letter-spacing: .08em;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
}
.badge.dark { background: var(--rose-deep); color: var(--white); border-color: transparent; }
.hero h1 { font-family: var(--serif); font-size: clamp(34px, 5vw, 56px); line-height: 1.05; font-weight: 700; letter-spacing: -.01em; }
.hero-sub { margin: 22px 0 16px; font-size: 18px; color: var(--ink-soft); max-width: 540px; }
.hero-note { font-size: 17px; margin-bottom: 28px; }
.hero-note strong { color: var(--rose-deep); }
.trust-pills { list-style: none; display: flex; flex-wrap: wrap; gap: 16px; margin-top: 22px; font-size: 14px; font-weight: 500; color: var(--ink); }
.hero-media img { width: 100%; border-radius: var(--radius); filter: drop-shadow(0 22px 40px rgba(210,114,127,.25)); }

/* ===================== SECTION TITLES ===================== */
.section-title { text-align: center; font-family: var(--serif); font-size: clamp(28px, 4.2vw, 42px); font-weight: 700; line-height: 1.1; margin-bottom: 26px; }
.kicker { display: block; font-weight: 600; letter-spacing: .18em; font-size: 13px; color: var(--rose-deep); margin-bottom: 12px; }

/* ===================== BLOCO DE DESEJO ===================== */
.desire { padding: 84px 0 48px; }
.desire-intro, .desire-outro { text-align: center; max-width: 700px; margin: 0 auto; font-size: 17px; color: var(--ink-soft); }
.desire-outro { margin-top: 30px; }
.desire-outro strong { color: var(--ink); }
.symptoms { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 34px auto; max-width: 820px; }
.symptoms li {
  display: flex; align-items: center; gap: 9px; background: var(--white);
  border: 1px solid var(--line); border-radius: 999px; padding: 11px 20px;
  font-size: 15px; font-weight: 500; box-shadow: 0 6px 18px rgba(210,114,127,.08);
}

/* ===================== COMPOSIÇÃO ===================== */
.composition { padding: 48px 0 84px; background: var(--cream-2); }
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.comp-media img { width: 100%; max-width: 460px; margin: 0 auto; filter: drop-shadow(0 18px 36px rgba(210,114,127,.22)); }
.comp-copy h2 { font-family: var(--serif); font-size: clamp(26px, 3.6vw, 38px); font-weight: 700; line-height: 1.1; margin-bottom: 22px; }
.comp-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.comp-list li { position: relative; padding-left: 30px; font-size: 16.5px; }
.comp-list li::before { content: "🌸"; position: absolute; left: 0; top: 1px; font-size: 15px; }
.comp-note { margin-top: 22px; font-size: 14px; color: var(--ink-soft); }

/* ===================== BLOCO DA OFERTA ===================== */
.offer { padding: 90px 0; }
.offer-card {
  max-width: 720px; margin: 0 auto; background: var(--white);
  border: 1px solid var(--line); border-radius: 28px; padding: 48px 44px;
  box-shadow: var(--shadow); text-align: center;
}
.offer-head h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); font-weight: 700; margin: 16px 0 18px; line-height: 1.08; }
.offer-head p { color: var(--ink-soft); font-size: 16.5px; max-width: 560px; margin: 0 auto; }
.offer-head p strong { color: var(--ink); }
.includes { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; text-align: left; margin: 32px auto; max-width: 560px; font-size: 15.5px; font-weight: 500; }
.reassurance { font-size: 13px; color: var(--ink-soft); margin-top: 16px; }

/* ===================== FAQ ===================== */
.faq { padding: 84px 0; background: var(--cream-2); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 16px; margin-bottom: 14px; overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--sans); font-weight: 600; font-size: 16.5px; color: var(--ink);
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-ico { font-size: 24px; color: var(--rose-deep); transition: transform .25s; flex: 0 0 auto; }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15px; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--ink); color: var(--white); padding: 54px 0 90px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.disclaimer { font-size: 12.5px; color: rgba(255,255,255,.6); max-width: 620px; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,.85); }
.footer-nav a:hover { color: var(--rose); }
.copyright { font-size: 12.5px; color: rgba(255,255,255,.5); }

/* ===================== STICKY CTA ===================== */
.sticky-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--magenta); color: var(--white); text-align: center;
  font-weight: 600; padding: 16px; box-shadow: 0 -6px 24px rgba(0,0,0,.18);
  transition: background .2s ease;
}
.sticky-cta:hover { background: var(--magenta-deep); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .hero-grid, .comp-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-media { order: -1; max-width: 420px; margin: 0 auto; }
  .comp-media { order: -1; }
}
@media (max-width: 600px) {
  .header-cta { display: none; }
  .sticky-cta { display: block; }
  body { padding-bottom: 64px; }
  .hero { padding: 36px 0 50px; }
  .desire, .composition, .offer, .faq { padding: 56px 0; }
  .offer-card { padding: 34px 22px; }
  .includes { grid-template-columns: 1fr; }
}

/* ============================================================
   EFEITOS & INTERAÇÕES
   ============================================================ */

/* ---- Header que encolhe ao rolar ---- */
.site-header { transition: padding .25s ease, box-shadow .25s ease, background .25s ease; }
.site-header.scrolled { box-shadow: 0 8px 28px rgba(210,114,127,.28); }
.site-header.scrolled .header-inner { padding-top: 8px; padding-bottom: 8px; }
.site-header .logo img { transition: height .25s ease; }
.site-header.scrolled .logo img { height: 26px; }

/* ---- Brilho deslizante nos botões ---- */
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 70%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg); transition: left .6s ease; pointer-events: none;
}
.btn:hover::after { left: 130%; }

/* ---- Pulso suave nos CTAs principais ---- */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 12px 26px rgba(192,48,107,.4); }
  50% { box-shadow: 0 12px 34px rgba(192,48,107,.7); }
}
.btn-lg, .sticky-cta { animation: ctaPulse 2.4s ease-in-out infinite; }

/* ---- Produto flutuando no hero ---- */
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(-1deg); }
}
.hero-media img { animation: floatY 6s ease-in-out infinite; will-change: transform; }

/* ---- Glow/blob decorativo no hero ---- */
.hero { position: relative; overflow: hidden; }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; z-index: 0;
  filter: blur(70px); opacity: .55; pointer-events: none;
}
.hero::before { width: 360px; height: 360px; background: var(--rose); top: -120px; right: -80px; animation: blobFloat 14s ease-in-out infinite; }
.hero::after  { width: 300px; height: 300px; background: #f7c9cf; bottom: -120px; left: -60px; animation: blobFloat 18s ease-in-out infinite reverse; }
.hero .container { position: relative; z-index: 1; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px, 30px) scale(1.08); }
}

/* ---- Reveal no scroll ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.zoom       { transform: scale(.94); }
.reveal.in { opacity: 1; transform: none; }

/* ---- Hover nos cards / pills ---- */
.symptoms li, .trust-pills li { transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .2s ease; }
.symptoms li:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(210,114,127,.2); background: var(--white); }
.trust-pills li:hover { color: var(--rose-deep); transform: translateY(-2px); }

.comp-list li { transition: transform .2s ease, color .2s ease; }
.comp-list li:hover { transform: translateX(6px); color: var(--rose-deep); }

.includes li { transition: transform .2s ease, color .2s ease; }
.includes li:hover { transform: translateX(4px); color: var(--rose-deep); }

.offer-card { transition: transform .3s ease, box-shadow .3s ease; }
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(210,114,127,.28); }

.faq-item { transition: box-shadow .25s ease, border-color .25s ease; }
.faq-item:hover { box-shadow: 0 8px 22px rgba(210,114,127,.12); border-color: var(--rose); }

.comp-media img, .hero-media img { transition: filter .3s ease; }
.comp-media img:hover { filter: drop-shadow(0 22px 44px rgba(210,114,127,.34)); }

/* ---- Badge piscando na faixa superior ---- */
@keyframes softBlink { 0%,100% { opacity: 1; } 50% { opacity: .65; } }
.topbar { animation: softBlink 3s ease-in-out infinite; }

/* ---- Acessibilidade: desliga animações se o usuário preferir ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
