:root {
  --af-navy: #0a2540;
  --af-blue: #004080;
  --af-blue-soft: #e8f0fc;
  --af-bg: #f5f5f7;
  --af-surface: #ffffff;
  --af-text: #1d1d1f;
  --af-muted: #6e6e73;
  --af-border: rgba(0, 0, 0, .08);
  --wa: #25d366;
  --wa-hover: #1fb855;
  --radius-sm: 12px;
  --radius-lg: 20px;
  --radius-pill: 980px;
  --shadow-sm: 0 2px 16px rgba(10, 37, 64, .06);
  --shadow-md: 0 12px 40px rgba(10, 37, 64, .10);
  --max: 1080px;
  --header-h: 72px;
  --af-section-pad-y: clamp(2.75rem, 6vw, 4rem);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .arc-dots { animation: none !important; }
  .hero-slide { transition: none; }
  .review-track, .logo-track { animation: none !important; }
}
body {
  margin: 0;
  color: var(--af-text);
  background: var(--af-surface);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--af-section-pad-y);
}
img { max-width: 100%; display: block; }
a { color: var(--af-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(var(--max), calc(100% - 2.5rem)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--af-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  line-height: 1.15;
  color: var(--af-blue);
  text-decoration: none;
  overflow: visible;
}
.logo:hover { text-decoration: none; color: var(--af-blue); }
.logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.site-nav { display: none; gap: 1.25rem; align-items: center; }
.site-nav a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--af-text);
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.site-nav a:hover { color: var(--af-blue); text-decoration: none; }
@media (min-width: 1100px) { .site-nav { display: flex; } }
.header-tools { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.flag-menu-btn .flag,
.flag-menu-panel .flag { width: 1.35rem; height: .9rem; border-radius: 2px; flex: 0 0 auto; }
.flag-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--af-border);
  background: #fff;
  color: #0a2540;
  border-radius: 999px;
  padding: .28rem;
  cursor: pointer;
}
.flag-menu-btn .flag { width: 1.7rem; height: 1.15rem; }
.flag-menu-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 120;
  min-width: 190px;
  background: #fff;
  color: #0a2540;
  border: 1px solid rgba(0, 64, 128, .2);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: .35rem;
}
.flag-menu-panel button {
  display: flex;
  align-items: center;
  gap: .45rem;
  width: 100%;
  border: 0;
  background: transparent;
  color: #0a2540;
  font: 700 .88rem/1.2 inherit;
  text-align: left;
  padding: .55rem .6rem;
  border-radius: 8px;
  cursor: pointer;
}
.flag-menu-panel button:hover,
.flag-menu-panel button.is-on { background: #e8f0fc; color: #004080; }
@media (max-width: 1099px) {
  .site-nav { display: flex; }
  .site-nav > a { display: none; }
}
.cur-toggle {
  display: inline-flex;
  background: var(--af-surface);
  border: 1px solid var(--af-border);
  border-radius: var(--radius-pill);
  padding: 2px;
}
.cur-toggle button {
  border: 0;
  background: transparent;
  color: var(--af-navy);
  cursor: pointer;
  font: 700 12px/1 inherit;
  padding: .4rem .7rem;
  border-radius: var(--radius-pill);
}
.cur-toggle button.is-on { background: var(--af-navy); color: #fff; }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .72rem 1.35rem;
  border-radius: var(--radius-pill);
  background: var(--af-navy);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .02em;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}
.header-cta:hover { background: #123456; text-decoration: none; color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  padding: .85rem 1.6rem;
  font-family: inherit;
  font-size: .88rem;
  letter-spacing: .02em;
  min-height: 44px;
}
.btn-primary { background: var(--af-navy); color: #fff; }
.btn-primary:hover { background: #123456; color: #fff; text-decoration: none; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .55);
}
.btn-ghost:hover { border-color: #fff; color: #fff; text-decoration: none; }
.btn-secondary {
  background: transparent;
  color: var(--af-navy);
  border: 2px solid rgba(10, 37, 64, .2);
}
.btn-secondary:hover { border-color: var(--af-navy); color: var(--af-navy); text-decoration: none; }
.btn-navy { background: var(--af-navy); color: #fff; }
.btn-navy:hover { background: #123456; color: #fff; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-hover); color: #fff; text-decoration: none; }
.btn-wa svg { width: 18px; height: 18px; fill: currentColor; }

.hero {
  position: relative;
  min-height: 88vh;
  color: #fff;
  display: grid;
  align-items: end;
  background: var(--af-navy);
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.is-on { opacity: 1; }
.hero-route {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
  margin: .85rem 0 0;
  font-weight: 800;
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  letter-spacing: .01em;
  color: #fff;
  text-shadow: 0 1px 12px rgba(10, 37, 64, .45);
}
.hero-route .flag { width: 1.55rem; height: 1.05rem; }
.flag {
  width: 1.35rem;
  height: .9rem;
  display: inline-block;
  vertical-align: -2px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
  flex-shrink: 0;
}
.market-chips button,
.tab-btn,
.origin-flag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.origin-flags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: .65rem;
}
.origin-flag {
  border: 1px solid var(--af-border);
  background: #fff;
  color: var(--af-navy);
  border-radius: var(--radius-pill);
  padding: .55rem .9rem;
  cursor: pointer;
  font: 700 14px inherit;
}
.origin-flag.is-on {
  background: var(--af-navy);
  color: #fff;
  border-color: var(--af-navy);
}
.origin-flag.is-on .flag { box-shadow: 0 0 0 1px rgba(255,255,255,.35); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.field-label { font-weight: 700; margin: 0 0 .35rem; color: var(--af-navy); }
.arc-dots {
  stroke-dasharray: 1.5 16;
  animation: arc-dots-flow 14s linear infinite;
}
@keyframes arc-dots-flow {
  to { stroke-dashoffset: -220; }
}
.compare-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--af-border);
  box-shadow: var(--shadow-sm);
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.compare-pick {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.compare-photo {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  background: #fff;
  border: 1px solid var(--af-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.compare-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.compare-pick-copy { flex: 1; min-width: 0; }
.compare-pick-copy select {
  width: 100%;
  font-size: 1.05rem;
  min-height: 2.75rem;
}
.compare-kpis {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: .85rem;
}
.kpi {
  background: var(--af-bg);
  border-radius: var(--radius-sm);
  padding: 1rem 1.05rem;
  min-width: 0;
}
.kpi-credit {
  background: var(--af-navy);
}
.kpi-kicker {
  margin: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--af-navy);
}
.kpi-credit .kpi-kicker { color: rgba(255,255,255,.78); }
.kpi-amt {
  margin: .35rem 0 .2rem;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: var(--af-blue);
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.kpi-credit .kpi-amt { color: #fff; }
.kpi-note {
  margin: 0;
  font-size: .85rem;
  color: var(--af-muted);
}
.kpi-credit .kpi-note { color: rgba(255,255,255,.86); }
.compare-flight .flight-row {
  display: flex;
  align-items: center;
  gap: .4rem;
  max-width: 16rem;
}
.flight-prefix {
  font-weight: 800;
  color: var(--af-navy);
  font-size: 1.15rem;
}
.compare-flight input {
  flex: 1;
  min-width: 0;
  font-size: 1.15rem;
  min-height: 2.75rem;
}
.compare-result {
  background: var(--af-blue-soft);
  color: var(--af-navy);
  border-radius: var(--radius-sm);
  padding: 1rem 1.05rem;
}
.compare-result .result-kicker {
  margin: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--af-navy);
}
.compare-result .result-pct {
  margin: .2rem 0 .35rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--af-blue);
  line-height: 1.1;
}
.compare-result p { margin: 0; color: var(--af-navy); overflow-wrap: anywhere; }
.compare-result .meter {
  height: 8px;
  background: #fff;
  border-radius: 99px;
  overflow: hidden;
  margin: .45rem 0 .7rem;
}
.compare-result .meter > span {
  display: block;
  height: 100%;
  background: var(--af-blue);
  border-radius: 99px;
}
.compare-cta { align-self: flex-start; }
.credit-foot { margin: .9rem 0 0; max-width: 46rem; }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
.quote-card {
  background: #fff;
  border: 1px solid var(--af-border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.15rem 1.15rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .4rem;
  min-width: 0;
}
.quote-card .quote-tag {
  width: fit-content;
  background: var(--af-blue-soft);
  color: var(--af-navy);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .5rem;
  border-radius: var(--radius-pill);
}
.quote-card .stars {
  margin: 0;
  color: var(--af-blue);
  letter-spacing: .08em;
  font-size: .95rem;
}
.quote-card blockquote {
  margin: 0;
  color: var(--af-text);
  font-size: 1.02rem;
  line-height: 1.45;
}
.quote-card .quote-who {
  margin: .35rem 0 0;
  font-weight: 800;
  color: var(--af-navy);
}
.quote-card .quote-place {
  margin: 0;
  font-size: .85rem;
  color: var(--af-muted);
}
.stores-title {
  margin: 2rem 0 .85rem;
  text-align: center;
  font-weight: 800;
  color: var(--af-navy);
  font-size: 1.05rem;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .65rem;
  align-items: stretch;
}
.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--af-border);
  border-radius: var(--radius-sm);
  min-height: 72px;
  padding: .65rem .8rem;
}
.logo-cell img {
  max-width: 100%;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 960px) {
  .compare-kpis, .quote-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.credit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: .75rem;
}
@media (max-width: 520px) {
  .credit-grid { grid-template-columns: 1fr; }
}
.credit-card {
  background: var(--af-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.15rem 1rem 1.05rem;
  box-shadow: var(--shadow-md);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.credit-card-kicker {
  margin: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.credit-card-amt {
  margin: .15rem 0;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1.1;
}
.credit-card-tour {
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-size: .92rem;
}
.credit-card .meta { color: rgba(255,255,255,.78); }
.credit-callout {
  background: var(--af-blue-soft);
  color: var(--af-navy);
  border-radius: var(--radius-sm);
  padding: .7rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  min-height: 5.4rem;
}
.credit-callout.is-empty { background: transparent; }
.credit-kicker {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--af-navy);
}
.credit-amt {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--af-blue);
  line-height: 1.15;
}
.credit-tour { font-size: .82rem; font-weight: 700; color: var(--af-navy); }
.field { position: relative; }
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 37, 64, .18), rgba(10, 37, 64, .82));
}
.hero-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 3;
}
.hero-copy { position: relative; z-index: 4; padding: 3.5rem 0 4.5rem; }
.kicker {
  display: inline-block;
  background: #fff;
  color: var(--af-navy);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: var(--radius-pill);
}
h1, h2, h3 {
  letter-spacing: -.02em;
  color: inherit;
  font-weight: 700;
  font-family: inherit;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.08;
  max-width: 16ch;
  margin: .8rem 0 .5rem;
  color: #fff;
}
.subline { max-width: 42rem; font-size: 1.08rem; color: #f4f7fb; }
.market-chips { display: flex; gap: .4rem; flex-wrap: wrap; margin: 1.1rem 0 1.3rem; }
.market-chips button {
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: .45rem .9rem;
  cursor: pointer;
  font: 700 13px inherit;
}
.market-chips button.is-on { background: #fff; color: var(--af-navy); border-color: #fff; }
.opener { font-weight: 600; margin: 0 0 1.2rem; }
.hero-actions { display: flex; gap: .7rem; flex-wrap: wrap; }

.section { padding: var(--af-section-pad-y) 0; scroll-margin-top: calc(var(--header-h) + 12px); }
.section.alt { background: var(--af-bg); }
.section h2 {
  color: var(--af-navy);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 .4rem;
}
.lede { color: var(--af-muted); margin: 0 0 1.6rem; max-width: 46rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  border: 1px solid var(--af-border);
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.step .n {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--af-navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .85rem;
}
.step h3 { color: var(--af-navy); font-size: 1.05rem; margin: .7rem 0 .25rem; }
.step p { margin: 0; color: var(--af-muted); font-size: .92rem; }

.filters { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.filters button, .tab-btn {
  border: 1px solid var(--af-border);
  background: #fff;
  color: var(--af-navy);
  border-radius: var(--radius-pill);
  padding: .4rem .85rem;
  cursor: pointer;
  font: 700 13px inherit;
}
.filters button.is-on, .tab-btn.is-on {
  background: var(--af-navy);
  color: #fff;
  border-color: var(--af-navy);
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
@media (max-width: 900px) {
  .grid-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .grid-cards { grid-template-columns: 1fr; }
}
.pcard {
  background: #fff;
  border: 1px solid var(--af-border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  height: 100%;
  min-height: 0;
  box-shadow: var(--shadow-sm);
}
.pcard .media {
  aspect-ratio: 1 / 1;
  width: 100%;
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  display: block;
}
.pcard .media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}
.pcard h3 {
  margin: 0;
  color: var(--af-navy);
  font-size: 1.05rem;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pcard .blurb {
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pcard .specs { min-height: 2.8em; }
.pcard .credit-callout { margin-top: .15rem; }
#country-panel h3 {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.pcard .pick { margin-top: auto; width: 100%; }
.price { font-weight: 800; color: var(--af-blue); font-size: 1.15rem; }
.meta { font-size: .85rem; color: var(--af-muted); }
.badge {
  display: inline-block;
  background: var(--af-navy);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: .22rem .5rem;
  border-radius: var(--radius-pill);
  width: fit-content;
}
.badge.warn { background: var(--af-blue-soft); color: var(--af-navy); }

.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
@media (max-width: 800px) { .cols-3 { grid-template-columns: 1fr; } }
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  border: 1px solid var(--af-border);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.card h3 { color: var(--af-navy); margin-top: 0; }
table { width: 100%; border-collapse: collapse; font-size: .92rem; }
th, td { text-align: left; padding: .55rem .4rem; border-bottom: 1px solid var(--af-border); }
th { color: var(--af-navy); }
.notice {
  background: var(--af-blue-soft);
  color: var(--af-navy);
  border-radius: var(--radius-sm);
  padding: .9rem 1rem;
  font-size: .92rem;
}
.checklist label { display: flex; gap: .55rem; align-items: flex-start; margin: .45rem 0; }
.timeline { border-left: 3px solid var(--af-blue); padding-left: 1rem; }
.timeline h3 { margin: 0 0 .2rem; color: var(--af-navy); }
.faq details {
  background: #fff;
  border: 1px solid var(--af-border);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  margin: .5rem 0;
}
.faq summary { cursor: pointer; font-weight: 700; color: var(--af-navy); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-item {
  margin: 0;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 16px;
  overflow: hidden;
  background: #eef3f8;
  cursor: zoom-in;
  border: 0;
  padding: 0;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.exp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(10, 37, 64, .94);
}
.exp-lightbox[hidden] { display: none !important; }
.exp-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: zoom-out;
}
.exp-lightbox-panel {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(96vw, 1100px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.exp-lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
}
.exp-lightbox-caption {
  margin: 0;
  flex: 1;
  min-width: 0;
  color: rgba(255, 255, 255, .88);
  font-size: .88rem;
  line-height: 1.4;
}
.exp-lightbox-controls {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
}
.exp-lightbox-btn {
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: .45rem .75rem;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 10px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}
.exp-lightbox-btn:hover { background: rgba(255, 255, 255, .18); }
.exp-lightbox-btn--close { font-size: 1.35rem; padding-inline: .85rem; }
.exp-lightbox-stage {
  flex: 0 0 auto;
  width: min(96vw, 1100px);
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #061a2c;
  border-radius: 12px;
  overflow: hidden;
}
.exp-lightbox-stage img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.form-shell {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  border: 1px solid var(--af-border);
  box-shadow: var(--shadow-sm);
}
.progress { height: 6px; background: #e8eef4; border-radius: 99px; margin: .6rem 0 1rem; }
.progress span { display: block; height: 100%; width: 25%; background: var(--af-blue); border-radius: 99px; }
.field { margin: .75rem 0; }
.field label { display: block; font-weight: 700; margin-bottom: .3rem; color: var(--af-navy); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .7rem .8rem;
  border: 1px solid #cfd9e4;
  border-radius: 10px;
  font: inherit;
  color: var(--af-text);
  background: #fff;
}
.hp { position: absolute; left: -9999px; }
.err { color: #9b1c1c; font-size: .88rem; }
.sticky-wa {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}
.guia-wa-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 400;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  text-decoration: none;
}
.guia-wa-fab:hover { transform: scale(1.06); background: #1fb855; color: #fff; }
.guia-wa-fab svg { width: 1.7rem; height: 1.7rem; fill: #fff; }

.request-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
  display: grid;
  gap: 1.25rem;
}
.visual-pick {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: .65rem;
}
.vcard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding: .55rem .4rem .7rem;
  border: 2px solid #d5e0ec;
  border-radius: 14px;
  background: #fff;
  color: var(--af-navy);
  cursor: pointer;
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
.vcard img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
}
.vcard.is-on {
  border-color: #004080;
  box-shadow: 0 0 0 3px rgba(0, 64, 128, .18);
  background: #f4f8fc;
}
.cost-panel { border-top: 1px solid var(--af-border); padding-top: 1rem; }
.cost-panel h3 { margin: 0 0 .75rem; color: var(--af-navy); }
.cost-line, .cost-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 11.5rem;
  align-items: center;
  gap: .75rem;
  padding: .45rem 0;
  color: var(--af-text);
}
.cost-line strong, .cost-total strong {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.cost-line label { font-weight: 700; color: var(--af-navy); }
.cost-line input {
  width: 100%;
  box-sizing: border-box;
  text-align: right;
  font: inherit;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--af-navy);
  background: #fff;
  border: 1.5px solid #004080;
  border-radius: 10px;
  padding: .4rem .55rem;
}
.cost-minus strong { color: #0b6b3a; }
.cost-priceless {
  margin: .7rem 0;
  padding: .75rem .9rem;
  border-radius: 12px;
  background: #e8f0fc;
  color: #0a2540;
  font-weight: 700;
}
.cost-total {
  border-top: 2px solid #004080;
  margin-top: .3rem;
  font-size: 1.15rem;
  color: #0a2540;
}
.cost-total strong { font-size: 1.25rem; }

.info-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-bottom: .85rem;
}
.info-card {
  display: block;
  background: #fff;
  border: 1.5px solid #004080;
  border-radius: 16px;
  padding: 1rem 1.05rem;
  color: var(--af-text);
}
.info-head {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .55rem;
}
.info-head h3,
.info-card h3 { margin: 0; color: #004080; }
.info-card p { margin: 0; }
.info-card p, .info-card label { color: #1d1d1f; }
.info-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1.5px solid #004080;
  display: grid;
  place-items: center;
  background: #e8f0fc;
}
.info-icon svg { width: 22px; height: 22px; }
.info-wide { width: 100%; }
.info-wide .checklist { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem .8rem; }
@media (max-width: 720px) {
  .info-pair, .info-wide .checklist { grid-template-columns: 1fr; }
}

.review-marquee {
  height: 440px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
}
.review-track {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  animation: review-up 42s linear infinite;
}
.review-marquee:hover .review-track { animation-play-state: paused; }
@keyframes review-up {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
.quote-card {
  background: #fff;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-sm);
  color: #1d1d1f;
}
.quote-tag {
  display: inline-block;
  background: #e8f0fc;
  color: #004080;
  font-size: .72rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .15rem .55rem;
}
.stars { color: #004080; margin: .35rem 0; letter-spacing: .08em; }
.quote-who { font-weight: 700; color: #0a2540; margin: .4rem 0 0; }
.quote-place { color: #6e6e73; margin: 0; font-size: .85rem; }

.logo-marquee { display: grid; gap: .65rem; overflow: hidden; }
.logo-row { overflow: hidden; }
.logo-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: logo-rtl 32s linear infinite;
}
.logo-row-b .logo-track { animation-delay: .5s; }
.logo-cell {
  flex: 0 0 140px;
  height: 64px;
  background: #fff;
  border-radius: 12px;
  display: grid;
  place-items: center;
  padding: .4rem .7rem;
  border: 1px solid rgba(0, 64, 128, .18);
}
.logo-cell img { max-width: 100%; max-height: 40px; object-fit: contain; }
@keyframes logo-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-footer {
  background: #061a2c;
  color: rgba(255, 255, 255, .78);
  padding: 0;
}
.site-footer a { color: #fff; }
.footer-compliance { font-size: .82rem; max-width: 52rem; }
.success { text-align: center; padding: 1.5rem .5rem; }
.hidden { display: none !important; }

.footer-note {
  margin: 0 0 1.15rem;
  padding: 0;
  color: rgba(255, 255, 255, .78);
  font-size: .82rem;
  line-height: 1.5;
}

/* Base chrome (also in guias.css) — keep here so root pages / demos still get
   a dark footer when the shared stylesheet fails to load. */
.site-footer {
  background: #061a2c;
  color: rgba(255, 255, 255, .7);
  padding: 3rem 1.25rem 2rem;
  font-size: .85rem;
}
.footer-inner { max-width: var(--max, 1080px); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 1.5rem 1.75rem;
  margin-bottom: 1.35rem;
}
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  font-size: 1.05rem;
}
.footer-logo:hover { color: #fff; text-decoration: none; }
.footer-col h4 {
  margin: 0 0 .75rem;
  color: #fff;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  margin-bottom: .4rem;
}
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .8rem;
}
.footer-offices {
  margin: 1rem 0 1.15rem;
  font-size: .82rem;
  line-height: 1.55;
  color: rgba(255,255,255,.75);
}
.footer-offices .line { display: block; }
.footer-offices strong { color: #fff; font-weight: 600; }
.footer-logo img.monito {
  width: 28px;
  height: auto;
  display: block;
  flex-shrink: 0;
  border-radius: 0;
  background: transparent;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  transition: background .2s, transform .2s;
}
.footer-social a:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
