/* ─── Hero (páginas de servicio) ───────────────────────────────────── */
/*
 * La imagen de fondo (.hero-bg) se define por página con la variable
 * --hero-img o directamente como regla inline en cada HTML.
 */
.hero {
  position: relative; min-height: 78vh;
  display: flex; align-items: flex-end;
  padding-top: 112px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(8,15,26,.92) 0%, rgba(15,35,65,.55) 55%, rgba(15,35,65,.18) 100%),
    var(--hero-img, none) center / cover no-repeat;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 3.5rem 2rem 4rem;
  width: 100%; max-width: 1200px; margin: 0 auto;
}
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: rgba(255,255,255,.55);
  margin-bottom: 1.2rem; font-family: var(--font-h); font-weight: 600;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: .55rem; }
.hero h1 {
  font-family: var(--font-h); font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900; color: var(--white); line-height: 1.08;
  letter-spacing: -.03em; margin-bottom: .9rem;
}
.hero h1 em { font-style: normal; color: var(--gold-mid); }
.hero-lead { font-size: 1rem; color: rgba(255,255,255,.7); max-width: 520px; line-height: 1.7; margin-bottom: 1.8rem; }
.hero-badges { display: flex; gap: .65rem; flex-wrap: wrap; margin-bottom: 2rem; }
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); font-size: .75rem; font-weight: 600;
  padding: .32rem .8rem; border-radius: 99px;
  backdrop-filter: blur(8px); font-family: var(--font-h);
}
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; }

/* ─── Sección overview ─────────────────────────────────────────────── */
.overview { background: var(--white); }
.overview-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.overview-img {
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  box-shadow: var(--sh-lg);
}
.overview-img img { width: 100%; height: 400px; display: block; object-fit: cover; }

/* Variante decorativa (aeropuerto) */
.overview-img.decorated { overflow: visible; box-shadow: none; }
.overview-img.decorated img { box-shadow: 0 12px 40px rgba(12,26,46,.18); }
.overview-img.decorated::after {
  content: ''; position: absolute;
  top: 10px; left: -10px; right: 10px; bottom: -10px;
  border-radius: var(--r-lg); border: 2px solid var(--gold);
  z-index: -1; opacity: .6;
}

.feat-list { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.8rem; }
.feat-item { display: flex; gap: 1rem; align-items: flex-start; }
.feat-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: var(--r-sm);
  background: var(--blue-lt); display: flex; align-items: center;
  justify-content: center; color: var(--blue); font-size: .95rem;
}
.feat-text h4 { font-family: var(--font-h); font-size: .88rem; font-weight: 700; color: var(--dark); margin-bottom: .18rem; }
.feat-text p { font-size: .84rem; color: var(--gray-600); line-height: 1.55; }

/* ─── Qué incluye ──────────────────────────────────────────────────── */
.included { background: var(--bg); }
.inc-grid { display: grid; gap: 1rem; }
.inc-card {
  background: var(--white); border-radius: var(--r); padding: 1.4rem;
  display: flex; align-items: flex-start; gap: .85rem;
  border: 1px solid var(--gray-100);
  transition: box-shadow var(--ease), transform var(--ease);
}
.inc-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.inc-icon {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: var(--r-sm);
  background: var(--blue-lt); display: flex; align-items: center;
  justify-content: center; color: var(--blue); font-size: .9rem;
}
.inc-text h4 { font-family: var(--font-h); font-size: .82rem; font-weight: 700; color: var(--dark); }
.inc-text p { font-size: .78rem; color: var(--gray-600); margin-top: .15rem; }

/* ─── Precios ──────────────────────────────────────────────────────── */
.pricing { background: var(--white); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem; max-width: 780px; margin: 0 auto;
}
.price-card {
  border: 1.5px solid var(--gray-100); border-radius: var(--r-lg);
  padding: 2.2rem 2rem; text-align: center;
  transition: all var(--ease); position: relative; background: var(--white);
}
.price-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); border-color: var(--blue); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--white);
  font-family: var(--font-h); font-size: .68rem; font-weight: 700;
  padding: .3rem .9rem; border-radius: 99px; white-space: nowrap; letter-spacing: .04em;
}
.price-type { font-family: var(--font-h); font-size: .72rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.price-icon { font-size: 1.6rem; color: var(--blue); margin-bottom: .8rem; }
.price-card h3 { font-family: var(--font-h); font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 1.1rem; }
.price-from { font-size: .78rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .15rem; }
.price-amount { font-family: var(--font-h); font-size: 2.5rem; font-weight: 900; color: var(--blue); line-height: 1; letter-spacing: -.02em; }
.price-currency { font-size: .82rem; color: var(--gray-400); margin-top: .25rem; margin-bottom: 1.4rem; }
.price-opts { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.5rem; }
.price-opt {
  display: flex; align-items: flex-start; gap: .55rem;
  background: var(--blue-lt); border-radius: var(--r-sm); padding: .6rem .8rem; text-align: left;
}
.price-opt i { color: var(--blue); font-size: .85rem; margin-top: .1rem; flex-shrink: 0; }
.price-opt span { font-size: .82rem; color: var(--dark); line-height: 1.35; }
.price-feats { display: flex; flex-direction: column; gap: .42rem; text-align: left; border-top: 1px solid var(--gray-100); padding-top: 1.1rem; }
.pf { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--gray-600); }
.pf i { color: var(--blue); font-size: .72rem; flex-shrink: 0; }

/* ─── Galería ──────────────────────────────────────────────────────── */
.gallery { background: var(--bg); padding: 5rem 0; }
.gallery-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px; gap: 1rem;
}
.gallery-grid .g-main { grid-row: 1 / 3; }
.g-img { border-radius: var(--r-lg); overflow: hidden; }
.g-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.g-img:hover img { transform: scale(1.05); }

/* ─── Cómo funciona ────────────────────────────────────────────────── */
.how { background: var(--dark); padding: 6rem 0; }
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.steps-line {
  position: absolute; top: 28px;
  left: calc(16.66% + 28px); right: calc(16.66% + 28px);
  height: 1px; background: linear-gradient(to right, var(--gold-mid), var(--blue)); z-index: 0;
}
.step-item { position: relative; z-index: 1; padding-right: 2rem; }
.step-item:last-child { padding-right: 0; }
.step-bubble {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: .82rem; font-weight: 800;
  color: var(--white); margin-bottom: 1.4rem;
  box-shadow: 0 0 0 6px rgba(255,255,255,.04);
}
.step-item:nth-child(1) .step-bubble { background: linear-gradient(135deg, var(--gold), var(--gold-mid)); }
.step-item:nth-child(2) .step-bubble { background: linear-gradient(135deg, var(--blue), #2D6DD4); }
.step-item:nth-child(3) .step-bubble { background: linear-gradient(135deg, var(--navy), var(--dark)); }
.step-item h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.step-item p { font-size: .86rem; color: rgba(255,255,255,.55); line-height: 1.65; max-width: 260px; }

/* ─── FAQ ──────────────────────────────────────────────────────────── */
.faq { background: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 780px; }
.faq-item { border: 1.5px solid var(--gray-100); border-radius: var(--r); overflow: hidden; transition: border-color var(--ease); }
.faq-item.open { border-color: var(--gray-200); }
.faq-q {
  width: 100%; background: none; border: none; padding: 1.1rem 1.4rem; text-align: left;
  font-family: var(--font-h); font-size: .9rem; font-weight: 600; color: var(--dark);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; transition: background var(--ease);
}
.faq-q:hover { background: var(--gray-50); }
.faq-q i { font-size: .78rem; color: var(--gold); transition: transform var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.4rem 1.1rem; font-size: .86rem; color: var(--gray-600); line-height: 1.68; }
.faq-item.open .faq-a { display: block; }

/* ─── Banda CTA ────────────────────────────────────────────────────── */
.cta-band { padding: 5rem 0; }
/* Variante clara (aeropuerto, corporativo, esqui) */
.cta-band { background: var(--bg); }
.cta-band .cta-text h2 { color: var(--dark); }
.cta-band .cta-text p { color: var(--gray-600); }
/* Variante oscura: agrega class="cta-band cta-dark" */
.cta-band.cta-dark { background: var(--dark); }
.cta-band.cta-dark .cta-text h2 { color: var(--white); }
.cta-band.cta-dark .cta-text p { color: rgba(255,255,255,.6); }

.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.cta-text h2 { font-family: var(--font-h); font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -.025em; }
.cta-text p { font-size: .95rem; margin-top: .5rem; max-width: 400px; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ─── Responsive (páginas de servicio) ────────────────────────────── */
@media (max-width: 820px) {
  .hero { padding-top: 96px; }
}
@media (max-width: 720px) {
  section { padding: 4rem 0; }
  .hero { min-height: auto; }
  .hero-content { padding: 2.5rem 1.5rem 3rem; }
  .overview-grid { grid-template-columns: 1fr; gap: 2rem; }
  .overview-img img { height: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .gallery-grid .g-main { grid-row: auto; grid-column: 1 / 3; }
  .steps-row { grid-template-columns: 1fr; }
  .steps-line { display: none; }
  .step-item { padding: 0 0 1.5rem; }
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-amount { font-size: 1.8rem; }
  .cta-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .cta-text p { max-width: 100%; }
  .cta-actions { justify-content: center; width: 100%; }
  .cta-actions .btn { flex: 1; justify-content: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero h1 { font-size: 1.9rem; }
  .hero-badges { gap: .4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}
