/* ============================================================
   Mi Ángel Guardián — site institucional
   Paleta: marfim quente, tinta índigo, dourado envelhecido
   Tipografia: Fraunces (display) + Inter (texto)
   ============================================================ */

:root {
  --bg: #FBF8F2;
  --bg-alt: #EFEAF2;
  --ink: #201C33;
  --ink-soft: #504B66;
  --gold: #A9803D;
  --gold-deep: #7C5D2A;
  --lavender: #6E6C9A;
  --line: #DFD8CC;
  --white: #FFFFFF;
  --max: 720px;
  --radius: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--ink);
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.1rem); font-weight: 480; }
h2 { font-size: clamp(1.5rem, 3vw, 1.9rem); }
h3 { font-size: 1.15rem; font-weight: 600; font-family: 'Inter', sans-serif; }

p { margin: 0 0 1.1em; color: var(--ink-soft); max-width: 62ch; }

a { color: var(--gold-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--lavender); outline-offset: 3px; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.wrap.wide { max-width: 860px; }

/* Header */
header.site {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.nav {
  max-width: 860px;
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.brand span { color: var(--gold-deep); }
.nav-links { display: flex; gap: 26px; flex-wrap: wrap; }
.nav-links a { color: var(--ink-soft); font-size: 0.93rem; }
.nav-links a:hover { color: var(--gold-deep); text-decoration: none; }

/* Hero */
.hero {
  padding: 76px 0 60px;
  border-bottom: 1px solid var(--line);
}
.hero .kicker {
  color: var(--gold-deep);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.hero p.lead { font-size: 1.12rem; color: var(--ink-soft); }
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 30px 0 26px;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.price { font-family: 'Fraunces', serif; font-size: 2rem; color: var(--ink); }
.price-note { color: var(--ink-soft); font-size: 0.9rem; }

.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--white) !important;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--gold-deep); }
.btn-secondary {
  background: transparent;
  color: var(--ink) !important;
  border: 1px solid var(--line);
}
.btn-secondary:hover { background: var(--bg-alt); }

/* Sections */
section { padding: 56px 0; }
section.alt { background: var(--bg-alt); }
section + section { border-top: 1px solid var(--line); }
.eyebrow-plain { color: var(--gold-deep); font-family: 'Fraunces', serif; font-style: italic; margin-bottom: 10px; }

.list-quiet { list-style: none; margin: 0; padding: 0; }
.list-quiet li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  display: flex;
  gap: 14px;
}
.list-quiet li:last-child { border-bottom: 1px solid var(--line); }
.list-quiet li::before {
  content: "";
  min-width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 9px;
}

.faq-item { border-top: 1px solid var(--line); padding: 20px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin-bottom: 8px; }
.faq-item p { margin: 0; }

.guarantee {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

/* Footer */
footer.site {
  border-top: 1px solid var(--line);
  padding: 44px 0 40px;
  background: var(--bg-alt);
}
footer.site .cols {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
footer.site h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin: 0 0 12px;
  font-weight: 600;
}
footer.site .legal { font-size: 0.87rem; color: var(--ink-soft); line-height: 1.7; max-width: 420px; }
footer.site .links { display: flex; flex-direction: column; gap: 8px; }
footer.site .links a { color: var(--ink-soft); font-size: 0.9rem; }
footer.site .links a:hover { color: var(--gold-deep); }
footer.site .bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* Legal pages */
.legal-page h2 { margin-top: 1.6em; }
.legal-page p, .legal-page li { color: var(--ink-soft); }
.legal-page .updated { color: var(--ink-soft); font-size: 0.9rem; font-style: italic; margin-bottom: 2.4em; }
.legal-page ul { padding-left: 1.2em; }

@media (max-width: 640px) {
  .nav { flex-direction: column; align-items: flex-start; gap: 14px; }
  footer.site .cols { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
