/* Tipografia e reset básico */
* { box-sizing: border-box; }
:root {
  --rose-50: #fff9fb;
  --rose-100: #ffebf2;
  --rose-200: #ffd8e6;
  --rose-500: #ff3d7a;
  --rose-700: #b4164b;
  --ink-900: #121212;
  --ink-700: #1c1c1c;
  --ink-500: #4a4a4a;
  --ink-400: #6b6b6b;
  --white: #ffffff;
}
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  color: var(--ink-700);
  background: var(--rose-50); /* tom suave rosado */
  line-height: 1.6;
}
html { scroll-behavior: smooth; }

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand { font-weight: 700; letter-spacing: 0.2px; }
.cta-header { color: var(--rose-700); text-decoration: none; font-weight: 600; padding: 8px 12px; border-radius: 12px; }
.cta-header:hover { background: #fff; box-shadow: 0 6px 18px rgba(180,22,75,.12); }

/* Hero */
.hero {
  padding: 56px 0 24px;
  background: radial-gradient(1200px 600px at 20% -10%, #ffe2eb 0%, rgba(255,255,255,0) 60%),
              radial-gradient(1000px 600px at 100% 10%, #fbe8f1 0%, rgba(255,255,255,0) 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}
.hero-img { width: 100%; max-width: 420px; display: block; border-radius: 16px; box-shadow: 0 18px 60px rgba(180, 22, 75, 0.25); margin: 0 auto; }
.headline {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.15;
  font-size: clamp(28px, 5vw, 44px);
  margin: 0 0 12px;
}
.sub { color: var(--ink-500); margin: 0 0 16px; }
.social-proof { font-size: 14px; color: #6b6b6b; margin-top: 8px; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .08s ease, box-shadow .25s ease, background .25s ease, color .25s ease, filter .25s ease;
}
.btn:hover { transform: translateY(-1px); filter: saturate(110%); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--rose-500), var(--rose-700));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(180, 22, 75, 0.35), inset 0 0 0 1px rgba(255,255,255,.18);
}
.btn-primary:hover { box-shadow: 0 10px 28px rgba(180, 22, 75, 0.45); }
.btn-link { color: var(--rose-700); }
.btn-lg { padding: 14px 22px; font-size: 18px; }
.btn-secondary { background: #fff; color: var(--rose-700); border: 2px solid #f3b4c8; }

/* Ebook Card */
.ebook-card { position: relative; perspective: 1000px; }
.ebook-cover {
  width: 280px; height: 380px; border-radius: 16px; background:
    linear-gradient(180deg, var(--rose-100), var(--rose-200));
  border: 1px solid #ffd0df;
  box-shadow: 0 18px 70px rgba(180, 22, 75, 0.25);
  transform: rotateY(-10deg) rotateX(3deg);
  transform-origin: center left;
  position: relative;
  padding: 24px;
}
.ebook-shadow { position: absolute; inset: 40px -40px -40px 40px; background: radial-gradient(50% 20% at 50% 90%, rgba(0,0,0,.15), rgba(0,0,0,0)); filter: blur(12px); z-index: -1; }
.badge { position: absolute; top: 16px; right: 16px; background: var(--rose-700); color: #fff; font-size: 12px; padding: 6px 10px; border-radius: 999px; box-shadow: 0 6px 16px rgba(180,22,75,.25); }
.cover-title { font-family: "Playfair Display", serif; font-size: 28px; margin-top: 60px; color: #a01241; }
.cover-sub { color: #7a1840; font-weight: 600; margin-top: 4px; }

/* Intro */
.intro { padding: 28px 0; }
.lead { font-size: 18px; color: #363636; }

/* Benefits */
.benefits { padding: 40px 0; position: relative; }
.benefits:before { content: ""; position: absolute; inset: 0 0 auto 0; height: 120px; background: radial-gradient(600px 120px at 20% 0%, rgba(255,226,236,.6), rgba(255,226,236,0)); pointer-events: none; }
.benefits h2 { font-family: "Playfair Display", serif; font-size: 32px; margin: 0 0 10px; position: relative; }
.benefits h2:after { content: ""; display: block; width: 72px; height: 4px; margin-top: 8px; border-radius: 4px; background: linear-gradient(90deg, var(--rose-500), var(--rose-700)); }
.section-sub { color: #6b6b6b; margin-bottom: 20px; }
.grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 14px; }
.card { background: #fff; border: 1px solid #ffe0ea; border-radius: 14px; padding: 16px; box-shadow: 0 10px 24px rgba(180,22,75,.08); transition: transform .2s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(180,22,75,.18); }
.card .icon { font-size: 22px; }
.card h3 { margin: 6px 0; font-size: 18px; }
.card p { margin: 0; color: #4a4a4a; font-size: 15px; }

/* Offer */
.offer { padding: 40px 0; background: #fff; border-top: 1px solid #ffe1eb; border-bottom: 1px solid #ffe1eb; position: relative; }
.offer:before { content: ""; position: absolute; inset: -40px 0 auto; height: 120px; background: radial-gradient(60% 120px at 50% 0, rgba(255,210,228,.5), rgba(255,210,228,0)); pointer-events: none; }
.offer-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: start; }
.offer h2 { font-family: "Playfair Display", serif; font-size: 32px; margin: 0 0 10px; position: relative; }
.offer h2:after { content:""; display:block; width: 90px; height: 4px; margin-top:8px; border-radius: 4px; background: linear-gradient(90deg, var(--rose-500), var(--rose-700)); }
.price { font-size: 18px; display: flex; align-items: center; gap: 10px; margin: 0 0 8px; }
.price .from { text-decoration: line-through; color: #8a8a8a; }
.price .to { color: #a01241; }
.price .tag { background: #ffecf3; color: #a01241; padding: 2px 8px; border-radius: 999px; font-size: 12px; border: 1px solid #ffd1e1; }
.bonus-list { margin: 10px 0 16px; padding-left: 18px; }
.bonus-list li { margin: 6px 0; }

.countdown-wrap { margin: 14px 0; }
.countdown { display: inline-flex; gap: 10px; background: #1c1c1c; color: #fff; padding: 10px 12px; border-radius: 12px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); position: relative; overflow: hidden; }
.countdown:before { content:""; position:absolute; inset:-40%; background: radial-gradient(closest-side, rgba(255,61,122,.25), transparent); filter: blur(20px); animation: glow 6s linear infinite; }
@keyframes glow { 0%{ transform: translateX(-40%);} 50%{ transform: translateX(40%);} 100%{ transform: translateX(-40%);} }
.time { display: grid; place-items: center; min-width: 54px; }
.time span { font-variant-numeric: tabular-nums; font-size: 22px; font-weight: 800; }
.time small { font-size: 10px; color: #c9c9c9; margin-top: -2px; }
.urgency { font-size: 13px; color: #7a1840; margin-top: 6px; }

.cta-area { display: grid; gap: 8px; margin-top: 6px; }
.guarantee { font-size: 13px; color: #6b6b6b; }

.offer-art .bullets { margin: 0; padding-left: 18px; }
.offer-art .bullets li { margin: 8px 0; }

/* Checkout */
.checkout { padding: 36px 0; }
.steps { margin: 0 0 14px; padding-left: 18px; }

/* Footer */
.footer { padding: 24px 0; background: #fff; border-top: 1px solid #ffe1eb; background-image: radial-gradient(100% 60px at 50% 0, #fff0f6, #ffffff 60%); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.foot-nav a { color: #7a1840; text-decoration: none; margin-left: 12px; }
.foot-nav a:hover { text-decoration: underline; }

/* Responsividade */
@media (max-width: 960px) {
  .hero-grid, .offer-grid { grid-template-columns: 1fr; }
  .ebook-cover { margin: 0 auto; }
  .grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .header .container { padding: 12px 0; }
  .btn-lg { font-size: 16px; padding: 12px 18px; }
}


