:root {
  color-scheme: dark;
  --bg: #0d0d0d;
  --bg-deep: #080808;
  --surface: #151515;
  --surface-2: #1b1b1b;
  --text: #f5f0e8;
  --muted: #c8c0b0;
  --soft: #8f8778;
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --gold-deep: #8b6914;
  --green: #25d366;
  --border: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(201, 168, 76, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: rgba(201, 168, 76, 0.32);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.brand-title {
  display: block;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-subtitle {
  color: var(--soft);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 54%, var(--gold-deep));
  color: var(--bg-deep);
  box-shadow: 0 0 34px rgba(201, 168, 76, 0.24);
}

.button-outline {
  border-color: var(--border-gold);
  color: var(--gold-light);
}

.button-whatsapp {
  background: var(--green);
  color: white;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0), var(--bg));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.86fr;
  gap: 64px;
  align-items: center;
  padding: 78px 0 96px;
}

.hero-copy h1 {
  margin: 0 0 24px;
  max-width: 780px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 650px;
  margin: 0 0 32px;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.32;
}

.trust-notice {
  max-width: 760px;
  margin: 0 0 28px;
  padding: 18px 20px;
  border: 1px solid rgba(201, 168, 76, 0.24);
  border-left: 4px solid var(--gold);
  background: rgba(201, 168, 76, 0.08);
  color: var(--muted);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  position: relative;
  isolation: isolate;
}

.portrait-frame {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border-gold);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.credential-card {
  margin-top: -50px;
  margin-left: auto;
  width: min(92%, 430px);
  position: relative;
  z-index: 2;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid var(--border-gold);
  background: rgba(10, 10, 10, 0.94);
  box-shadow: var(--shadow);
}

.credential-card strong {
  display: block;
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.credential-card span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--surface);
}

.section-title {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.section-lead {
  max-width: 760px;
  margin: 0 0 44px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.identity-box,
.legal-box,
.service-card,
.step,
.faq-item {
  border: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: 14px;
}

.identity-box,
.legal-box {
  padding: 30px;
}

.identity-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.identity-list div {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.identity-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.identity-list dt {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.identity-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.legal-box {
  border-color: var(--border-gold);
}

.legal-box h3 {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
}

.legal-box p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  min-height: 184px;
  padding: 26px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step {
  padding: 28px;
  text-align: center;
}

.step-number {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--bg-deep);
  font-weight: 800;
}

.step h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  align-items: center;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 18px;
}

.quote {
  margin: 34px 0 0;
  padding-left: 22px;
  border-left: 4px solid var(--gold);
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  font-style: italic;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 22px 24px;
}

.faq-item strong {
  display: block;
  margin-bottom: 8px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-block: 1px solid var(--border-gold);
  background:
    linear-gradient(rgba(8, 8, 8, 0.82), rgba(8, 8, 8, 0.86)),
    url("https://images.unsplash.com/photo-1589829085413-56de8ae18c73?q=80&w=2000&auto=format&fit=crop") center / cover;
}

.cta-band .section-title,
.cta-band .section-lead {
  margin-inline: auto;
}

.footer {
  padding: 72px 0 34px;
  background: var(--bg-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 36px;
  margin-bottom: 48px;
}

.footer h3,
.footer h4 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
}

.footer h3 {
  color: var(--gold);
  font-size: 1.35rem;
}

.footer p,
.footer li {
  color: var(--muted);
  line-height: 1.6;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 0.82rem;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.35);
}

.legal-page {
  padding: 80px 0;
}

.legal-page article {
  max-width: 880px;
}

.legal-page h1 {
  margin: 0 0 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
}

.legal-page h2 {
  margin: 38px 0 12px;
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-page ul {
  padding-left: 22px;
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-grid,
  .split,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
    padding-top: 52px;
  }

  .grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: 3.15rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .footer-grid {
    gap: 26px;
  }

  .whatsapp-float span {
    display: none;
  }
}
