:root {
  --navy-950: #07111d;
  --navy-900: #0b1624;
  --navy-800: #10243a;
  --navy-700: #173550;
  --ink: #14202b;
  --muted: #627080;
  --line: #dce3ea;
  --soft: #f4f7f9;
  --white: #ffffff;
  --gold: #d5ad5c;
  --gold-light: #efd79b;
  --green: #1f9d63;
  --shadow: 0 20px 60px rgba(5, 19, 34, .12);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: var(--white);
  color: var(--navy-900);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}
.section { padding: 104px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--navy-950); color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220,227,234,.9);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { display: block; width: 250px; }
.primary-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 650; }
.primary-nav > a:not(.btn) { position: relative; }
.primary-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transition: right .2s ease;
}
.primary-nav > a:not(.btn):hover::after { right: 0; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--navy-900); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 116px 0 96px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-glow { position: absolute; border-radius: 999px; filter: blur(6px); opacity: .22; }
.hero-glow-a { width: 520px; height: 520px; right: -190px; top: -150px; background: var(--gold); }
.hero-glow-b { width: 400px; height: 400px; left: 22%; bottom: -300px; background: #4f7ea6; }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 72px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 12px;
  font-weight: 800;
}
.eyebrow-dark { color: #8b6a2f; }
h1, h2, h3 { margin-top: 0; line-height: 1.12; letter-spacing: -.025em; }
h1 { margin-bottom: 24px; font-size: clamp(48px, 6vw, 78px); max-width: 850px; }
h2 { margin-bottom: 20px; font-size: clamp(34px, 4.4vw, 54px); }
h3 { margin-bottom: 12px; font-size: 22px; }
p { margin-top: 0; }
.hero-lead { max-width: 750px; margin-bottom: 34px; color: #c9d5e0; font-size: clamp(18px, 2vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  font-size: 14px;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy-950); }
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost { border-color: rgba(255,255,255,.28); color: var(--white); background: rgba(255,255,255,.03); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-outline { border-color: var(--navy-900); color: var(--navy-900); }
.btn-sm { min-height: 42px; padding: 0 18px; }
.btn-full { width: 100%; border: 0; }
.btn-whatsapp { background: var(--green); color: var(--white); }

.hero-meta {
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.13);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 760px;
}
.hero-meta strong, .hero-meta span { display: block; }
.hero-meta strong { font-size: 15px; }
.hero-meta span { color: #93a4b3; font-size: 12px; margin-top: 3px; }

.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 30px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}
.hero-card-kicker { color: var(--gold-light); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 800; }
.check-list { list-style: none; padding: 0; margin: 26px 0 32px; }
.check-list li { position: relative; padding: 13px 0 13px 30px; border-bottom: 1px solid rgba(255,255,255,.09); color: #e4edf5; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-light); font-weight: 900; }
.hero-card-footer { display: flex; flex-direction: column; gap: 2px; }
.hero-card-footer span { color: #97a8b7; font-size: 12px; }
.hero-card-footer strong { font-size: 18px; }

.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { min-height: 74px; display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; }
.trust-grid span { padding: 12px 18px; text-align: center; font-size: 12px; font-weight: 800; color: #556372; text-transform: uppercase; letter-spacing: .08em; border-right: 1px solid var(--line); }
.trust-grid span:first-child { border-left: 1px solid var(--line); }

.two-col { display: grid; grid-template-columns: .8fr 1.2fr; gap: 96px; align-items: start; }
.prose { font-size: 18px; color: #4b5967; }
.prose > p { margin-bottom: 20px; }
.credential-card { margin-top: 34px; background: var(--soft); border: 1px solid var(--line); border-radius: 18px; padding: 26px; }
.credential-card dl { margin: 0; }
.credential-card dl > div { display: grid; grid-template-columns: 160px 1fr; gap: 24px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.credential-card dl > div:last-child { border-bottom: 0; }
.credential-card dt { color: var(--muted); font-size: 13px; font-weight: 700; }
.credential-card dd { margin: 0; color: var(--ink); font-weight: 700; }

.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading > p:last-child { color: var(--muted); font-size: 18px; }
.section-heading.light > p:last-child { color: #9fb0bf; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px; min-height: 290px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #c5d0db; }
.service-number { display: inline-flex; margin-bottom: 48px; color: #9a7432; font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.service-card p { color: var(--muted); margin-bottom: 0; }

.process-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.14); }
.process-grid li { padding: 34px 26px 12px 0; position: relative; }
.process-grid li::before { content: ""; position: absolute; top: -4px; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.process-grid span { display: inline-flex; color: var(--gold-light); font-size: 12px; font-weight: 900; letter-spacing: .12em; margin-bottom: 34px; }
.process-grid h3 { color: var(--white); }
.process-grid p { color: #9fb0bf; margin-bottom: 0; padding-right: 22px; }

.value-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.value-list { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 44px; }
.value-list article { border-top: 2px solid var(--line); padding-top: 22px; }
.value-list h3 { font-size: 19px; }
.value-list p { color: var(--muted); margin-bottom: 0; }

.contact-section { background: var(--navy-800); color: var(--white); padding: 104px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 80px; align-items: start; }
.contact-copy > p:not(.eyebrow) { max-width: 620px; color: #b5c4d2; font-size: 18px; }
.contact-details { margin: 36px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-details a, .contact-details div { padding: 19px 0; border-top: 1px solid rgba(255,255,255,.16); }
.contact-details span, .contact-details strong { display: block; }
.contact-details span { color: #8fa2b3; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; margin-bottom: 5px; }
.contact-details strong { font-size: 14px; line-height: 1.5; }
.contact-form { background: #fff; color: var(--ink); border-radius: var(--radius); padding: 34px; box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.contact-form h3 { font-size: 27px; }
.form-intro { color: var(--muted); font-size: 14px; }
.contact-form label { display: block; margin-top: 18px; }
.contact-form label > span { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 800; color: #4c5c6b; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid #ccd6df;
  border-radius: 10px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #927238; box-shadow: 0 0 0 3px rgba(213,173,92,.18); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-status { min-height: 24px; margin: 12px 0 0; font-size: 13px; color: #8b2b2b; }

.site-footer { background: #050c14; color: #afbdc9; padding: 62px 0 30px; }
.footer-top { display: flex; justify-content: space-between; gap: 60px; align-items: flex-start; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { margin: 16px 0 0; max-width: 420px; font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px 24px; max-width: 440px; justify-content: flex-end; font-size: 13px; font-weight: 650; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 26px; font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-disclaimer { margin-top: 24px; border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px; }
.footer-disclaimer p { margin: 0; color: #758594; font-size: 11px; line-height: 1.65; }

.legal-page { background: var(--soft); min-height: 100vh; }
.legal-header { background: var(--navy-950); padding: 24px 0; }
.legal-header .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.legal-header img { filter: brightness(0) invert(1); }
.legal-header a:last-child { color: var(--white); font-size: 14px; font-weight: 700; }
.legal-content { width: min(calc(100% - 40px), 900px); margin: 0 auto; padding: 80px 0 100px; }
.legal-content article { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: clamp(28px, 5vw, 58px); }
.legal-content h1 { color: var(--ink); font-size: clamp(38px, 5vw, 56px); }
.legal-content h2 { font-size: 24px; margin-top: 34px; }
.legal-content p, .legal-content li { color: #50606f; }

@media (max-width: 980px) {
  .primary-nav { position: fixed; inset: 78px 0 auto 0; padding: 24px 20px 30px; background: #fff; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 16px; transform: translateY(-130%); transition: transform .25s ease; box-shadow: 0 22px 40px rgba(0,0,0,.08); }
  .primary-nav.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .hero { padding-top: 90px; }
  .hero-grid, .two-col, .value-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 640px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; padding: 10px 0; }
  .trust-grid span { border: 0; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section, .contact-section { padding: 74px 0; }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 210px; }
  .primary-nav { top: 70px; }
  .hero { padding: 72px 0 66px; }
  .hero-grid { gap: 40px; }
  .hero-meta { grid-template-columns: 1fr; gap: 15px; }
  .hero-meta div { padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .cards-grid, .value-list, .process-grid, .contact-details { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-number { margin-bottom: 30px; }
  .credential-card dl > div { grid-template-columns: 1fr; gap: 4px; }
  .footer-top, .footer-bottom { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .contact-form { padding: 24px; }
}
