/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0d1b2a;
  --navy2:  #1a2e45;
  --gold:   #b8973a;
  --gold2:  #d4af55;
  --white:  #ffffff;
  --gray:   #f5f4f0;
  --text:   #2c2c2c;
  --muted:  #6b7280;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── Utilidades ───────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
}
.btn--primary  { background: var(--gold);  color: var(--navy); }
.btn--primary:hover { background: var(--gold2); }
.btn--outline  { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--navy); }
.btn--ghost    { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { border-color: var(--white); }
.btn--full     { width: 100%; text-align: center; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.section-title--light { color: var(--white); }
.section-sub  { color: var(--muted); max-width: 560px; margin-bottom: 48px; }
.section-sub--light { color: rgba(255,255,255,.75); }

/* ── Header ───────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  background: var(--navy);
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name   { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); }
.logo__suffix { font-size: .65rem; letter-spacing: .12em; color: var(--gold); text-transform: uppercase; }

.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .9rem; transition: color .2s; }
.nav a:hover { color: var(--gold); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,151,58,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner  { position: relative; max-width: 680px; }
.hero__label  { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero__title  {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero__sub    { color: rgba(255,255,255,.7); font-size: 1rem; max-width: 520px; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Áreas ────────────────────────────────────────── */
.areas { padding: 80px 0; background: var(--gray); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: transform .2s;
}
.card:hover { transform: translateY(-4px); }
.card__icon { font-size: 2rem; margin-bottom: 16px; }
.card h3    { font-family: var(--font-serif); font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.card p     { color: var(--muted); font-size: .9rem; }

/* ── Sobre ────────────────────────────────────────── */
.sobre { padding: 80px 0; }
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sobre__lista { list-style: none; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 20px; }
.sobre__lista li { display: flex; align-items: center; gap: 16px; }
.sobre__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  min-width: 72px;
  text-align: right;
}
.sobre__lista span:last-child { color: var(--muted); font-size: .9rem; }
.sobre p { color: var(--muted); font-size: .95rem; }

.sobre__card-destaque {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px 36px;
  border-left: 4px solid var(--gold);
}
.sobre__card-destaque p  { font-family: var(--font-serif); font-size: 1.25rem; color: var(--white); line-height: 1.5; }
.sobre__card-destaque cite { display: block; margin-top: 20px; color: var(--gold); font-style: normal; font-size: .85rem; }

/* ── Contato ──────────────────────────────────────── */
.contato { background: var(--navy2); padding: 80px 0; }
.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contato__infos { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.contato__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .95rem;
  transition: color .2s;
}
.contato__item:hover { color: var(--gold); }
.contato__item span  { font-size: 1.2rem; }

/* ── Form ─────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 12px; }
.form__input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
}
.form__input::placeholder { color: rgba(255,255,255,.35); }
.form__input option       { background: var(--navy2); color: var(--white); }
.form__input:focus        { border-color: var(--gold); }
.form__textarea           { resize: vertical; min-height: 100px; }

/* ── Footer ───────────────────────────────────────── */
.footer { background: var(--navy); padding: 32px 0; }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ── Responsivo ───────────────────────────────────── */
@media (max-width: 768px) {
  .nav { display: none; }
  .header__inner { gap: 16px; }

  .sobre__inner,
  .contato__inner { grid-template-columns: 1fr; gap: 40px; }

  .footer__inner { flex-direction: column; text-align: center; }
}
