@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap');

/* ===========================================================
   AL HAYAT CAPITAL — Estilos globais
   Paleta extraída da identidade visual (dark navy + dourado)
   =========================================================== */

:root {
  --bg-deep:      #0a0f1a;   /* azul-marinho quase preto */
  --bg-panel:     #121826;   /* painel/cards */
  --bg-panel-2:   #161d2e;   /* painel alternativo */
  --bg-input:     #1a2236;   /* campos */
  --line:         rgba(212, 175, 110, 0.18);
  --line-soft:    rgba(255, 255, 255, 0.07);

  --gold:         #d4af6e;   /* dourado base */
  --gold-bright:  #e7c989;   /* dourado claro */
  --gold-deep:    #b8923f;   /* dourado escuro */
  --gold-grad:    linear-gradient(135deg, #e7c989 0%, #d4af6e 45%, #b8923f 100%);

  --txt:          #f3f5f9;   /* texto principal */
  --txt-soft:     #aab3c5;   /* texto secundário */
  --txt-mute:     #6f7b91;   /* texto apagado */

  --ok:           #4cc38a;
  --radius:       18px;
  --radius-sm:    12px;
  --shadow:       0 24px 60px rgba(0, 0, 0, 0.55);
  --maxw:         1180px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  /* Fonte de exibição (títulos e valores): Sora — moderna e nítida para números */
  --serif: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  margin: 0; padding: 0; box-sizing: border-box;
  /* remove o flash cinza/azulado ao tocar em links/botões no celular */
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  /* mantém o fundo escuro ao "puxar" além do topo/fim no celular */
  background: #0a0f1a;
}

/* contorno de foco discreto e na cor da marca (em vez do azul padrão) */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--txt);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================= HEADER / NAV ============================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 15, 26, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand .logo-mark { width: 36px; height: 36px; }
.brand .brand-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--txt);
}
.brand .brand-name span { color: var(--gold); font-size: .7rem; letter-spacing: 4px; display: block; margin-top: -4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  color: var(--txt-soft);
  font-size: .94rem;
  font-weight: 500;
  letter-spacing: .3px;
  transition: color .2s;
  position: relative;
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a.btn-nav {
  background: var(--gold-grad);
  color: #1a1206;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
}
.nav-links a.btn-nav:hover { color: #1a1206; filter: brightness(1.06); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: .3s;
}

/* ============================= HERO ============================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* Camadas (de cima para baixo):
     1) degradê escuro  2) brilho azulado
     3) fundo-home.jpg (opcional, só se quiser imagem diferente na home)
     4) fundo-login.jpg (a MESMA imagem do login serve aqui também)
     5) skyline padrão (reserva) */
  background:
    linear-gradient(180deg, rgba(10,15,26,.55) 0%, rgba(10,15,26,.82) 55%, var(--bg-deep) 100%),
    radial-gradient(120% 80% at 70% 20%, rgba(40,55,90,.55), transparent 60%),
    url('../img/personalizado/fundo-home.jpg') center / cover no-repeat,
    url('../img/personalizado/fundo-login.jpg') center / cover no-repeat,
    url('../img/skyline.svg') center / cover no-repeat;
  z-index: 0;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
}
.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 18px;
}
.hero-copy h1 .gold-text { display: inline; }
.hero-copy p.lead {
  color: var(--txt-soft);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-stats {
  display: flex;
  gap: 34px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold-bright);
  line-height: 1.1;
}
.hero-stats .stat span { font-size: .85rem; color: var(--txt-mute); }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .5px;
  padding: 15px 30px;
  border-radius: 32px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s, filter .2s, background .2s;
}
.btn-primary {
  background: var(--gold-grad);
  color: #1a1206;
  box-shadow: 0 12px 30px rgba(212,175,110,.28);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-ghost {
  background: transparent;
  color: var(--gold-bright);
  border-color: var(--line);
}
.btn-ghost:hover { background: rgba(212,175,110,.08); }

/* ============================= LOGIN CARD ============================= */
.login-card {
  background: linear-gradient(180deg, rgba(22,29,46,.92), rgba(15,20,33,.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.login-card h2 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.login-card .sub { color: var(--txt-soft); font-size: .95rem; margin-bottom: 24px; }

.field {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-input);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 16px;
  transition: border .2s, box-shadow .2s;
}
.field:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,110,.12);
}
.field svg { flex-shrink: 0; }
.field input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--txt);
  font-size: 1rem;
  font-family: var(--font);
}
.field input::placeholder { color: var(--txt-mute); }
.field .toggle-pass {
  background: none; border: none; cursor: pointer; color: var(--txt-mute);
  display: flex; padding: 0;
}
.field .toggle-pass:hover { color: var(--gold); }

.login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--txt-soft);
  font-size: .92rem;
  cursor: pointer;
  user-select: none;
}
.checkbox input { display: none; }
.checkbox .box {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.checkbox .box svg { opacity: 1; transition: opacity .15s; }
.checkbox input:not(:checked) + .box { background: var(--bg-input); border: 1px solid var(--line); }
.checkbox input:not(:checked) + .box svg { opacity: 0; }
.link-gold { color: var(--gold); font-size: .92rem; font-weight: 600; }
.link-gold:hover { color: var(--gold-bright); }

.btn-block { width: 100%; }

/* Card de acesso na home (substitui o formulário) */
.access-card { text-align: left; }
.access-badge {
  display: inline-block; background: rgba(212,175,110,.1);
  border: 1px solid var(--line); color: var(--gold-bright);
  font-size: .75rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 16px;
}
.access-list { margin: 18px 0 24px; }
.access-list li {
  position: relative; padding: 9px 0 9px 30px;
  color: var(--txt-soft); font-size: .96rem;
  border-bottom: 1px solid var(--line-soft);
}
.access-list li:last-child { border-bottom: none; }
.access-list li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-grad);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='3' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='3' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.divider {
  display: flex; align-items: center; gap: 14px;
  color: var(--txt-mute); font-size: .85rem;
  margin: 22px 0;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: var(--line-soft);
}
.biometric {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--gold-bright); font-weight: 600; font-size: 1rem;
  width: 100%; padding: 13px; border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft); background: none; cursor: pointer;
  transition: background .2s;
}
.biometric:hover { background: rgba(212,175,110,.06); }
.login-foot {
  text-align: center; color: var(--txt-soft); font-size: .92rem;
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line-soft);
}
.campo-erro { color: #e0795f; font-size: .8rem; margin: -8px 0 6px 4px; }

/* ============================= SECTIONS ============================= */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section-head .kicker {
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 14px;
}
.section-head p { color: var(--txt-soft); font-size: 1.05rem; }

.alt { background: var(--bg-panel); }

/* COMO FUNCIONA — steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step {
  background: var(--bg-panel-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 24px;
  position: relative;
  transition: transform .2s, border .2s;
}
.step:hover { transform: translateY(-5px); border-color: var(--line); }
.step .num {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
  color: #1a1206; background: var(--gold-grad);
  border-radius: 14px; margin-bottom: 18px;
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; font-weight: 600; }
.step p { color: var(--txt-soft); font-size: .95rem; }

/* RENDIMENTO — highlight band */
.yield-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.yield-card {
  background: var(--bg-panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.yield-card .big {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 4.6rem);
  font-weight: 700;
  line-height: 1;
}
.yield-card .big small { font-size: .35em; vertical-align: super; }
.yield-card .cap { color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-size: .82rem; margin-top: 8px; }
.yield-card .note { color: var(--txt-soft); margin-top: 18px; font-size: .95rem; }
.yield-text h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600; margin-bottom: 18px; line-height: 1.15;
}
.yield-text p { color: var(--txt-soft); margin-bottom: 16px; }
.yield-text .tag {
  display: inline-block; background: rgba(212,175,110,.1);
  border: 1px solid var(--line); color: var(--gold-bright);
  padding: 6px 14px; border-radius: 20px; font-size: .85rem; font-weight: 600;
}

/* CICLO — timeline */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cycle {
  background: var(--bg-panel-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
}
.cycle .ico {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(212,175,110,.1); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.cycle .phase { color: var(--gold); font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; }
.cycle h3 { font-size: 1.2rem; margin: 6px 0 10px; font-weight: 600; }
.cycle p { color: var(--txt-soft); font-size: .95rem; }
.cycle .days {
  position: absolute; top: 28px; right: 26px;
  font-family: var(--serif); color: var(--gold-bright); font-weight: 700; font-size: 1.1rem;
}

/* RESGATE — tiers */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 920px; margin: 0 auto; }
.tier {
  background: var(--bg-panel-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 26px; text-align: center;
  transition: transform .2s, border .2s;
}
.tier:hover { transform: translateY(-4px); border-color: var(--line); }
.tier.best { border-color: var(--gold); background: linear-gradient(180deg, rgba(212,175,110,.08), var(--bg-panel-2)); }
.tier .period { color: var(--txt-soft); font-size: .9rem; margin-bottom: 10px; }
.tier .rate { font-family: var(--serif); font-size: 3rem; font-weight: 700; line-height: 1; }
.tier .rate.free { color: var(--ok); }
.tier .desc { color: var(--txt-mute); font-size: .9rem; margin-top: 10px; }
.tier .badge {
  display: inline-block; background: var(--gold-grad); color: #1a1206;
  font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 14px;
}

/* PRAZOS */
.deadlines { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 820px; margin: 0 auto; }
.deadline {
  display: flex; align-items: center; gap: 20px;
  background: var(--bg-panel-2); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 28px;
}
.deadline .ico {
  width: 60px; height: 60px; border-radius: 16px; flex-shrink: 0;
  background: rgba(212,175,110,.1); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.deadline h3 { font-size: 1.05rem; margin-bottom: 4px; }
.deadline .dval { font-family: var(--serif); color: var(--gold-bright); font-size: 1.5rem; font-weight: 700; }
.deadline p { color: var(--txt-soft); font-size: .9rem; }

/* CTA FINAL */
.cta-final {
  text-align: center;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(212,175,110,.14), transparent 60%),
    var(--bg-panel);
  border-top: 1px solid var(--line-soft);
}
.cta-final h2 { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 600; margin-bottom: 16px; }
.cta-final p { color: var(--txt-soft); font-size: 1.1rem; max-width: 560px; margin: 0 auto 30px; }

/* ============================= ARTICLE (quem somos / termos) ============================= */
.page-hero {
  padding: 70px 0 50px;
  text-align: center;
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(40,55,90,.4), transparent 60%),
    var(--bg-deep);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero .kicker { color: var(--gold); letter-spacing: 3px; text-transform: uppercase; font-size: .82rem; font-weight: 600; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; margin: 12px 0; }
.page-hero p { color: var(--txt-soft); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

.article { padding: 64px 0; }
.article .wrap { max-width: 860px; }
.article h2 {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 600;
  margin: 38px 0 14px; color: var(--txt);
}
.article h2:first-child { margin-top: 0; }
.article p { color: var(--txt-soft); margin-bottom: 16px; }
.article ol, .article ul.legal { margin: 0 0 18px 0; }
.article ol { counter-reset: item; }
.article ol > li {
  position: relative; list-style: none;
  padding: 16px 18px 16px 56px;
  margin-bottom: 12px;
  background: var(--bg-panel-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  color: var(--txt-soft);
}
.article ol > li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute; left: 16px; top: 16px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-grad); color: #1a1206;
  border-radius: 8px; font-weight: 700; font-size: .9rem;
}
.article ol > li ul { margin-top: 10px; }
.article ol > li ul li { padding: 4px 0 4px 18px; position: relative; }
.article ol > li ul li::before { content: '•'; color: var(--gold); position: absolute; left: 2px; }
.article .values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0; }
.article .value {
  background: var(--bg-panel-2); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 28px 24px;
}
.article .value .ico {
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: 16px;
  background: rgba(212,175,110,.1); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.article .value h3 { font-size: 1.1rem; margin-bottom: 8px; }
.article .value p { font-size: .94rem; margin: 0; }
.disclaimer {
  background: rgba(212,175,110,.06);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 20px 24px; margin-top: 30px;
  color: var(--txt-soft); font-size: .95rem;
}

/* ============================= AUTH (login / cadastro) ============================= */
.auth-body { background: var(--bg-deep); min-height: 100vh; }
.auth-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}
.auth-hero {
  position: relative;
  text-align: center;
  padding: 48px 28px 80px;
  /* Camadas (de cima para baixo):
     1) degradê escuro para o texto ficar legível
     2) SUA imagem -> assets/img/personalizado/fundo-login.jpg
     3) skyline padrão (reserva, aparece se a sua imagem não estiver lá) */
  background:
    linear-gradient(180deg, rgba(10,15,26,.30) 0%, rgba(10,15,26,.78) 75%, var(--bg-deep) 100%),
    url('../img/personalizado/fundo-login.jpg') center / cover no-repeat,
    url('../img/skyline.svg') center top / cover no-repeat;
}
.auth-back {
  position: absolute; top: 22px; left: 22px;
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--txt-soft); font-size: .9rem; font-weight: 500;
  background: rgba(10,15,26,.45); border: 1px solid var(--line-soft);
  padding: 8px 14px; border-radius: 30px; backdrop-filter: blur(6px);
  transition: color .2s, border .2s;
}
.auth-back:hover { color: var(--gold-bright); border-color: var(--line); }
.auth-logo-mark { width: 84px; height: 84px; margin: 8px auto 16px; }
.auth-name {
  font-family: var(--serif); font-size: 2.5rem; font-weight: 600;
  letter-spacing: 8px; color: #fff; line-height: 1;
}
.auth-cap {
  color: var(--gold); letter-spacing: 10px; font-size: .8rem;
  font-weight: 600; margin-top: 8px;
}
.auth-rule { width: 180px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 14px auto; }
.auth-tagline { color: #cbd3e0; letter-spacing: 3px; font-size: .72rem; font-weight: 500; }

.auth-card {
  position: relative;
  margin-top: -44px;
  flex: 1;
  background: linear-gradient(180deg, rgba(22,29,46,.96), rgba(13,18,30,.99));
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 28px 28px 0 0;
  padding: 30px 28px 48px;
  box-shadow: 0 -20px 50px rgba(0,0,0,.45);
}

.auth-tabs {
  display: flex;
  gap: 6px;
  background: var(--bg-input);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 5px;
  margin-bottom: 26px;
}
.auth-tab {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .98rem;
  color: var(--txt-soft);
  cursor: pointer;
  border: none;
  background: none;
  transition: background .25s, color .25s;
}
.auth-tab.active {
  background: var(--gold-grad);
  color: #1a1206;
  box-shadow: 0 6px 16px rgba(212,175,110,.2);
}

.auth-form { display: none; }
.auth-form.active { display: block; animation: fadeIn .35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.auth-form h2 { font-family: var(--serif); font-size: 1.85rem; font-weight: 600; margin-bottom: 4px; }
.auth-form .sub { color: var(--txt-soft); font-size: .95rem; margin-bottom: 24px; }
.terms-check { align-items: flex-start; }
.terms-check .box { margin-top: 1px; }

/* ============================= DETALHE: TABELA ============================= */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line-soft); margin: 24px 0; }
table.data {
  width: 100%; border-collapse: collapse; min-width: 460px;
  background: var(--bg-panel-2);
}
table.data th, table.data td { padding: 16px 18px; text-align: left; font-size: .95rem; }
table.data thead th {
  background: rgba(212,175,110,.1); color: var(--gold-bright);
  font-weight: 600; letter-spacing: .4px; text-transform: uppercase; font-size: .8rem;
  border-bottom: 1px solid var(--line);
}
table.data tbody tr { border-bottom: 1px solid var(--line-soft); }
table.data tbody tr:last-child { border-bottom: none; }
table.data tbody td { color: var(--txt-soft); }
table.data tbody td strong { color: var(--txt); }
table.data tbody tr:hover { background: rgba(255,255,255,.02); }
table.data .pos { color: var(--ok); font-weight: 600; }
table.data .free { color: var(--ok); font-weight: 700; }

/* ============================= DETALHE: SIMULAÇÃO ============================= */
.sim {
  background: linear-gradient(180deg, rgba(212,175,110,.07), var(--bg-panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  margin: 30px 0;
}
.sim h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin-bottom: 6px; }
.sim .sim-sub { color: var(--txt-soft); font-size: .92rem; margin-bottom: 22px; }
.sim-controls { margin-bottom: 24px; }
.sim-controls label { display: block; color: var(--txt-soft); font-size: .9rem; margin-bottom: 10px; }
.sim-controls .amount { font-family: var(--serif); color: var(--gold-bright); font-size: 2rem; font-weight: 700; }
.sim-controls input[type=range] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px;
  border-radius: 6px; margin-top: 14px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 40%, var(--bg-input) 40%);
  outline: none;
}
.sim-controls input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-grad); cursor: pointer; border: 3px solid #0a0f1a;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.sim-controls input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: #d4af6e; cursor: pointer; border: 3px solid #0a0f1a;
}
.sim-out { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sim-out .cell {
  background: var(--bg-deep); border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm); padding: 18px; text-align: center;
}
.sim-out .cell span { display: block; color: var(--txt-mute); font-size: .8rem; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.sim-out .cell strong { font-family: var(--serif); font-size: 1.7rem; color: var(--gold-bright); font-weight: 700; }
.sim-note { color: var(--txt-mute); font-size: .82rem; margin-top: 16px; }

/* ============================= DETALHE: TIMELINE VERTICAL ============================= */
.vtimeline { position: relative; margin: 30px 0; padding-left: 0; }
.vstep {
  position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 22px;
  padding-bottom: 34px;
}
.vstep:last-child { padding-bottom: 0; }
.vstep::before {
  content: ''; position: absolute; left: 31px; top: 64px; bottom: -6px;
  width: 2px; background: var(--line);
}
.vstep:last-child::before { display: none; }
.vstep .dot {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--bg-panel-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--gold-bright);
  z-index: 1;
}
.vstep .vcontent {
  background: var(--bg-panel-2); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 24px 26px;
}
.vstep .vcontent .vtag {
  display: inline-block; color: var(--gold); font-size: .75rem; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 700; margin-bottom: 6px;
}
.vstep .vcontent h3 { font-size: 1.25rem; margin-bottom: 8px; font-weight: 600; }
.vstep .vcontent p { color: var(--txt-soft); font-size: .96rem; }

/* ============================= DETALHE: FAQ ============================= */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--bg-panel-2); border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden;
}
.faq details[open] { border-color: var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 600; font-size: 1.02rem; color: var(--txt);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--gold); position: relative; transition: .25s;
}
.faq summary .plus::before, .faq summary .plus::after {
  content: ''; position: absolute; background: var(--gold); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq summary .plus::before { width: 12px; height: 2px; }
.faq summary .plus::after { width: 2px; height: 12px; transition: .25s; }
.faq details[open] summary .plus { transform: rotate(180deg); }
.faq details[open] summary .plus::after { opacity: 0; }
.faq details .answer { padding: 0 22px 22px; color: var(--txt-soft); font-size: .96rem; }

/* ============================= DETALHE: INFO GRID / CALLOUT ============================= */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin: 30px 0; }
.info-card {
  background: var(--bg-panel-2); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 28px;
}
.info-card .ico {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 16px;
  background: rgba(212,175,110,.1); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.info-card h3 { font-size: 1.15rem; margin-bottom: 8px; font-weight: 600; }
.info-card p { color: var(--txt-soft); font-size: .95rem; margin: 0; }
.callout {
  display: flex; gap: 18px; align-items: flex-start;
  background: rgba(212,175,110,.06); border: 1px solid var(--line);
  border-left: 3px solid var(--gold); border-radius: var(--radius-sm);
  padding: 22px 24px; margin: 28px 0;
}
.callout .ico { font-size: 1.6rem; flex-shrink: 0; }
.callout p { margin: 0; color: var(--txt-soft); }
.callout strong { color: var(--txt); }

.lead-para { font-size: 1.15rem; color: var(--txt); margin-bottom: 22px; }

@media (max-width: 720px) {
  .sim-out { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .sim { padding: 24px 20px; }
  .vstep { grid-template-columns: 52px 1fr; gap: 16px; }
  .vstep .dot { width: 52px; height: 52px; font-size: 1.2rem; }
  .vstep::before { left: 25px; top: 52px; }
}

/* ============================= FOOTER ============================= */
.site-footer {
  background: #070b13;
  border-top: 1px solid var(--line-soft);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid .brand { margin-bottom: 16px; }
.footer-grid p { color: var(--txt-mute); font-size: .92rem; max-width: 320px; }
.footer-col h4 { font-size: .95rem; margin-bottom: 16px; color: var(--txt); letter-spacing: .5px; }
.footer-col a { display: block; color: var(--txt-soft); font-size: .92rem; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  color: var(--txt-mute); font-size: .85rem;
}

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

/* ============================= RESPONSIVE ============================= */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { order: 1; text-align: center; }
  .hero-copy .eyebrow { }
  .hero-stats { justify-content: center; }
  .cta-row { justify-content: center; }
  .login-card { order: 2; max-width: 460px; margin: 0 auto; width: 100%; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .yield-band { grid-template-columns: 1fr; gap: 30px; }
  .timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article .values { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--line-soft);
    padding: 10px 22px 22px;
    transform: translateY(-130%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 4px; border-bottom: 1px solid var(--line-soft); }
  .nav-links a.btn-nav { text-align: center; margin-top: 12px; border-bottom: none; }
  .nav-toggle { display: flex; }

  section { padding: 60px 0; }
  .steps { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .deadlines { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .login-card { padding: 28px 22px; }
  .wrap { padding: 0 18px; }
}

@media (max-width: 420px) {
  .hero-stats .stat strong { font-size: 1.6rem; }
  .brand .brand-name { font-size: 1.2rem; }
}
