/* ================================================================
   VOUCHER PRESENTE — Site Comercial
   Premium · Elegante · Responsivo
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-pale:   #F5EDD6;
  --gold-dark:   #9A7220;
  --dark:        #1A1A2E;
  --dark2:       #16213E;
  --text:        #2C2822;
  --text-muted:  #8A7E70;
  --border:      #E8E2D8;
  --bg-cream:    #FAF8F4;
  --bg-light:    #FFFFFF;
  --radius:      6px;
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── TIPOGRAFIA ──────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.25;
}

/* ── NAVEGAÇÃO ───────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.97);
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo-symbol { color: var(--gold); font-size: 16px; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .04em;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 400;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.btn-nav-login {
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.btn-nav-login:hover { color: var(--gold); }
.btn-nav-cta {
  padding: 9px 20px;
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: background .2s;
}
.btn-nav-cta:hover { background: var(--gold-dark); }
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #FFFDF8 0%, #FAF6EC 50%, #F5EDD6 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 68px;
  overflow: hidden;
}
.hero-container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(38px, 4.5vw, 64px);
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn-gold-lg {
  padding: 15px 32px;
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: background .2s, transform .2s;
}
.btn-gold-lg:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-ghost-lg {
  padding: 15px 32px;
  background: transparent;
  color: var(--text);
  border-radius: var(--radius);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color .2s, transform .2s;
}
.btn-ghost-lg:hover { border-color: var(--gold); transform: translateY(-1px); }
.hero-proof {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--text-muted);
}
.hero-proof span::before { content: ''; }

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-phone-mockup {
  position: relative;
}
.phone-frame {
  width: 260px;
  background: #fff;
  border-radius: 32px;
  border: 2px solid #e8e2d8;
  box-shadow: 0 32px 80px rgba(0,0,0,.15), 0 8px 20px rgba(201,168,76,.1);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.phone-screen {
  padding: 40px 24px 40px;
}
.phone-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at center, rgba(201,168,76,.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.mockup-voucher {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.mv-brand { font-family: 'Cormorant Garamond', serif; font-size: 9px; letter-spacing: .3em; color: #C9A84C; opacity: .6; }
.mv-for   { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic; color: #C9A84C; }
.mv-divider { width: 30px; height: 1px; background: linear-gradient(90deg, transparent, #C9A84C, transparent); opacity: .4; margin: 4px 0; }
.mv-label { font-size: 8px; letter-spacing: .18em; text-transform: uppercase; color: #C9A84C; opacity: .5; }
.mv-name  { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: #C9A84C; }
.mv-title { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-weight: 600; color: #C9A84C; letter-spacing: .04em; margin-top: 4px; }
.mv-code-area {
  width: 100%; padding: 12px 10px; background: rgba(201,168,76,.06);
  border: 1px dashed rgba(201,168,76,.35); border-radius: 2px; margin-top: 8px;
}
.mv-code-label { font-size: 7px; letter-spacing: .2em; text-transform: uppercase; color: #C9A84C; opacity: .5; }
.mv-code { font-family: 'Cormorant Garamond', serif; font-size: 18px; letter-spacing: .25em; color: #C9A84C; font-weight: 600; }
.mv-badge {
  display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 8px; letter-spacing: .1em;
  text-transform: uppercase; background: rgba(201,168,76,.08); color: #C9A84C;
  border: 1px solid rgba(201,168,76,.25); margin-top: 8px;
}

/* Hero clients */
.hero-clients {
  width: 100%;
  padding: 28px 32px;
  border-top: 1px solid rgba(201,168,76,.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.clients-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); opacity: .7; }
.clients-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 20px; }
.cl-item { font-family: 'Cormorant Garamond', serif; font-size: 14px; color: var(--text-muted); letter-spacing: .06em; }
.cl-sep  { color: var(--gold); font-size: 8px; opacity: .5; }

/* ── SECTIONS ──────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-light { background: var(--bg-light); }
.section-dark  { background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%); }
.section-cream { background: var(--bg-cream); }

.section-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header-light { color: #fff; }

.section-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-tag-gold { background: rgba(201,168,76,.15); border-color: rgba(201,168,76,.35); }

.section-header h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 14px; }
.section-header p  { font-size: 16px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* ── STEPS ──────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
  margin-bottom: 20px;
}
.step-icon { margin-bottom: 16px; }
.step-icon svg { width: 32px; height: 32px; fill: var(--gold); }
.step-card h3 { font-size: 22px; margin-bottom: 10px; color: var(--text); }
.step-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── BENEFITS ────────────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.benefit-card {
  padding: 40px 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  transition: background .25s;
}
.benefit-card:hover { background: rgba(201,168,76,.07); }
.benefit-icon { font-size: 24px; color: var(--gold); margin-bottom: 16px; }
.benefit-card h3 { font-size: 20px; color: #fff; margin-bottom: 10px; }
.benefit-card p  { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ── DEMO ────────────────────────────────────────────────────── */
.demo-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.demo-step { text-align: center; }
.demo-step-img {
  width: 180px;
  height: 300px;
  margin: 0 auto 16px;
}
.ds-screen {
  width: 100%; height: 100%;
  border-radius: 20px;
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.ds-screen-bow { background: #fff; }
.ds-screen-anim { background: linear-gradient(135deg, #FFFDF8, #F5EDD6); }
.ds-screen-voucher { background: #fff; }
.ds-brand-mini { font-family: 'Cormorant Garamond', serif; font-size: 8px; letter-spacing: .3em; color: #C9A84C; opacity: .6; text-transform: uppercase; }
.ds-bow-emoji { font-size: 72px; animation: bowFloat 3s ease-in-out infinite; }
.ds-hint { font-family: 'Cormorant Garamond', serif; font-size: 11px; font-style: italic; color: #C9A84C; opacity: .6; }
.ds-anim-ring { width: 80px; height: 80px; border: 2px solid rgba(201,168,76,.3); border-radius: 50%; animation: ringPulse 1.5s ease-out infinite; }
.ds-anim-ring-2 { width: 50px; height: 50px; position: absolute; animation-delay: .5s; }
.ds-anim-dot { font-size: 24px; color: #C9A84C; position: absolute; animation: dotSpin 2s linear infinite; }
.ds-screen-anim { position: relative; }
.ds-v-mini { font-family: 'Cormorant Garamond', serif; font-size: 13px; font-style: italic; color: #C9A84C; }
.ds-v-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: #C9A84C; }
.ds-v-code { font-family: 'Cormorant Garamond', serif; font-size: 20px; letter-spacing: .25em; color: #C9A84C; padding: 8px 16px; border: 1px dashed rgba(201,168,76,.4); border-radius: 2px; margin-top: 8px; }
.demo-arrow { font-size: 28px; color: var(--gold); opacity: .4; }
.demo-step-label { font-size: 13px; color: var(--text-muted); max-width: 180px; margin: 0 auto; }

@keyframes bowFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes ringPulse { 0% { transform: scale(.8); opacity:.8; } 100% { transform: scale(1.4); opacity:0; } }
@keyframes dotSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── PLANOS ──────────────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 32px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card-featured {
  border-color: var(--gold);
  border-width: 2px;
  background: linear-gradient(to bottom, #FFFDF8, var(--bg-light));
}
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name { font-family: 'Cormorant Garamond', serif; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.plan-currency { font-size: 18px; color: var(--text-muted); }
.plan-value { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 600; color: var(--text); line-height: 1; }
.plan-period { font-size: 14px; color: var(--text-muted); }
.plan-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.plan-features li { font-size: 13px; color: var(--text); }
.plan-btn {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--text);
  transition: all .2s;
}
.plan-btn:hover { border-color: var(--gold); color: var(--gold); }
.plan-btn-featured { background: var(--gold); color: #fff; border-color: var(--gold); }
.plan-btn-featured:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .2s;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item:hover { background: #FDFBF8; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  user-select: none;
  gap: 16px;
}
.faq-icon { font-size: 20px; color: var(--gold); flex-shrink: 0; width: 20px; text-align: center; }
.faq-answer {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding-right: 36px;
}
.faq-answer + .faq-question { border-top: none; }
.faq-item:not(:last-child) .faq-answer { padding-bottom: 20px; }

/* ── CTA FINAL ──────────────────────────────────────────────── */
.section-cta {
  padding: 120px 32px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
}
.cta-symbol { font-size: 24px; color: var(--gold); margin-bottom: 24px; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}
.cta-desc { font-size: 16px; color: rgba(255,255,255,.6); margin-bottom: 40px; line-height: 1.7; }
.btn-cta-main {
  display: inline-block;
  padding: 18px 44px;
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: background .2s, transform .2s;
}
.btn-cta-main:hover { background: var(--gold-light); color: #1a1a2e; transform: translateY(-2px); }
.cta-note { margin-top: 20px; font-size: 12px; color: rgba(255,255,255,.35); letter-spacing: .06em; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: #111;
  padding: 60px 0 40px;
}
.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.footer-symbol { color: var(--gold); font-size: 16px; }
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: #fff; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-links a { font-size: 13px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06); font-size: 12px; color: rgba(255,255,255,.25); }

/* ── RESPONSIVO ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-container    { grid-template-columns: 1fr; gap: 48px; text-align: center; padding-top: 60px; }
  .hero-desc         { max-width: 100%; }
  .hero-actions      { justify-content: center; }
  .hero-proof        { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .hero-visual       { display: none; }
  .steps-grid        { grid-template-columns: 1fr; }
  .benefits-grid     { grid-template-columns: 1fr 1fr; }
  .plans-grid        { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .nav-links         { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #fff; padding: 20px 32px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,.08); gap: 16px; }
  .nav-links.open    { display: flex; }
  .nav-cta           { display: none; }
  .nav-cta.open      { display: flex; flex-direction: column; align-items: center; padding: 0 32px 20px; position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); }
  .nav-mobile-toggle { display: flex; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .section-container { padding: 0 20px; }
  .hero-container { padding: 40px 20px 40px; }
  .benefits-grid  { grid-template-columns: 1fr; }
  .demo-steps     { flex-direction: column; }
  .demo-arrow     { transform: rotate(90deg); }
  .hero-clients   { padding: 24px 20px; }
  .cl-sep         { display: none; }
}
