/* ===================================================================
   Regina Almeida Advocacia Previdenciária — identidade preto e dourado
   Art déco carioca: linhas geométricas, leque/sunburst, serifa clássica
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Cinzel:wght@600;700&family=Jost:wght@400;500;600&display=swap');

:root {
  --ink: #0B0B0C;
  --ink-2: #16151A;
  --gold: #C9A227;
  --gold-bright: #E8C158;
  --gold-dim: #8B6F3E;
  --cream: #F3EEE1;
  --cream-dim: #C9C3B2;
  --line: rgba(201, 162, 39, 0.28);
  --radius: 2px;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin: 0;
}

.serif-alt {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

a { color: inherit; }

img, svg { display: block; max-width: 100%; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Chevron / sunburst divider (signature element) ---------- */
.divider {
  width: 100%;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.9;
}
.divider svg { height: 34px; width: auto; }

/* ---------- Top bar ---------- */
.topbar {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #0E0E10 0%, #0B0B0C 100%);
  position: sticky;
  top: 0;
  z-index: 40;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  text-decoration: none;
  white-space: nowrap;
}
.brand small {
  display: block;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.08em;
  font-size: 9px;
  color: var(--cream-dim);
  margin-top: 2px;
}
.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  text-decoration: none;
  padding: 9px 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease;
}
.topbar-cta:hover { background: var(--gold); color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 88px 24px 64px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(201,162,39,0.14) 0%, rgba(11,11,12,0) 55%),
    var(--ink);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(115deg, rgba(201,162,39,0.05) 0 2px, transparent 2px 64px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-dim);
}
.hero h1 {
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.18;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-bright);
}
.hero .lede {
  max-width: 620px;
  margin: 22px auto 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  color: var(--cream-dim);
}
.hero-actions {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: transform 0.15s ease, background 0.2s ease;
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  color: var(--cream);
  text-decoration: none;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-size: 14px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.hero-trust {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
}
.hero-trust span { display: flex; align-items: center; gap: 8px; }
.hero-trust .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

/* ---------- Sections ---------- */
section { padding: 72px 24px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { font-size: clamp(24px, 3.4vw, 34px); }
.section-head p { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--cream-dim); margin-top: 14px; }

.alt-bg { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- Benefit / feature grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
}
.card {
  border: 1px solid var(--line);
  padding: 30px 26px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(201,162,39,0.045), transparent 40%);
}
.card .num {
  font-family: 'Cinzel', serif;
  color: var(--gold-dim);
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  display: block;
}
.card h3 { font-size: 18px; margin-bottom: 10px; }
.card p { color: var(--cream-dim); font-size: 15px; margin: 0; }

/* ---------- Who qualifies / checklist ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}
.two-col h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 18px; }
.two-col .lede { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--cream-dim); margin-bottom: 22px; }

.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--cream);
}
.checklist li:last-child { border-bottom: none; }
.checklist .mark {
  flex: none;
  width: 22px; height: 22px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright);
  font-size: 12px;
  margin-top: 1px;
}
.panel {
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: var(--radius);
  background: var(--ink-2);
}
.panel h3 {
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  margin-bottom: 18px;
}

/* ---------- FAQ accordion ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus {
  flex: none;
  width: 24px; height: 24px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  position: relative;
  transition: transform 0.25s ease;
}
.faq-item .plus::before, .faq-item .plus::after {
  content: "";
  position: absolute;
  background: var(--gold);
  top: 50%; left: 50%;
}
.faq-item .plus::before { width: 10px; height: 1px; transform: translate(-50%, -50%); }
.faq-item .plus::after { width: 1px; height: 10px; transform: translate(-50%, -50%); }
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-item .a {
  padding: 0 4px 24px;
  color: var(--cream-dim);
  font-size: 15.5px;
  max-width: 640px;
}

/* ---------- Final CTA ---------- */
.cta-final {
  text-align: center;
  padding: 90px 24px;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(201,162,39,0.16), transparent 60%),
    var(--ink);
  border-top: 1px solid var(--line);
}
.cta-final h2 { font-size: clamp(24px, 3.6vw, 36px); max-width: 620px; margin: 0 auto 16px; }
.cta-final p { font-family: 'Cormorant Garamond', serif; color: var(--cream-dim); font-size: 19px; max-width: 520px; margin: 0 auto 34px; }

/* ---------- OAB seal ---------- */
.seal-wrap { display: flex; justify-content: center; margin-top: 10px; }
.seal { width: 108px; height: 108px; animation: spin 34s linear infinite; }
@media (prefers-reduced-motion: reduce) { .seal { animation: none; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 44px 24px 30px;
  text-align: center;
  color: var(--cream-dim);
  font-size: 12.5px;
}
footer .brand-line {
  font-family: 'Cinzel', serif;
  color: var(--gold-bright);
  letter-spacing: 0.1em;
  font-size: 13px;
  margin-bottom: 10px;
}
footer .fine-print { max-width: 640px; margin: 14px auto 0; line-height: 1.7; opacity: 0.8; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1F1F22;
  border: 1px solid var(--gold);
  color: var(--cream);
  text-decoration: none;
  padding: 12px 18px 12px 12px;
  border-radius: 40px;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}
.wa-float svg { width: 22px; height: 22px; }
.wa-float span { white-space: nowrap; }

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 34px; }
  .topbar-cta span.long { display: none; }
}
