/* =========================================================
   Hora do Sim · Confirmar — Landing Page
   Estética: papelaria fina de casamento — clean, editorial, dourado discreto
   ========================================================= */

:root {
  /* Cores */
  --ivory:        #FBF7F1;
  --ivory-2:      #F6EFE5;
  --paper:        #FFFFFF;
  --sand:         #F1E8DC;
  --blush:        #E7C6BE;
  --blush-soft:   #F4DED8;
  --blush-deep:   #C28477;
  --gold:         #B8965A;
  --gold-soft:    #DAC59B;
  --sage:         #9FAE92;
  --ink:          #2E2723;
  --ink-soft:     #5C5048;
  --mocha:        #877668;
  --line:         rgba(46, 39, 35, 0.12);
  --line-soft:    rgba(46, 39, 35, 0.07);

  /* Tipografia */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Jost", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Forma & sombra */
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(46, 39, 35, 0.05);
  --shadow:    0 18px 50px -28px rgba(46, 39, 35, 0.32);
  --shadow-lg: 0 40px 90px -40px rgba(46, 39, 35, 0.40);

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }

/* ---------- Tipografia utilitária ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  margin-bottom: 22px;
}
.eyebrow.center { justify-content: center; width: 100%; }
.eyebrow-line { display: inline-block; width: 34px; height: 1px; background: var(--gold-soft); }

.section-head { max-width: 720px; margin: 0 auto clamp(46px, 6vw, 74px); text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--blush-deep); }
.section-lead {
  margin-top: 20px;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
  font-weight: 300;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px;
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.02em;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--ink) 0%, #463b33 100%);
  color: var(--ivory);
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-3px); }

.btn-ghost { background: var(--blush-soft); color: var(--blush-deep); }
.btn-ghost:hover { background: var(--blush); color: #fff; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(251, 247, 241, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { color: var(--gold); display: inline-flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-size: 1.18rem; font-weight: 500; letter-spacing: 0.01em; }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav > a:not(.btn) { font-size: 0.9rem; color: var(--ink-soft); position: relative; transition: color .3s; }
.nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav > a:not(.btn):hover { color: var(--ink); }
.nav > a:not(.btn):hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero { position: relative; padding: clamp(54px, 8vw, 96px) 0 clamp(72px, 10vw, 128px); overflow: hidden; }
.hero-glow {
  position: absolute; top: -10%; right: -8%; width: 720px; height: 720px; z-index: 0;
  background: radial-gradient(circle at center, rgba(231, 198, 190, 0.55) 0%, rgba(231, 198, 190, 0) 62%);
  filter: blur(8px);
}
.hero::before {
  content: ""; position: absolute; bottom: -6%; left: -10%; width: 560px; height: 560px; z-index: 0;
  background: radial-gradient(circle at center, rgba(218, 197, 155, 0.40) 0%, rgba(218, 197, 155, 0) 60%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 72px); align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.6vw, 4.05rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.hero-title em { font-style: italic; color: var(--blush-deep); }
.hero-sub {
  margin-top: 26px; max-width: 520px;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  color: var(--ink-soft); font-weight: 300;
}
.hero-cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-points { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 22px; }
.hero-points li { display: inline-flex; align-items: center; gap: 9px; font-size: 0.9rem; color: var(--mocha); }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }

/* Phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 480px; }
.arch {
  position: absolute; width: 300px; height: 430px; z-index: 0;
  background: linear-gradient(160deg, var(--sand) 0%, var(--blush-soft) 100%);
  border-radius: 150px 150px 26px 26px;
  box-shadow: inset 0 0 0 1px rgba(184, 150, 90, 0.25);
}
.arch::after {
  content: ""; position: absolute; inset: 14px; border-radius: 140px 140px 18px 18px;
  border: 1px solid rgba(184, 150, 90, 0.3);
}

.phone {
  position: relative; z-index: 2;
  width: 270px; height: 552px;
  background: #fff;
  border-radius: 42px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(46,39,35,0.06);
  border: 1px solid rgba(46,39,35,0.04);
}
.phone-notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 92px; height: 6px; background: var(--ink); opacity: 0.12; border-radius: 5px; }
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%);
  border-radius: 32px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.invite { text-align: center; padding: 30px 22px; width: 100%; }
.invite-kicker { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.invite-monogram { font-family: var(--font-display); font-size: 1.3rem; color: var(--blush-deep); margin-top: 18px; letter-spacing: 0.1em; }
.invite-monogram span { color: var(--gold); }
.invite-names { font-family: var(--font-display); font-weight: 400; font-size: 1.85rem; line-height: 1.05; margin-top: 6px; color: var(--ink); }
.invite-date { font-size: 0.66rem; color: var(--mocha); margin-top: 10px; letter-spacing: 0.02em; }
.invite-divider { display: block; width: 40px; height: 1px; background: var(--gold-soft); margin: 18px auto; }
.invite-ask { font-family: var(--font-display); font-style: italic; font-size: 0.94rem; color: var(--ink-soft); }
.invite-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.chip { font-size: 0.72rem; padding: 9px; border-radius: 100px; letter-spacing: 0.02em; }
.chip-yes { background: var(--ink); color: var(--ivory); }
.chip-no { background: transparent; color: var(--mocha); border: 1px solid var(--line); }
.invite-field { margin-top: 16px; text-align: left; }
.invite-field label { font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mocha); }
.invite-fake-input { margin-top: 6px; font-size: 0.72rem; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 9px 12px; }
.invite-confirm { display: block; margin-top: 16px; background: var(--blush-deep); color: #fff; font-size: 0.74rem; padding: 11px; border-radius: 100px; letter-spacing: 0.04em; }

/* Floating cards */
.floating-card {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-soft);
  border-radius: 16px; padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  animation: float 5.5s ease-in-out infinite;
}
.floating-card--a { top: 8%; right: -2%; align-items: center; }
.floating-card--a .fc-num { font-family: var(--font-display); font-size: 1.5rem; color: var(--blush-deep); }
.floating-card--b { bottom: 9%; left: -4%; flex-direction: row; align-items: center; gap: 9px; animation-delay: -2.6s; }
.fc-check { width: 22px; height: 22px; border-radius: 50%; background: var(--sage); color: #fff; display: grid; place-items: center; font-size: 0.7rem; }
.fc-label { font-size: 0.66rem; color: var(--mocha); letter-spacing: 0.04em; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===================== PROBLEMA ===================== */
.problema { background: var(--paper); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain {
  background: var(--ivory); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.pain:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--blush); }
.pain-ico { font-size: 1.5rem; display: block; }
.pain h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; margin: 16px 0 8px; color: var(--ink); }
.pain p { font-size: 0.94rem; color: var(--ink-soft); font-weight: 300; }

/* ===================== COMO FUNCIONA ===================== */
.como { background: linear-gradient(180deg, var(--ivory) 0%, var(--sand) 100%); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 36px 26px; background: var(--paper); border-radius: var(--radius); border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); }
.step-num { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-soft); font-style: italic; display: block; line-height: 1; }
.step h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.18rem; margin: 14px 0 9px; color: var(--ink); }
.step p { font-size: 0.92rem; color: var(--ink-soft); font-weight: 300; }
.step em { font-style: italic; color: var(--blush-deep); }

/* ===================== SPLIT (noivas / conviteiras) ===================== */
.split--noivas { background: var(--paper); }
.split--conviteiras { background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.split-grid--reverse .split-copy { order: 2; }
.split-grid--reverse .split-visual { order: 1; }
.check-list { margin: 30px 0 36px; display: grid; gap: 15px; }
.check-list li { position: relative; padding-left: 34px; font-size: 1.02rem; color: var(--ink-soft); font-weight: 300; }
.check-list li strong { font-weight: 500; color: var(--ink); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 5px;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--blush-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C28477' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* Painel card (noivas) */
.panel-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow); }
.panel-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.panel-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); }
.panel-badge { font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold-soft); padding: 4px 11px; border-radius: 100px; }
.panel-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; }
.stat { background: var(--ivory); border-radius: var(--radius-sm); padding: 16px 12px; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 1.9rem; color: var(--blush-deep); display: block; line-height: 1; }
.stat-label { font-size: 0.68rem; letter-spacing: 0.06em; color: var(--mocha); text-transform: uppercase; margin-top: 6px; display: block; }
.panel-rows { display: grid; gap: 10px; }
.panel-row { display: flex; align-items: center; gap: 12px; padding: 11px 14px; background: var(--ivory); border-radius: var(--radius-sm); }
.avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--blush); color: #fff; display: grid; place-items: center; font-size: 0.82rem; font-weight: 500; flex: none; }
.pr-name { flex: 1; font-size: 0.9rem; color: var(--ink); }
.pr-name small { display: block; font-size: 0.72rem; color: var(--mocha); }
.tag { font-size: 0.66rem; padding: 4px 10px; border-radius: 100px; letter-spacing: 0.03em; white-space: nowrap; }
.tag-yes { background: rgba(159,174,146,0.22); color: #5e7050; }
.tag-wait { background: rgba(218,197,155,0.32); color: #8a7233; }
.tag-no { background: rgba(194,132,119,0.18); color: var(--blush-deep); }

/* Link card (conviteiras) */
.link-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }
.link-card-label { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.link-pill { display: flex; flex-wrap: wrap; align-items: center; background: var(--ivory); border: 1px dashed var(--gold-soft); border-radius: 100px; padding: 13px 20px; font-size: 0.9rem; }
.link-prefix { color: var(--mocha); }
.link-slug { color: var(--blush-deep); font-weight: 500; }
.link-events { margin: 24px 0; display: grid; gap: 12px; }
.ev { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }
.ev small { font-family: var(--font-body); font-size: 0.74rem; color: var(--mocha); letter-spacing: 0.02em; }
.ev-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.ev-dot--blush { background: var(--blush-deep); }
.ev-dot--gold { background: var(--gold); }
.ev-dot--sage { background: var(--sage); }
.qr { display: flex; align-items: center; gap: 16px; padding-top: 22px; border-top: 1px solid var(--line-soft); color: var(--ink); }
.qr svg { color: var(--ink); background: #fff; padding: 6px; border-radius: 10px; border: 1px solid var(--line-soft); }
.qr span { font-size: 0.84rem; color: var(--ink-soft); }

/* ===================== RECURSOS ===================== */
.recursos { background: var(--paper); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { padding: 28px 26px; border-radius: var(--radius); border: 1px solid var(--line-soft); background: var(--ivory); transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s; }
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); background: var(--paper); }
.feat-ico { font-size: 1.35rem; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; background: var(--blush-soft); margin-bottom: 16px; }
.feature h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.12rem; margin-bottom: 7px; color: var(--ink); }
.feature p { font-size: 0.9rem; color: var(--ink-soft); font-weight: 300; }

/* ===================== PRIVACIDADE ===================== */
.privacidade { background: linear-gradient(180deg, var(--sand) 0%, var(--ivory) 100%); }
.privacy-card {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: var(--ink); color: var(--ivory);
  border-radius: var(--radius-lg); padding: clamp(44px, 6vw, 72px) clamp(30px, 5vw, 64px);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.privacy-card::before {
  content: ""; position: absolute; top: -40%; right: -10%; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(184,150,90,0.28) 0%, transparent 65%);
}
.privacy-card .section-title { color: var(--ivory); position: relative; }
.privacy-ico { display: inline-grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,0.08); color: var(--gold-soft); margin-bottom: 22px; position: relative; }
.privacy-text { margin-top: 18px; font-size: clamp(1.04rem, 1.7vw, 1.2rem); color: rgba(251,247,241,0.82); font-weight: 300; position: relative; }
.privacy-text strong { color: var(--gold-soft); font-weight: 500; }

/* ===================== FLUXO ===================== */
.fluxo { background: var(--paper); }
.flow { display: flex; align-items: stretch; justify-content: center; gap: 10px; flex-wrap: wrap; }
.flow-step { flex: 1; min-width: 190px; max-width: 240px; text-align: center; padding: 30px 22px; background: var(--ivory); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.flow-ico { font-size: 1.7rem; display: block; margin-bottom: 14px; }
.flow-step h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.08rem; margin-bottom: 8px; color: var(--ink); }
.flow-step p { font-size: 0.86rem; color: var(--ink-soft); font-weight: 300; }
.flow-arrow { display: grid; place-items: center; font-size: 1.4rem; color: var(--gold); align-self: center; }

/* ===================== CTA FINAL + FORM ===================== */
.cta-final { background: linear-gradient(180deg, var(--ivory) 0%, var(--sand) 100%); overflow: hidden; }
.cta-glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 900px; height: 500px; background: radial-gradient(ellipse at top, rgba(231,198,190,0.4) 0%, transparent 65%); z-index: 0; }
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.cta-title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.cta-points { margin-top: 26px; display: grid; gap: 12px; }
.cta-points li { display: flex; align-items: center; gap: 11px; color: var(--ink-soft); font-size: 0.98rem; }
.cta-close { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-close-btns { justify-content: center; margin-top: 32px; }
.cta-close-points { display: inline-grid; gap: 12px; margin-top: 28px; text-align: left; }

.cta-form-wrap { position: relative; }
.cta-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 40px); box-shadow: var(--shadow-lg); }
.form-title { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: var(--ink); }
.form-sub { font-size: 0.9rem; color: var(--mocha); margin-top: 6px; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label, .field-label { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mocha); margin-bottom: 8px; }
.field input {
  width: 100%; padding: 13px 16px; font-family: inherit; font-size: 0.96rem; color: var(--ink);
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.field input::placeholder { color: #b9a89a; }
.field input:focus { outline: none; border-color: var(--blush-deep); background: #fff; box-shadow: 0 0 0 4px rgba(194,132,119,0.12); }

.segmented { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; background: var(--ivory); padding: 5px; border-radius: 100px; border: 1px solid var(--line); }
.seg { position: relative; }
.seg input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.seg span { display: block; text-align: center; padding: 10px; border-radius: 100px; font-size: 0.9rem; color: var(--ink-soft); transition: background .3s, color .3s; }
.seg input:checked + span { background: var(--ink); color: var(--ivory); }
.seg input:focus-visible + span { box-shadow: 0 0 0 3px rgba(194,132,119,0.3); }

.btn-block { margin-top: 8px; }
.form-feedback { font-size: 0.9rem; margin-top: 16px; text-align: center; min-height: 1.2em; }
.form-feedback.ok { color: #5e7050; }
.form-feedback.err { color: var(--blush-deep); }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--ink); color: rgba(251,247,241,0.7); padding: 64px 0 40px; text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; color: var(--gold-soft); }
.footer-sign { font-family: var(--font-display); font-size: 1.3rem; color: var(--ivory); }
.footer-sign em { font-style: italic; color: var(--gold-soft); font-size: 0.9em; }
.footer-tag { max-width: 460px; font-size: 0.92rem; font-weight: 300; }
.footer-copy { font-size: 0.8rem; color: rgba(251,247,241,0.45); margin-top: 8px; }

/* ===================== REVEAL ANIMATION ===================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===================== A SOLUÇÃO ===================== */
.solucao { background: linear-gradient(180deg, var(--paper) 0%, var(--ivory) 100%); }
.solucao-quotes { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 8px; }
.sq {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 100px;
  padding: 11px 20px; font-size: 0.92rem; color: var(--ink-soft); box-shadow: var(--shadow-sm);
}
.sq-x { width: 20px; height: 20px; border-radius: 50%; background: var(--blush-soft); color: var(--blush-deep); display: grid; place-items: center; font-size: 0.7rem; }
.solucao-frase {
  max-width: 760px; margin: clamp(36px,5vw,56px) auto 0; text-align: center;
  font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.32; color: var(--ink); font-weight: 400;
}
.solucao-frase em { font-style: italic; color: var(--blush-deep); }

/* ===================== EXPERIÊNCIA DO CONVIDADO ===================== */
.guest-flow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.gf { text-align: center; background: var(--ivory); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 22px 12px; }
.gf-n {
  width: 34px; height: 34px; border-radius: 50%; margin: 0 auto 12px;
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.1rem;
  color: var(--blush-deep); background: var(--blush-soft);
}
.gf p { font-size: 0.84rem; color: var(--ink-soft); font-weight: 300; line-height: 1.4; }
.guest-note {
  max-width: 640px; margin: 34px auto 0; text-align: center;
  background: var(--paper); border: 1px solid var(--gold-soft); border-radius: var(--radius);
  padding: 16px 24px; font-size: 0.96rem; color: var(--ink-soft);
}
.guest-note strong { color: var(--ink); font-weight: 500; }

/* ===================== PLANOS E PREÇOS ===================== */
.planos { background: linear-gradient(180deg, var(--ivory) 0%, var(--sand) 100%); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.price-card {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 38px 30px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card--featured {
  border-color: var(--gold-soft); box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #fff 0%, var(--ivory) 100%);
}
@media (min-width: 981px) { .price-card--featured { transform: scale(1.04); } .price-card--featured:hover { transform: scale(1.04) translateY(-6px); } }
.pc-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, #c9a86a 100%); color: #fff;
  font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  padding: 6px 16px; border-radius: 100px; white-space: nowrap; box-shadow: var(--shadow-sm);
}
.pc-name { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: var(--ink); }
.pc-ideal { font-size: 0.88rem; color: var(--mocha); font-weight: 300; margin-top: 6px; min-height: 2.6em; }
.pc-price { font-family: var(--font-display); font-size: 3rem; color: var(--ink); line-height: 1; margin: 18px 0 22px; }
.pc-cents { font-size: 1.1rem; color: var(--mocha); }
.pc-list { display: grid; gap: 11px; margin-bottom: 28px; }
.pc-list li { position: relative; padding-left: 28px; font-size: 0.94rem; color: var(--ink-soft); font-weight: 300; }
.pc-list li strong { color: var(--ink); font-weight: 500; }
.pc-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 17px; height: 17px; border-radius: 50%;
  background: var(--blush-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23C28477' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.price-card .btn { margin-top: auto; }
.pc-extra { font-size: 0.78rem; color: var(--mocha); text-align: center; margin-top: 12px; }
.planos-obs {
  max-width: 720px; margin: clamp(34px,5vw,52px) auto 0; text-align: center;
  font-size: 0.88rem; color: var(--mocha); font-weight: 300; line-height: 1.6;
}
.planos-obs strong { color: var(--ink-soft); font-weight: 500; }

/* ===================== INCLUÍDO ===================== */
.incluido { background: var(--paper); }
.incl-list { max-width: 880px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 28px; }
.incl-list li { position: relative; padding-left: 30px; font-size: 0.96rem; color: var(--ink-soft); font-weight: 300; }
.incl-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(159,174,146,0.22);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%235e7050' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ===================== FAQ ===================== */
.faq { background: linear-gradient(180deg, var(--sand) 0%, var(--ivory) 100%); }
.faq-container { max-width: 760px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq-item[open] { border-color: var(--blush); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-size: 1.02rem; color: var(--ink);
  font-weight: 500; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--gold); transition: transform .3s var(--ease); line-height: 1; flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 24px 22px; font-size: 0.95rem; color: var(--ink-soft); font-weight: 300; line-height: 1.6; }

/* ===================== RESPONSIVO ===================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; min-height: 440px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-points { justify-content: center; }
  .pain-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split-grid { grid-template-columns: 1fr; gap: 44px; }
  .split-grid--reverse .split-copy { order: 1; }
  .split-grid--reverse .split-visual { order: 2; }
  .cta-grid { grid-template-columns: 1fr; }
  .guest-flow { grid-template-columns: repeat(4, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .incl-list { grid-template-columns: repeat(2, 1fr); max-width: 520px; }
}

@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .nav {
    position: fixed; inset: 78px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(251,247,241,0.97); backdrop-filter: blur(14px);
    padding: 18px 24px 28px; border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .42s var(--ease); box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav > a:not(.btn) { padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
  .nav > a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 12px; }
  .nav-toggle { display: flex; }

  .pain-grid, .feature-grid, .steps { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .floating-card--a { right: 2%; }
  .floating-card--b { left: 2%; }
  .panel-stats { gap: 8px; }
  .guest-flow { grid-template-columns: repeat(2, 1fr); }
  .incl-list { grid-template-columns: 1fr; }
  .faq-item summary { padding: 16px 18px; font-size: 0.96rem; }
}
