:root {
  --lavender: #b8a4d9;
  --lavender-deep: #8f74c2;
  --lavender-soft: #e6ddf3;
  --blush: #e8b8c8;
  --blush-soft: #f6e3ea;
  --sage: #a8c3b0;
  --sage-deep: #6f9a7c;
  --sage-soft: #e1ece4;
  --offwhite: #faf8f6;
  --night: #30354a;
  --night-deep: #1f2335;
  --muted: #6b7085;
  --white: #ffffff;
  --gold: #d8b878;
  --radius: 28px;
  --radius-sm: 16px;
  --shadow: 0 10px 40px rgba(48, 53, 74, 0.08);
  --shadow-lg: 0 30px 80px rgba(48, 53, 74, 0.18);
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body); background: var(--offwhite); color: var(--night);
  line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: var(--night); }
img { max-width: 100%; height: auto; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -0.01em; line-height: 1.1; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 640px; margin: 0 auto; padding: 32px 16px 48px; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lavender-deep); margin-bottom: 14px;
}
.eyebrow.sage { color: var(--sage-deep); }

/* ---------- Nav ---------- */
.nav-bar {
  position: sticky; top: 0; z-index: 20;
  background: rgba(250, 248, 246, 0.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(48, 53, 74, 0.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.nav img { width: 120px; height: auto; display: block; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { text-decoration: none; font-weight: 700; font-size: 15px; color: var(--muted); transition: color 0.15s; }
.nav-links a:hover { color: var(--night); }
.nav-links .btn { font-size: 15px; padding: 10px 20px; min-height: 42px; color: var(--night); }
@media (max-width: 720px) { .nav-links a:not(.btn) { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding: 12px 28px; border-radius: 999px;
  background: var(--night); color: var(--white);
  font: inherit; font-weight: 700; text-decoration: none; border: 0; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(48, 53, 74, 0.22); }
.btn.lavender { background: var(--lavender); color: var(--night); }
.btn.ghost { background: transparent; border: 1.5px solid rgba(48, 53, 74, 0.18); color: var(--night); }
.btn.ghost:hover { box-shadow: none; background: var(--white); }
.btn.large { min-height: 58px; padding: 16px 34px; font-size: 17px; }

/* ---------- Hero ---------- */
.hero-section { position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(700px 520px at 8% 0%, var(--lavender-soft) 0%, transparent 65%),
    radial-gradient(640px 480px at 96% 18%, var(--blush-soft) 0%, transparent 65%),
    radial-gradient(520px 400px at 55% 100%, var(--sage-soft) 0%, transparent 68%);
}
.stars { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.star {
  position: absolute; width: 18px; height: 18px; opacity: 0.85;
  animation: twinkle 6s ease-in-out infinite;
}
.star svg { width: 100%; height: 100%; display: block; }
.star.s1 { top: 14%; left: 6%; }
.star.s2 { top: 26%; left: 44%; width: 12px; height: 12px; animation-delay: 1.5s; }
.star.s3 { top: 70%; left: 10%; width: 14px; height: 14px; animation-delay: 3s; }
.star.s4 { top: 12%; right: 8%; width: 22px; height: 22px; animation-delay: 2s; }
.star.s5 { top: 62%; right: 3%; width: 10px; height: 10px; animation-delay: 4s; }
@keyframes twinkle { 0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; } 50% { transform: scale(1.25) rotate(12deg); opacity: 1; } }

.hero {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
  min-height: calc(100vh - 72px); padding: 56px 0 72px;
}
.hero h1 { font-size: clamp(42px, 6.4vw, 72px); margin: 0 0 22px; font-weight: 500; }
.hero h1 em { font-style: italic; color: var(--lavender-deep); font-weight: 600; }
.hero .lead { font-size: 19.5px; color: var(--muted); margin: 0 0 34px; max-width: 500px; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero .trust { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 30px; padding: 0; list-style: none; color: var(--muted); font-size: 14px; font-weight: 600; }
.hero .trust li { display: flex; align-items: center; gap: 8px; }
.hero .trust li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; text-align: center; min-height: 0; padding: 40px 0 56px; gap: 48px; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero .actions, .hero .trust { justify-content: center; }
}

/* ---------- Phone mockup ---------- */
.phone-stage { position: relative; display: flex; justify-content: center; perspective: 1400px; padding: 24px 56px; }
.phone {
  width: 312px; border-radius: 46px; background: var(--night-deep); padding: 12px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,0.06);
  position: relative; transform: rotateY(-10deg) rotateX(4deg);
  animation: floaty 7s ease-in-out infinite;
}
.phone::before {
  content: ''; position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: var(--night-deep); border-radius: 14px; z-index: 2;
}
@keyframes floaty { 0%, 100% { transform: rotateY(-10deg) rotateX(4deg) translateY(0); } 50% { transform: rotateY(-10deg) rotateX(4deg) translateY(-10px); } }
.screen {
  background: var(--offwhite); border-radius: 36px; padding: 50px 16px 18px; min-height: 600px;
  display: flex; flex-direction: column; gap: 12px;
}
.screen .greeting { font-family: var(--display); font-weight: 600; font-size: 22px; margin: 0; }
.screen .sub { color: var(--muted); font-size: 13px; margin: 0 0 2px; }
.mini-card {
  background: var(--white); border-radius: 20px; padding: 14px; display: flex; flex-direction: column; gap: 8px;
  box-shadow: 0 4px 14px rgba(48, 53, 74, 0.06);
}
.mini-card .label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 800; }
.mini-card .title { font-weight: 700; font-size: 15px; line-height: 1.35; }
.mini-card .hint { font-size: 12px; color: var(--muted); }
.mini-btn { display: block; text-align: center; border-radius: 14px; padding: 10px; font-weight: 700; font-size: 13px; background: var(--lavender); }
.mini-btn.ghost { background: transparent; border: 1px solid var(--lavender); font-weight: 600; }
.moods { display: flex; gap: 6px; flex-wrap: wrap; }
.moods span { font-size: 11px; padding: 6px 10px; border-radius: 999px; background: var(--offwhite); }
.moods span.on { background: var(--sage); }
.tabbar { margin-top: auto; display: flex; justify-content: space-around; padding-top: 10px; border-top: 1px solid var(--lavender-soft); font-size: 11px; color: var(--muted); }
.tabbar b { color: var(--night); }

.chip {
  position: absolute; background: var(--white); border-radius: 18px; padding: 12px 16px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700;
  animation: floaty2 6s ease-in-out infinite;
}
.chip .big { font-size: 22px; line-height: 1; }
.chip small { display: block; font-size: 11px; color: var(--muted); font-weight: 600; }
.chip.c1 { top: 16%; left: 0; animation-delay: 1s; }
.chip.c2 { bottom: 14%; right: 0; animation-delay: 2.5s; }
@keyframes floaty2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 860px) { .phone-stage { padding: 24px 8px; } .phone { transform: none; animation: floatyFlat 7s ease-in-out infinite; } }
@media (max-width: 480px) { .chip, .star.s2, .star.s3 { display: none; } }
@keyframes floatyFlat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------- Sections ---------- */
section { padding: 88px 0; scroll-margin-top: 84px; }
[id] { scroll-margin-top: 84px; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-title { font-size: clamp(32px, 4.6vw, 48px); margin: 0 0 14px; }
.section-lead { color: var(--muted); font-size: 18px; margin: 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 860px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(48, 53, 74, 0.12); }
.card h3 { margin: 4px 0 0; font-size: 21px; }
.card p { margin: 0; color: var(--muted); font-size: 15.5px; }
.icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; font-size: 24px; background: var(--lavender-soft); }
.icon.blush { background: var(--blush-soft); }
.icon.sage { background: var(--sage-soft); }
.step-num { font-size: 12px; font-weight: 800; color: var(--lavender-deep); letter-spacing: 0.14em; }

/* Quotes */
.quote {
  position: relative; background: var(--white); border-radius: var(--radius); padding: 34px 28px 26px; box-shadow: var(--shadow);
  font-family: var(--display); font-size: 21px; font-weight: 500; line-height: 1.4; font-style: italic;
}
.quote::before {
  content: '“'; position: absolute; top: 8px; left: 22px; font-size: 72px; line-height: 1; color: var(--lavender-soft); font-family: var(--display);
}
.quote small { display: block; margin-top: 16px; font-family: var(--body); font-size: 13px; color: var(--muted); font-style: normal; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Antes e depois ---------- */
.ad-section { background: var(--night); color: var(--white); }
.ad-section .section-title, .ad-section h3 { color: var(--white); }
.ad-section .section-lead { color: rgba(255,255,255,0.72); }
.ad { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .ad { grid-template-columns: 1fr; } }
.ad-text h3 { font-size: 30px; margin: 0 0 14px; }
.ad-text p { color: rgba(255,255,255,0.78); font-size: 17px; margin: 0 0 14px; }
.ad-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 28px; }
.ad-card .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ad-card .col { background: rgba(255,255,255,0.05); border-radius: 18px; padding: 18px; }
.ad-card .col .label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 800; }
.ad-card .col p { margin: 8px 0 14px; font-size: 15px; line-height: 1.5; }
.bar { height: 10px; border-radius: 999px; background: rgba(255,255,255,0.12); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 999px; }
.bar.before i { width: 80%; background: var(--blush); }
.bar.after i { width: 30%; background: var(--sage); }
.ad-card .score { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 6px; }
.ad-card .score b { color: var(--white); font-size: 14px; }
.ad-card .delta {
  margin-top: 18px; text-align: center; font-family: var(--display); font-size: 20px; color: var(--gold);
}

/* ---------- Jornada (fases da lua) ---------- */
.moon-path { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; position: relative; }
.moon-path::before {
  content: ''; position: absolute; left: 10%; right: 10%; top: 44px; height: 2px;
  background: linear-gradient(90deg, var(--lavender-soft), var(--lavender), var(--gold)); z-index: 0;
}
.moon { position: relative; z-index: 1; text-align: center; }
.moon .sym {
  width: 88px; height: 88px; margin: 0 auto 14px; border-radius: 50%; background: var(--white);
  display: grid; place-items: center; font-size: 40px; box-shadow: var(--shadow);
}
.moon b { display: block; font-family: var(--display); font-size: 19px; font-weight: 600; }
.moon small { color: var(--muted); font-size: 13px; }
@media (max-width: 720px) {
  .moon-path { grid-template-columns: 1fr; gap: 18px; }
  .moon-path::before { left: 44px; right: auto; top: 6%; bottom: 6%; width: 2px; height: auto; background: linear-gradient(180deg, var(--lavender-soft), var(--lavender), var(--gold)); }
  .moon { display: grid; grid-template-columns: 88px 1fr; column-gap: 18px; align-items: center; text-align: left; }
  .moon .sym { margin: 0; grid-row: 1 / 3; }
  .moon b { grid-column: 2; align-self: end; }
  .moon small { grid-column: 2; align-self: start; }
}
.journey-note { text-align: center; color: var(--muted); max-width: 620px; margin: 36px auto 0; font-size: 16px; }

/* ---------- Calma / CVV ---------- */
.notice {
  background: var(--white); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px; align-items: center; position: relative; overflow: hidden;
}
.notice::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 10px; background: linear-gradient(180deg, var(--sage), var(--lavender)); }
.notice h2 { margin: 0 0 14px; font-size: 32px; }
.notice p { margin: 0 0 12px; color: var(--muted); font-size: 16.5px; }
.cvv { background: var(--sage-soft); border-radius: 22px; padding: 28px; text-align: center; }
.cvv .num { font-family: var(--display); font-size: 56px; font-weight: 600; line-height: 1; margin: 6px 0; color: var(--night); }
.cvv p { margin: 0; font-size: 14px; color: var(--night); }
@media (max-width: 860px) { .notice { grid-template-columns: 1fr; padding: 32px 28px; } }

/* ---------- Privacidade ---------- */
.privacy { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 760px) { .privacy { grid-template-columns: 1fr; } }
.privacy .item { background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); display: flex; gap: 16px; align-items: flex-start; }
.privacy .item .icon { flex: none; width: 44px; height: 44px; font-size: 20px; border-radius: 14px; }
.privacy .item p { margin: 0; font-size: 15.5px; color: var(--muted); }
.privacy .item b { display: block; margin-bottom: 4px; color: var(--night); font-size: 16px; }
.center-link { text-align: center; margin-top: 30px; }
.center-link a { font-weight: 700; }

/* ---------- FAQ ---------- */
details { background: var(--white); border-radius: 18px; padding: 20px 24px; box-shadow: var(--shadow); margin-bottom: 12px; }
summary { cursor: pointer; font-weight: 700; font-size: 17px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 24px; color: var(--lavender-deep); font-weight: 400; flex: none; }
details[open] summary::after { content: '−'; }
details p { margin: 12px 0 0; color: var(--muted); }

/* ---------- CTA final ---------- */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--lavender-soft) 0%, var(--blush-soft) 55%, var(--sage-soft) 100%);
  border-radius: 36px; padding: 72px 32px; text-align: center;
}
.cta h2 { font-size: clamp(32px, 4.6vw, 48px); margin: 0 0 14px; }
.cta p { color: var(--muted); margin: 0 auto 30px; max-width: 560px; font-size: 18px; }
.stores { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.store { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 12px; background: rgba(255,255,255,0.7); color: var(--muted); font-size: 13px; font-weight: 700; }

/* ---------- Footer ---------- */
footer { padding: 48px 0 56px; text-align: center; color: var(--muted); font-size: 14px; }
footer nav { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
footer nav a { color: var(--muted); text-decoration: none; font-weight: 700; }
footer nav a:hover { color: var(--night); }
footer .brand { width: 100px; margin-bottom: 10px; opacity: 0.9; }

/* ---------- Páginas internas ---------- */
header.top { display: flex; justify-content: center; padding-bottom: 24px; }
header.top img { width: 220px; height: auto; }
.card.doc { padding: 32px; }
.card.doc:hover { transform: none; box-shadow: var(--shadow); }
.card.doc h1 { font-size: 30px; margin: 0 0 12px; }
.card.doc h2 { font-size: 21px; margin: 32px 0 8px; }
.card.doc p, .card.doc li { font-size: 16px; color: var(--night); }
.muted { color: var(--muted); font-size: 14px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hidden { display: none; }
.token { word-break: break-all; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; background: var(--offwhite); padding: 12px; border-radius: 12px; }
.disclaimer { border-left: 4px solid var(--sage); padding: 12px 16px; background: var(--offwhite); border-radius: 0 12px 12px 0; margin-top: 24px; }
.card.doc .btn { color: var(--white); }
.card.doc .btn.ghost { color: var(--night); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card { transition: none; }
  .phone, .chip, .star { animation: none; }
}

/* ---------- Mockup v2 (igual ao app) ---------- */
.screen-top { display: flex; justify-content: space-between; align-items: flex-start; }
.eyebrow-mini { font-size: 9px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lavender-deep); }
.avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--white); border: 1px solid rgba(48,53,74,0.1); display: grid; place-items: center; font-size: 9px; color: var(--night); }
.mini-card.hero-mini { background: linear-gradient(135deg, var(--lavender-soft), var(--blush-soft) 60%, var(--white)); }
.mini-card .title.serif { font-family: var(--display); font-size: 16px; font-weight: 600; line-height: 1.25; }
.mini-btn.dark { background: var(--night); color: var(--white); border-radius: 999px; }
.mini-btn.lav { background: var(--lavender); color: var(--night); border-radius: 999px; margin-top: auto; }
.mini-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.mini-chips span { font-size: 10.5px; font-weight: 700; padding: 6px 10px; border-radius: 999px; border: 1px solid rgba(48,53,74,0.14); }
.moons { display: flex; justify-content: space-between; gap: 4px; }
.moons span { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 18px; }
.moons span small { font-size: 9px; color: var(--muted); font-weight: 600; }
.moons span.on { position: relative; }
.moons span.on::before { content: ''; position: absolute; top: -6px; width: 34px; height: 34px; border-radius: 50%; background: var(--lavender-soft); z-index: -1; }
.mini-row { display: flex; gap: 8px; }
.mini-card.small { flex: 1; gap: 6px; }
.mini-card.small.sage { background: var(--sage-soft); box-shadow: none; }
.mini-card .ico { font-size: 16px; color: var(--lavender-deep); }
.mini-card.sage .ico { color: var(--sage-deep); }
.title-sm { font-weight: 700; font-size: 12.5px; line-height: 1.3; }
.tabbar { font-size: 9px; line-height: 1.3; text-align: center; }
.tabbar b { color: var(--lavender-deep); }

/* Mockup escuro do modo calma */
.calm-notice { grid-template-columns: 1.15fr 0.85fr; }
.calm-steps { padding-left: 20px; margin: 0 0 14px; color: var(--muted); }
.calm-steps li { margin-bottom: 8px; }
.calm-steps strong { color: var(--night); }
.cvv.inline { margin-top: 18px; display: flex; align-items: center; gap: 16px; text-align: left; padding: 16px 20px; }
.cvv.inline .num { font-size: 36px; margin: 0; }
.phone-stage.small { padding: 12px; }
.phone.dark { transform: none; animation: none; background: #0f1220; }
.phone.dark::before { background: #0f1220; }
.screen.dark { background: linear-gradient(160deg, #1f2335, #3a3457 55%, #30354a); min-height: 520px; gap: 14px; }
.greeting.light { color: var(--white); }
.sub.light { color: rgba(255,255,255,0.75); }
.sub.center { text-align: center; }
.rings { position: relative; height: 220px; display: grid; place-items: center; }
.ring { position: absolute; border-radius: 50%; }
.ring.r1 { width: 200px; height: 200px; background: rgba(184,164,217,0.18); animation: breathe 11s ease-in-out infinite; }
.ring.r2 { width: 160px; height: 160px; background: rgba(184,164,217,0.32); animation: breathe 11s ease-in-out infinite; animation-delay: 0.1s; }
.ring.r3 { width: 120px; height: 120px; background: rgba(232,184,200,0.55); animation: breathe 11s ease-in-out infinite; animation-delay: 0.2s; }
.ring-label { position: relative; color: var(--white); font-family: var(--display); font-size: 24px; text-align: center; }
.ring-label small { display: block; font-family: var(--body); font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 600; }
@keyframes breathe { 0% { transform: scale(0.8); } 36% { transform: scale(1.05); } 45% { transform: scale(1.05); } 100% { transform: scale(0.8); } }
@media (max-width: 860px) { .calm-notice { grid-template-columns: 1fr; } .cvv.inline { flex-direction: column; text-align: center; } }
@media (prefers-reduced-motion: reduce) { .ring { animation: none; } }

.actions.center { justify-content: center; margin-top: 8px; }
.small-note { max-width: 560px; margin: 16px auto 0; }
