:root {
  --navy: #0d2b6b;
  --blue: #1253c0;
  --yellow: #ffc107;
  --red: #e53935;
  --green: #10b981;
  --text: #111827;
  --muted: #374151;
  --gray: #6b7280;
  --line: #d9e3f0;
  --soft: #f1f3f6;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(13, 43, 107, 0.08);
  --shadow-strong: 0 18px 45px rgba(13, 43, 107, 0.14);
  --font: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.site-header.scrolled { box-shadow: 0 10px 24px rgba(13, 43, 107, 0.08); }
.top-alert {
  background: linear-gradient(90deg, var(--navy), var(--blue));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 7px 12px;
}
.header-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand img { width: 220px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 25px; }
.nav-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  padding: 28px 0 24px;
  border-bottom: 3px solid transparent;
}
.nav-link:hover, .nav-link.active { color: var(--blue); border-bottom-color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 11px;
}
.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding: 18px 20px 24px;
  background: #fff;
}
.mobile-panel.open { display: grid; gap: 12px; }
.mobile-panel .nav-link {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 12px;
  min-height: 46px;
  padding: 12px 20px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn img { width: 19px; height: 19px; object-fit: contain; }
.btn:hover { transform: translateY(-2px); }
.btn:disabled { cursor: wait; opacity: 0.7; transform: none; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: 0 9px 18px rgba(18, 83, 192, 0.25);
}
.btn-secondary { color: var(--blue); background: #fff; border: 1.5px solid var(--blue); }
.btn-whatsapp { color: #fff; background: var(--green); box-shadow: 0 9px 18px rgba(16, 185, 129, 0.25); }
.btn-light { background: #fff; color: var(--blue); }

.hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.88) 47%, rgba(241,246,255,0.72) 100%),
    radial-gradient(circle at 70% 30%, rgba(18,83,192,0.12), transparent 36%);
  padding: 64px 0 30px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  background: rgba(18, 83, 192, 0.08);
  border: 1px solid rgba(18, 83, 192, 0.12);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}
.eyebrow img { width: 20px; height: 20px; }
h1, h2, h3, p { margin-top: 0; }
.hero h1, .page-hero h1 {
  color: var(--navy);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 18px;
  font-weight: 800;
}
.hero p, .lead, .page-hero p {
  color: var(--muted);
  font-size: 17px;
  max-width: 680px;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin: 28px 0 18px; }
.hero-actions.centered { justify-content: center; }
.disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 520px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
}
.disclaimer img { width: 22px; height: 22px; }
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 800;
}
.badge-row img { width: 18px; height: 18px; }

.hero-art {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.hero-photo {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  filter: saturate(0.98);
  mask-image: linear-gradient(90deg, transparent 0%, black 16%, black 100%);
}
.document-stack {
  position: absolute;
  left: 3%;
  bottom: 6%;
  display: grid;
  grid-template-columns: 130px 155px 74px;
  align-items: end;
  gap: 10px;
}
.passport-card, .paper-card, .stamp-mark {
  box-shadow: 0 18px 35px rgba(13, 43, 107, 0.22);
  transform: rotate(-5deg);
}
.passport-card {
  min-height: 170px;
  border-radius: 14px;
  padding: 22px 14px;
  color: var(--yellow);
  background: linear-gradient(145deg, #0a2158, #0d2b6b);
  border: 2px solid rgba(255,255,255,0.25);
  text-align: center;
}
.passport-card span { display: block; text-transform: uppercase; font-size: 9px; font-weight: 800; margin-bottom: 42px; }
.passport-card strong { text-transform: uppercase; font-size: 16px; }
.paper-card {
  min-height: 155px;
  background: #fff7dc;
  border: 1px solid #ead89a;
  border-radius: 10px;
  padding: 24px 14px;
  color: var(--navy);
  text-align: center;
  transform: rotate(2deg);
}
.paper-card span { display: block; text-transform: uppercase; font-size: 13px; margin-bottom: 26px; }
.paper-card strong {
  display: inline-block;
  color: #15803d;
  border: 4px solid #15803d;
  border-radius: 4px;
  text-transform: uppercase;
  padding: 3px 8px;
  transform: rotate(-4deg);
}
.stamp-mark {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue), var(--navy));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 24px;
}

.trust-strip { margin-top: -10px; padding-bottom: 24px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mini-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px;
  border-right: 1px solid var(--line);
}
.mini-card:last-child { border-right: 0; }
.mini-card > img { width: 46px; height: 46px; flex: 0 0 auto; }
.mini-card h3 { color: var(--navy); font-size: 15px; margin-bottom: 3px; }
.mini-card p { color: var(--muted); font-size: 13px; margin: 0; }

.metrics-section {
  padding: 26px 0;
  background: #fff;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.metrics-grid article, .admin-metric {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #f6f9ff);
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(13, 43, 107, 0.05);
}
.metrics-grid strong, .admin-metric strong {
  display: block;
  color: var(--blue);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 8px;
}
.metrics-grid span, .admin-metric span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.section { padding: 70px 0; }
.section-soft { background: linear-gradient(180deg, #f6f9ff, #eef4ff); }
.section-title { text-align: center; margin-bottom: 34px; }
.section-title.left { text-align: left; }
.section-title span {
  display: inline-block;
  width: 82px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow) 0 33%, var(--blue) 33% 66%, var(--red) 66%);
  margin-bottom: 10px;
}
.section-title h2 {
  color: var(--navy);
  font-size: clamp(28px, 3vw, 39px);
  line-height: 1.1;
  margin-bottom: 10px;
}
.section-title p { color: var(--muted); margin-left: auto; margin-right: auto; max-width: 680px; }

.services-row, .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card, .proof-card, .contact-card, .detail-panel, .tracking-card, .lead-form, .side-benefits article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.service-card {
  padding: 26px 22px;
  min-height: 238px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-strong); }
.card-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(18, 83, 192, 0.08);
  margin-bottom: 15px;
}
.card-icon img { width: 38px; height: 38px; }
.card-icon.big { width: 76px; height: 76px; }
.card-icon.big img { width: 46px; height: 46px; }
.service-card h3 { color: var(--navy); font-size: 19px; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 14px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}
.text-link img { width: 17px; height: 17px; }
.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.comparison-table {
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.comparison-table h2 {
  color: var(--navy);
  padding: 24px 24px 8px;
  margin: 0;
}
.comparison-table > div {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  gap: 16px;
  padding: 15px 24px;
  border-top: 1px solid var(--line);
  align-items: center;
}
.comparison-table .comparison-head {
  color: #fff;
  background: var(--navy);
  font-weight: 800;
}
.comparison-table div:not(.comparison-head) span:first-child {
  color: var(--navy);
  font-weight: 800;
}
.comparison-table div:not(.comparison-head) span {
  color: var(--muted);
  font-size: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.steps.compact { grid-template-columns: repeat(4, 1fr); }
.step {
  position: relative;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 28px 16px 22px;
  box-shadow: 0 8px 18px rgba(13, 43, 107, 0.05);
}
.step b {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
}
.step h3 { color: var(--navy); font-size: 16px; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: 13px; margin: 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
}
.check-list { display: grid; gap: 12px; margin-top: 20px; }
.check-list p { display: flex; align-items: flex-start; gap: 10px; margin: 0; color: var(--muted); }
.check-list img { width: 22px; height: 22px; flex: 0 0 auto; }
.negative-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.negative-list p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  border: 1px solid #f3c8c8;
  background: #fff8f8;
  border-radius: 12px;
  padding: 13px;
}
.negative-list img {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}
.map-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  min-height: 310px;
  padding: 34px;
  background: linear-gradient(145deg, #f4f8ff, #fff);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}
.map-panel > img { width: 110px; height: 110px; margin-bottom: 20px; }
.map-panel h3 { color: var(--navy); font-size: 24px; }
.map-panel p { color: var(--muted); }
.info-panel, .legal-warning {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 28px;
}
.info-panel p {
  color: var(--muted);
  margin: 18px 0 0;
}
.image-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.image-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}
.legal-warning {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-left: 5px solid var(--yellow);
}
.legal-warning > img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}
.legal-warning h2 { color: var(--navy); margin-bottom: 6px; }
.legal-warning p { color: var(--muted); margin: 0; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.process-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 26px;
  box-shadow: var(--shadow);
}
.process-card > img { width: 52px; height: 52px; margin-bottom: 14px; }
.process-card h2 { color: var(--navy); font-size: 21px; margin-bottom: 8px; }
.process-card p { color: var(--muted); margin: 0; }

.proof-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 22px;
}
.proof-card { padding: 28px; }
.proof-card.large {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}
.proof-card.large h2 { font-size: 30px; }
.proof-card.large p { color: rgba(255,255,255,0.84); }
.proof-card > img { width: 54px; height: 54px; margin-bottom: 14px; }
.proof-card h3 { color: var(--navy); }
.proof-card p { color: var(--muted); }

.form-band {
  background: linear-gradient(135deg, #08245e, #0d2b6b);
  color: #fff;
}
.form-band .section-title h2, .form-band .lead { color: #fff; }
.form-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: start;
}
.form-layout.wide { grid-template-columns: 0.82fr 1.18fr; }
.support-box {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  color: #fff;
}
.support-box img { width: 32px; height: 32px; filter: brightness(0) invert(1); }
.lead-form { padding: 26px; color: var(--text); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label { display: grid; gap: 7px; color: var(--navy); font-size: 13px; font-weight: 800; }
.span-2 { grid-column: span 2; }
input, textarea, select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--text);
  background: #fff;
  outline: none;
}
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18, 83, 192, 0.1); }
.check-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  color: var(--muted);
  font-weight: 600;
}
.check-line input { width: auto; margin-top: 3px; accent-color: var(--blue); }
.form-button { width: 100%; }
.form-note { color: var(--gray); font-size: 12px; margin: 13px 0 0; }
.form-status {
  border: 1px solid rgba(13, 43, 107, 0.18);
  border-radius: 10px;
  background: rgba(13, 43, 107, 0.06);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  margin: 12px 0 0;
  padding: 10px 12px;
}
.form-status.error {
  border-color: rgba(185, 28, 28, 0.25);
  background: rgba(185, 28, 28, 0.06);
  color: #b91c1c;
}
.hp-field {
  height: 0;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}
.turnstile-slot { min-height: 0; }
.turnstile-slot iframe { max-width: 100%; }
.side-benefits { display: grid; gap: 14px; }
.side-benefits article { padding: 20px; }
.side-benefits img { width: 62px; height: auto; margin-bottom: 10px; }

.final-cta, .mini-cta { background: #fff; padding: 18px 0 40px; }
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #062057);
  border-radius: 18px;
  padding: 28px 34px;
  box-shadow: var(--shadow-strong);
}
.cta-panel > img { width: 58px; height: 58px; flex: 0 0 auto; filter: brightness(0) invert(1); }
.cta-panel h2 { margin-bottom: 4px; font-size: clamp(24px, 3vw, 36px); }
.cta-panel p { color: rgba(255,255,255,0.82); margin: 0; }

.page-hero {
  padding: 64px 0 58px;
  background: linear-gradient(145deg, #f5f8ff, #fff);
  border-bottom: 1px solid var(--line);
}
.page-hero p { font-size: 18px; }
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}
.filters button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  padding: 10px 16px;
  cursor: pointer;
}
.filters button.active { background: var(--blue); color: #fff; border-color: var(--blue); }

.detail-hero { padding: 58px 0; background: linear-gradient(145deg, #f5f8ff, #fff); }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 0.52fr;
  gap: 34px;
  align-items: start;
}
.breadcrumb { color: var(--gray); font-size: 13px; margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumb a { color: var(--blue); font-weight: 800; }
.detail-title { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; }
.detail-title h1 { color: var(--navy); font-size: clamp(31px, 4vw, 48px); line-height: 1.05; margin: 0; }
.detail-panel { padding: 24px; display: grid; gap: 16px; }
.detail-panel div { display: grid; gap: 5px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.detail-panel span { color: var(--gray); font-size: 12px; text-transform: uppercase; font-weight: 800; }
.detail-panel strong { color: var(--navy); font-size: 18px; }
.detail-content { display: grid; gap: 34px; }
.detail-content article { border-bottom: 1px solid var(--line); padding-bottom: 28px; }
.detail-content article:last-child { border-bottom: 0; }
.detail-content h2 { color: var(--navy); font-size: 28px; }

.faq-list { display: grid; gap: 12px; }
.faq-groups {
  display: grid;
  gap: 34px;
}
.faq-group {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #f8fbff);
  box-shadow: var(--shadow);
  padding: 24px;
}
.faq-group h2 {
  color: var(--navy);
  font-size: 26px;
  margin-bottom: 18px;
}
.faq {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 800;
}
.faq summary img { width: 18px; height: 18px; }
.faq p { color: var(--muted); margin: 0; padding: 0 20px 18px; }
.narrow { max-width: 820px; }

.tracking-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: start;
}
.tracking-card { padding: 24px; display: grid; gap: 15px; }
.tracking-result[hidden], .tracking-empty[hidden] { display: none; }
.tracking-empty {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border: 1px dashed #b8c8e0;
  border-radius: 20px;
  background: linear-gradient(145deg, #f8fbff, #fff);
  padding: 34px;
}
.tracking-empty img {
  width: 70px;
  height: 70px;
  margin-bottom: 14px;
}
.tracking-empty h2 { color: var(--navy); }
.tracking-empty p { color: var(--muted); max-width: 440px; }
.tracking-result {
  display: grid;
  gap: 24px;
}
.request-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.request-summary div {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 8px 18px rgba(13, 43, 107, 0.05);
}
.request-summary span {
  display: block;
  color: var(--gray);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 5px;
}
.request-summary strong {
  color: var(--navy);
  font-size: 15px;
}
.timeline { display: grid; gap: 0; }
.timeline-item {
  display: flex;
  gap: 16px;
  padding: 0 0 26px;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.timeline-item > span {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  flex: 0 0 auto;
}
.timeline-item > span img { width: 24px; height: 24px; }
.timeline-item.done > span { background: rgba(16,185,129,0.12); border-color: rgba(16,185,129,0.3); }
.timeline-item.active > span { background: rgba(18,83,192,0.12); border-color: rgba(18,83,192,0.28); }
.timeline h3 { color: var(--navy); margin: 5px 0 3px; }
.timeline p { color: var(--muted); margin: 0; }

.confirmation-page { min-height: 72vh; display: grid; place-items: center; padding: 70px 0; background: linear-gradient(145deg, #f5f8ff, #fff); }
.confirm-card {
  max-width: 720px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 38px;
  box-shadow: var(--shadow-strong);
}
.success-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(16,185,129,0.12);
}
.success-icon img { width: 46px; height: 46px; }
.confirm-card h1 { color: var(--navy); font-size: 34px; }
.confirm-card > p { color: var(--muted); max-width: 560px; margin: 0 auto 24px; }
.summary {
  max-width: 460px;
  margin: 0 auto 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
}
.summary p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}
.summary p:last-child { border-bottom: 0; }
.summary span { color: var(--gray); }
.summary strong { color: var(--navy); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact-card { padding: 28px; }
.contact-card > img { width: 54px; height: 54px; margin-bottom: 14px; }
.contact-card h2 { color: var(--navy); }
.contact-card p { color: var(--muted); }
.legal-copy {
  color: var(--muted);
  font-size: 17px;
  display: grid;
  gap: 14px;
}
.legal-copy h2 {
  color: var(--navy);
  font-size: 22px;
  margin-top: 28px;
  margin-bottom: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.legal-copy h2:first-child { border-top: 0; margin-top: 0; padding-top: 0; }
.legal-copy ul { padding-left: 22px; margin: 0; display: grid; gap: 6px; }
.legal-copy li { color: var(--muted); line-height: 1.6; }
.legal-copy .legal-update {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--gray);
  font-size: 13px;
  font-style: italic;
}

.cookie-table {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin: 8px 0;
}
.cookie-row {
  display: grid;
  grid-template-columns: 1fr 0.6fr 1.6fr 0.6fr;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.cookie-row:last-child { border-bottom: 0; }
.cookie-row.head {
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}
.cookie-row span { color: var(--muted); }
.cookie-row.head span { color: #fff; }

.professional-photo {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.professional-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
}

.professional-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, #f8fbff, #fff);
  padding: 22px;
  margin: 18px 0;
  box-shadow: 0 8px 18px rgba(13, 43, 107, 0.05);
}
.professional-card strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 4px;
}
.professional-card > span {
  display: block;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}
.professional-card p {
  color: var(--muted);
  margin: 0 0 8px;
}
.professional-card.featured {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px;
}
.professional-card.featured strong { font-size: 24px; }

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.contact-info-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.contact-info-grid article > img {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
}
.contact-info-grid h3 {
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 6px;
}
.contact-info-grid p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  word-break: break-word;
}
.contact-info-grid a { color: var(--blue); font-weight: 700; }

.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}
.admin-panel {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 22px;
  align-items: start;
}
.admin-table, .admin-panel aside {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.admin-table > div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.9fr 0.7fr 0.9fr;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.admin-table > div:last-child { border-bottom: 0; }
.admin-head {
  color: #fff;
  background: var(--navy);
  font-weight: 800;
}
.admin-table div:not(.admin-head) span:first-child {
  color: var(--blue);
  font-weight: 800;
}
.admin-table div:not(.admin-head) span { color: var(--muted); font-size: 14px; }
.admin-table select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  font: inherit;
  padding: 8px 10px;
}
.admin-panel aside { padding: 24px; }
.admin-panel aside h2 { color: var(--navy); }
.admin-panel aside p { color: var(--muted); }

.footer {
  color: rgba(255,255,255,0.72);
  background: linear-gradient(135deg, #061b4d, var(--navy));
  padding: 48px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 30px;
}
.footer-logo { width: 210px; margin-bottom: 16px; }
.footer p { color: rgba(255,255,255,0.72); }
.footer h3 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.footer a, .footer span { display: block; margin-bottom: 9px; font-size: 14px; }
.footer a:hover { color: var(--yellow); }
.footer-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 9px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.legal-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
}
.legal-row span:last-child { display: flex; gap: 18px; flex-wrap: wrap; }

.process-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.process-time {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  background: rgba(59, 130, 246, 0.08);
  padding: 4px 10px;
  border-radius: 8px;
}

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
}
.whatsapp-float {
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.38);
  cursor: pointer;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float.active { transform: rotate(45deg); background: #d44; }
.whatsapp-float img { width: 34px; height: 34px; filter: brightness(0) invert(1); }
.wa-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 340px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  animation: waSlideUp 0.25s ease;
}
@keyframes waSlideUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.wa-panel[hidden] { display: none; }
.wa-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  background: var(--green);
  color: #fff;
}
.wa-panel-header strong { font-size: 15px; }
.wa-panel-header button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.wa-panel-desc {
  padding: 14px 18px 8px;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.wa-services {
  display: grid;
  gap: 6px;
  padding: 8px 18px 18px;
}
.wa-service-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.wa-service-btn:hover {
  background: rgba(16, 185, 129, 0.06);
  border-color: var(--green);
}
.wa-service-btn img { width: 22px; height: 22px; }
.wa-service-btn.wa-general {
  background: rgba(16, 185, 129, 0.06);
  border-color: var(--green);
  color: var(--green);
  font-weight: 800;
}
.wa-service-btn.wa-general:hover { background: rgba(16, 185, 129, 0.12); }
.mobile-bottom-cta { display: none; }
.cookie-banner {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 70;
  max-width: 430px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow-strong);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
.cookie-banner button {
  border: 0;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .menu-button { display: grid; place-items: center; }
  .header-actions .btn-primary { display: none; }
  .hero-grid, .split, .form-layout, .form-layout.wide, .detail-grid, .tracking-layout {
    grid-template-columns: 1fr;
  }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-row, .services-grid, .proof-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .steps.compact { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .metrics-grid, .admin-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand img { width: 176px; }
  .header-row { min-height: 68px; }
  .top-alert { font-size: 11px; line-height: 1.35; }
  .hero { padding-top: 36px; }
  .hero-grid { gap: 24px; }
  .hero-copy { order: 1; }
  .hero-art { order: 2; min-height: 330px; }
  .hero-photo { min-height: 330px; mask-image: linear-gradient(180deg, black 0%, black 72%, transparent 100%); }
  .document-stack {
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%) scale(0.72);
    transform-origin: bottom center;
  }
  .hero-actions, .cta-panel, .legal-row {
    align-items: stretch;
    flex-direction: column;
  }
  .btn { width: 100%; }
  .disclaimer { align-items: flex-start; }
  .trust-grid, .services-row, .services-grid, .steps, .steps.compact, .proof-grid, .contact-grid, .footer-grid, .process-grid, .metrics-grid, .admin-grid, .request-summary, .negative-list, .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .cookie-row { grid-template-columns: 1fr; gap: 4px; padding: 10px 14px; }
  .cookie-row.head { display: none; }
  .professional-photo img { height: 280px; }
  .comparison-table { overflow-x: auto; }
  .comparison-table > div {
    min-width: 680px;
  }
  .admin-table { overflow-x: auto; }
  .admin-table > div { min-width: 680px; }
  .mini-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .mini-card:last-child { border-bottom: 0; }
  .section { padding: 52px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .lead-form { padding: 20px; }
  .cta-panel { text-align: center; padding: 26px 20px; }
  .cta-panel > img { margin: 0 auto; }
  .detail-title { align-items: flex-start; flex-direction: column; }
  .summary p { flex-direction: column; gap: 3px; }
  .whatsapp-widget { right: 16px; bottom: 16px; }
  .whatsapp-float { width: 56px; height: 56px; }
  .wa-panel { width: calc(100vw - 44px); right: -4px; }
  .mobile-bottom-cta {
    position: fixed;
    left: 12px;
    right: 84px;
    bottom: 16px;
    z-index: 61;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .mobile-bottom-cta a {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 12px;
    color: #fff;
    background: var(--navy);
    font-size: 13px;
    font-weight: 800;
    box-shadow: var(--shadow);
  }
  .mobile-bottom-cta a:last-child { background: var(--green); }
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 82px;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
  }
}
