﻿@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap");


:root {
  --night: #0d1117;
  --night-soft: #111822;
  --panel: #1a222d;
  --panel-deep: #151d27;
  --white: #f3f5f7;
  --text: #e6e8eb;
  --muted: #929aa5;
  --gold: #c99a5b;
  --gold-soft: #d9b67e;
  --line: rgba(255, 255, 255, 0.09);
  --green: #3de28b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--night);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  inset: 78px 0 0;
  z-index: -1;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(45deg, transparent 47%, rgba(126, 143, 160, .12) 49%, transparent 51%),
    linear-gradient(-45deg, transparent 47%, rgba(126, 143, 160, .12) 49%, transparent 51%);
  background-size: 82px 82px;
  background-position: 0 0, 41px 41px;
}
a { color: inherit; }

.site-header {
  min-height: 80px;
  padding: 0 max(5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 17, 23, .92);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: baseline; gap: 8px; text-decoration: none; white-space: nowrap; }
.brand-main { color: var(--white); font-size: 31px; font-weight: 600; line-height: 1; letter-spacing: .035em; }
.brand-sub { color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 21px; font-weight: 600; font-style: italic; line-height: 1; }
.header-location { color: #858d98; font-size: 10px; letter-spacing: .27em; }
.header-location strong { color: var(--gold); font-weight: 600; }

.hero {
  min-height: 520px;
  padding: 78px 24px 70px;
  display: grid;
  place-items: center;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.hero-copy { width: min(100%, 980px); }
.eyebrow {
  display: inline-block;
  border: 1px solid rgba(201,154,91,.28);
  background: rgba(201,154,91,.06);
  color: var(--gold-soft);
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .31em;
  margin-bottom: 28px;
}
h1 {
  max-width: 930px;
  margin: 0 auto;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 5.2vw, 68px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.015em;
}
h1 em { color: var(--gold); font-weight: 600; }
.hero-lead {
  max-width: 690px;
  margin: 25px auto 0;
  color: #a4abb4;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(201,154,91,.46);
  border-radius: 0;
  color: var(--gold-soft);
  background: rgba(201,154,91,.05);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.button:hover { color: var(--white); border-color: var(--gold); background: rgba(201,154,91,.11); }
.text-link { color: #9fa6af; font-size: 11px; letter-spacing: .14em; text-decoration: none; text-transform: uppercase; }
.text-link:hover { color: var(--gold-soft); }
.verification-date { margin: 29px auto 0; color: #68717d; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }

.trust-strip {
  min-height: 63px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6vw;
  background: var(--night-soft);
  border-bottom: 1px solid var(--line);
  color: #838c98;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.trust-strip span::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px rgba(61,226,139,.6); }

.section { padding: 92px max(5vw, 32px); }
.section-heading {
  max-width: 1120px;
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: end;
}
.section-label, .provider-tag {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .29em;
  text-transform: uppercase;
}
.section-heading h2, .checklist h2, .sources h2 {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.01em;
}
.section-heading > p { margin: 0; color: #929aa5; font-size: 13px; font-weight: 300; line-height: 1.75; }

.alternatives { background: rgba(13,17,23,.5); }
.route-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.route-card {
  min-height: 415px;
  padding: 30px 30px 26px;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  scroll-margin-top: 105px;
  transition: transform .2s ease, border-color .2s ease;
}
.route-card:hover { transform: translateY(-3px); border-color: rgba(201,154,91,.35); }
.route-number { color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 13px; font-weight: 600; letter-spacing: .25em; }
.route-card h3 {
  min-height: 58px;
  margin: 22px 0 20px;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
}
dl, dd { margin: 0; }
.route-card dl { border-top: 1px solid var(--line); }
.route-card dl div { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.055); }
.route-card dt { margin-bottom: 3px; color: #717a86; font-size: 8px; font-weight: 500; letter-spacing: .2em; }
.route-card dd { color: #aab0b8; font-size: 11px; font-weight: 300; line-height: 1.5; }
.route-note { margin: auto 0 0; padding-top: 18px; color: #8e97a2; font-size: 10px; line-height: 1.6; }

.providers { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(11,15,21,.72); }
.provider-list {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.provider-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
}
.provider-main { padding: 30px 30px 24px; }
.provider-tag { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.provider-tag::after { content: "â— ACTIVO"; color: #7f8994; font-family: "Inter", sans-serif; font-size: 8px; font-weight: 400; letter-spacing: .18em; }
.provider-main h3 { margin: 22px 0 14px; color: var(--white); font-family: "Cormorant Garamond", Georgia, serif; font-size: 28px; font-weight: 600; line-height: 1.05; }
.provider-summary { color: #a2a9b2; font-size: 12px; font-weight: 300; line-height: 1.75; }
.provider-fit { color: #848e9a; font-size: 10px; line-height: 1.55; }
.provider-fit strong { color: #b9bfc7; font-weight: 500; }
.provider-proof { margin-top: auto; padding: 23px 30px 28px; border-top: 1px solid var(--line); }
.registry-badge { display: inline-block; color: var(--gold-soft); font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.registry-badge::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(61,226,139,.55); }
.provider-proof p { color: #7f8994; font-size: 10px; line-height: 1.6; }
.provider-links { display: flex; flex-direction: column; gap: 10px; margin-top: 17px; }
.provider-links a { color: var(--gold-soft); font-size: 9px; font-weight: 500; letter-spacing: .16em; text-decoration: none; text-transform: uppercase; }
.provider-links a:hover { color: var(--white); }
.clarification {
  width: min(1120px, 100%);
  margin: 28px auto 0;
  padding: 25px 28px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  background: var(--panel-deep);
  border: 1px solid var(--line);
}
.clarification-icon { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid rgba(201,154,91,.42); color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 17px; }
.clarification h3 { margin: 0 0 5px; color: var(--white); font-family: "Cormorant Garamond", serif; font-size: 20px; font-weight: 600; }
.clarification p { margin: 0; color: #8c95a0; font-size: 11px; line-height: 1.65; }

.checklist {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 90px;
  background: var(--night-soft);
  border-bottom: 1px solid var(--line);
}
.checklist-intro { align-self: start; }
.checklist-intro > p:not(.section-label) { max-width: 440px; color: #929aa5; font-size: 13px; font-weight: 300; line-height: 1.75; }
.checklist .button { margin-top: 14px; }
.question-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.question-list li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.question-list li > span { color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 12px; letter-spacing: .16em; }
.question-list p { margin: 0; color: #969ea8; font-size: 12px; font-weight: 300; line-height: 1.65; }
.question-list strong { color: #cbd0d6; font-weight: 500; }

.sources {
  padding: 74px max(5vw, 32px);
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 90px;
  background: #0f151e;
  border-bottom: 1px solid var(--line);
}
.source-links { border-top: 1px solid var(--line); }
.source-links a { display: flex; justify-content: space-between; gap: 25px; padding: 15px 3px; border-bottom: 1px solid var(--line); color: #8f98a3; text-decoration: none; font-size: 10px; letter-spacing: .08em; }
.source-links a:hover span { color: var(--gold-soft); }
.source-links strong { min-width: 130px; color: #c2c8cf; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }
.source-links span { text-align: right; }

footer {
  padding: 35px max(5vw, 32px);
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
  align-items: center;
  background: var(--night-soft);
}
.footer-brand strong { display: block; color: var(--white); font-size: 20px; font-weight: 600; letter-spacing: .06em; }
.footer-brand small { display: block; color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 15px; font-style: italic; }
.legal { margin: 0; color: #68727e; font-size: 8px; line-height: 1.7; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@media (max-width: 980px) {
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .route-grid, .provider-list { grid-template-columns: repeat(2, 1fr); }
  .checklist { grid-template-columns: 1fr; gap: 48px; }
  .sources { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 680px) {
  .site-header { min-height: 70px; padding: 0 20px; }
  .brand-main { font-size: 25px; }
  .brand-sub { font-size: 16px; }
  .header-location { display: none; }
  .hero { min-height: 500px; padding: 62px 21px 55px; }
  h1 { font-size: 45px; }
  .hero-lead { font-size: 14px; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .trust-strip { align-items: flex-start; flex-direction: column; gap: 10px; padding: 18px 22px; }
  .section { padding: 70px 20px; }
  .route-grid, .provider-list { grid-template-columns: 1fr; }
  .provider-card { min-height: auto; }
  .clarification { grid-template-columns: 1fr; }
  .sources { padding: 65px 20px; }
  .source-links a { flex-direction: column; gap: 4px; }
  .source-links span { text-align: left; }
  footer { padding: 35px 20px; grid-template-columns: 1fr; gap: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .route-card { transition: none; }
}

