/* ==========================================================
   TaxisCastelldefels.es — aeropuerto.css
   Estilos específicos: /taxi-aeropuerto-castelldefels/
   Se carga DESPUÉS de styles.css (que aporta reset, variables,
   botones base, footer, container, secciones comunes).
   Este archivo solo contiene lo que styles.css NO tiene o
   necesita ser sobreescrito para esta página.
   ========================================================== */

/* ── TIPOGRAFÍA DIRECTA (styles.css usa .h-display/.h-section) ── */
h1 {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
h3 {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 600;
  line-height: 1.3;
}
p { line-height: 1.7; }

/* ── .label (styles.css usa .eyebrow — éste es el de la página de aeropuerto) ── */
.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* ── .btn base definido en styles.css · variante específica de esta página: ── */
.btn-outline-yellow {
  background: transparent;
  color: var(--yellow);
  border: 1.5px solid var(--yellow);
}
.btn-outline-yellow:hover {
  background: var(--yellow-soft);
}

/* Cabecera y menú móvil: gestionados de forma unificada en styles.css
   (no redefinir aquí para mantener consistencia en todas las páginas) */

/* ── HERO AEROPUERTO ── */
.hero-airport {
  background: var(--black);
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero-airport::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245,197,24,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Hero badge: override del .hero-badge de styles.css (que es posición absoluta sobre foto) */
.hero-airport .hero-badge {
  position: static;
  inset: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: flex-start;
  background: var(--green-soft);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--green);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-airport .hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: airport-pulse 2s infinite;
  flex-shrink: 0;
}
/* Renombramos la animación para evitar conflicto con el pulse de styles.css */
@keyframes airport-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-h1 { margin-bottom: 1.25rem; }
.hero-h1 em { font-style: normal; color: var(--yellow); }

/* .hero-sub existe en styles.css con max-width:54ch — override scoped */
.hero-airport .hero-sub {
  font-size: 1.1rem;
  color: var(--gray-light);
  line-height: 1.65;
  margin-bottom: 0.5rem;
  max-width: none;
}
.hero-return {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 2rem;
}
.hero-return a { color: var(--yellow); font-weight: 600; }
.hero-return a:hover { text-decoration: underline; }

/* .hero-pills existe en styles.css — mismo comportamiento, no conflict */
/* .hero-ctas existe en styles.css — override scoped (margin-bottom diferente) */
.hero-airport .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.hero-microcopy {
  font-size: 0.78rem;
  color: var(--gray);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-microcopy span::before { content: "✓ "; color: var(--green); }

.hero-img-side {
  position: relative;
  padding-bottom: 16px;
  padding-right: 16px;
}
.hero-img-side::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 76%; height: 50%;
  background: var(--yellow);
  border-radius: var(--radius-md);
  z-index: 0;
}
.hero-img-side img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}
/* Imagen mobile — oculta en desktop */
.hero-img-mobile {
  display: none;
  margin: 1.75rem 0;
}
.hero-img-mobile img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}
.hero-img-overlay {
  position: absolute;
  bottom: calc(1.5rem + 16px);
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.overlay-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--yellow-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay-icon svg { color: var(--yellow); }
.overlay-text strong { display: block; font-size: 0.95rem; font-weight: 700; }
.overlay-text span { font-size: 0.78rem; color: var(--gray); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-img-side { display: none; }
  .hero-img-mobile { display: block; }
}
@media (max-width: 480px) {
  .hero-airport { padding: 2.5rem 0 3.5rem; }
  .hero-airport .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-airport .hero-ctas .btn { text-align: center; }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}
/* styles.css tiene .stats-grid como 2 columnas mobile → 4 en 768px
   En el contexto de .stats-bar queremos 4 desde el principio */
.stats-bar .stats-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-number {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--yellow);
  display: block;
  line-height: 1.1;
}
/* .stat-label existe en styles.css — override para esta página */
.stats-bar .stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 0.2rem;
  text-transform: none;
  letter-spacing: normal;
}
@media (max-width: 600px) {
  .stats-bar .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ── PROCESO ── */
.proceso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.proceso-grid::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: calc(16.66% + 0.75rem);
  right: calc(16.66% + 0.75rem);
  height: 1px;
  background: linear-gradient(90deg, var(--border-hover), var(--border), var(--border-hover));
}
.paso {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  transition: var(--transition);
  text-align: center;
}
.paso:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--yellow-glow);
}
.paso-num {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  flex-shrink: 0;
}
.paso h3 { margin-bottom: 0.6rem; }
.paso p { font-size: 0.92rem; color: var(--gray-light); }
.paso-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--gray);
  font-style: italic;
}
@media (max-width: 768px) {
  .proceso-grid { grid-template-columns: 1fr; }
  .proceso-grid::before { display: none; }
}

/* ── GARANTÍAS ── */
.garantias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.garantia {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}
.garantia:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
}
.garantia-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--yellow-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.garantia-icon svg { color: var(--yellow); }
.garantia-body h3 { margin-bottom: 0.35rem; font-size: var(--text-base); }
.garantia-body p { font-size: 0.88rem; color: var(--gray-light); line-height: 1.55; }

/* Franja foto — encima de las garantías */
.garantias-photo {
  position: relative;
  margin: 0 0 2.5rem;
}
/* Bracket — esquina superior izquierda */
.garantias-photo::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 48px;
  border-top: 4px solid var(--yellow);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius-xl) 3px 0 3px;
  z-index: 2;
  pointer-events: none;
}
.garantias-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 75%;
  display: block;
  border-radius: var(--radius-xl);
}

/* ── TARIFAS ── */
.tarifas-disclaimer {
  background: var(--card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.tarifas-disclaimer svg { color: var(--yellow); flex-shrink: 0; margin-top: 0.1rem; }
.tarifas-disclaimer p { font-size: 0.88rem; color: var(--gray-light); line-height: 1.55; }
.tarifas-disclaimer strong { color: var(--white); }
.tarifas-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* Tarjeta — contenedor */
.tarifa-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 1rem;
  text-align: center;
}
.tarifa-card h3 {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
}

/* Split T1 / T2 dentro de cada tarjeta */
.tarifa-row {
  display: flex;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
}
.tarifa-half {
  flex: 1;
  padding: 0.75rem 0.5rem 0.65rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.tarifa-half--t1 { background: rgba(250,190,0,.07); }
.tarifa-half--t2 { background: rgba(255,255,255,.03); border-left: 1px solid var(--border); }

/* Badges T1 / T2 */
.t-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 0.1rem 0.5rem;
  border-radius: var(--radius-pill);
  line-height: 1.6;
}
.t-badge--1 { background: var(--yellow); color: var(--black); }
.t-badge--2 { background: rgba(255,255,255,.1); color: var(--gray-light); }

/* Precio dentro del split */
.t-price {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.t-price span { font-size: 0.85rem; font-weight: 600; margin-left: 1px; color: var(--gray-light); }

/* Horario descriptivo */
.t-when {
  font-size: 0.63rem;
  color: var(--gray);
  line-height: 1.3;
  text-align: center;
}

/* Nota km + suplemento */
.tarifa-card .price-note {
  font-size: 0.72rem;
  color: var(--gray-dark);
  font-style: italic;
  line-height: 1.4;
}

.tarifas-note {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-md);
  border-left: 2px solid var(--yellow);
}
.tarifas-note strong { color: var(--gray-light); }
.tarifas-link { text-align: center; margin-top: 1.25rem; }

/* ── DIFERENCIADORES ── */
.diferencia-header { margin-bottom: 2rem; }

/* Imagen hero bajo el H2 */
.dif-hero-img-wrap {
  position: relative;
  margin-bottom: 3rem;
}
.dif-hero-img-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 48px;
  border-top: 4px solid var(--yellow);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius-xl) 3px 0 3px;
  z-index: 2;
  pointer-events: none;
}
.dif-hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.dif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.dif-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: none;
  border: none;
  padding: 0;
}
.dif-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-light-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  border-left: 3px solid var(--yellow);
  border-right: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.1rem 1rem 1.1rem 1.25rem;
}
.dif-item-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: var(--radius-sm);
  background: rgba(245,197,24,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-dark);
  flex-shrink: 0;
}
.dif-item h3 { font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--text-on-light); }
.dif-item p { font-size: 0.85rem; color: var(--text-2-on-light); line-height: 1.6; margin: 0; }
.dif-contrast {
  background: var(--bg-light-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.dif-contrast-head {
  background: var(--black);
  padding: .9rem 2rem;
}
.dif-contrast-head h3 {
  font-size: .92rem;
  font-weight: 600;
  color: var(--yellow);
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
}
.dif-contrast-body {
  padding: 1.5rem 2rem 2rem;
}
.contrast-table { width: 100%; border-collapse: collapse; }
.contrast-table th {
  font-size: 0.8rem;
  font-weight: 700;
  text-align: left;
  padding: 0.5rem 0;
  color: var(--text-2-on-light);
  border-bottom: 1px solid var(--border-light);
}
.contrast-table td {
  padding: 0.75rem 0;
  font-size: 0.88rem;
  color: var(--text-on-light);
  border-bottom: 1px solid var(--border-light);
}
.contrast-table tr:last-child td { border-bottom: none; }
.contrast-table .col-tc { color: var(--text-on-light); font-weight: 700; }
.contrast-table .col-app { color: var(--gray); }
.check { color: var(--green); margin-right: 0.3rem; }
.cross { color: var(--gray); margin-right: 0.3rem; }
@media (max-width: 768px) {
  .dif-grid { grid-template-columns: 1fr; }
  .dif-hero-img { height: 240px; }
}
@media (max-width: 600px) {
  .dif-contrast { padding: 0; } /* header ocupa todo el ancho */
  .dif-contrast-head { padding: 0.85rem 1.25rem; }
  .dif-contrast-body { padding: 0.5rem 1.25rem 1.25rem; }

  /* Tabla → bloques apilados */
  .contrast-table,
  .contrast-table tbody { display: block; width: 100%; }
  .contrast-table thead { display: none; }

  .contrast-table tr {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-light);
  }
  .contrast-table tr:last-child { border-bottom: none; }

  /* Etiqueta del aspecto */
  .contrast-table td:first-child {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-2-on-light);
    margin-bottom: 0.55rem;
    padding: 0;
    border: none;
  }

  /* Nuestro valor: franja fina con borde verde */
  .contrast-table .col-tc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.08);
    border-left: 3px solid var(--green);
    border-radius: 0 6px 6px 0;
    padding: 0.28rem 0.7rem;
    margin-bottom: 0.35rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-on-light);
    border-bottom: none;
    line-height: 1.35;
  }

  /* Valor de la competencia: gris, sobrio */
  .contrast-table .col-app {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--gray);
    padding: 0 0 0 0.5rem;
    border: none;
    line-height: 1.3;
  }

  .contrast-table .check { color: var(--green); flex-shrink: 0; font-style: normal; }
  .contrast-table .cross { color: var(--gray-dark); flex-shrink: 0; font-style: normal; }
}

/* ── TESTIMONIOS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.review-stars { color: var(--yellow); font-size: 0.9rem; margin-bottom: 0.75rem; }
.review-text {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow-soft);
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.9rem; }
.review-context { font-size: 0.78rem; color: var(--gray); margin-top: 0.1rem; }
.review-card .review-google-link {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .75rem; color: var(--gray); text-decoration: none;
  margin-top: .75rem;
}
.review-card .review-google-link:hover { color: var(--white); }

/* ── FAQ — usa los estilos base de styles.css (.faq, .faq-item, etc.) ── */
/* Ajuste de margen superior para esta página */
.faq { margin-top: 3rem; }

/* ── FORMULARIO ── */
.form-section { background: var(--dark); }
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.form-info h2 { margin-bottom: 1rem; }
.form-info p { color: var(--gray-light); margin-bottom: 1.5rem; font-size: 0.95rem; }
.form-trust { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.form-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--gray-light); }
.form-trust-item svg { color: var(--green); flex-shrink: 0; }

/* ── Escenarios "¿Qué pasa si...?" ── */
.form-scenarios {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.form-scenario {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
}
.form-scenario:last-child { border-bottom: none; }
.form-scenario-q {
  font-size: .8rem;
  font-weight: 600;
  color: var(--yellow);
  line-height: 1.3;
}
.form-scenario-a {
  font-size: .8rem;
  color: var(--gray-light);
  line-height: 1.5;
}

.form-tel-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.form-tel-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--yellow-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-tel-icon svg { color: var(--yellow); }
.form-tel-text small { font-size: var(--text-xs); color: var(--gray); display: block; }
.form-tel-text a { font-size: 1.2rem; font-weight: 800; color: var(--yellow); }
.reserva-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.form-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: 'Urbanist', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-dark); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(245,197,24,0.5);
}
.form-group select option { background: var(--dark); }
.honeypot { display: none !important; }
/* Ocultar form tras envío exitoso — Alpine añade esta clase via :class binding */
.form-enviado { display: none !important; }
/* ── Consentimiento RGPD ── */
.form-consent { margin-top: 1.25rem; }
.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--gray-light);
}
/* Input nativo oculto pero accesible (foco vía teclado) */
.consent-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  margin: 0;
}
.consent-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--dark);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s, border-color 0.15s;
}
.consent-box svg {
  opacity: 0;
  transition: opacity 0.12s;
}
.consent-check input:checked + .consent-box {
  background: var(--yellow);
  border-color: var(--yellow);
}
.consent-check input:checked + .consent-box svg { opacity: 1; }
.consent-check:hover .consent-box { border-color: var(--border-hover); }
.consent-check input:focus-visible + .consent-box {
  outline: 2px solid rgba(245, 197, 24, 0.6);
  outline-offset: 2px;
}
.consent-check input[aria-invalid="true"] + .consent-box {
  border-color: #EF4444;
}
.consent-text a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-text a:hover { color: var(--yellow-dark); }
.form-error {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #EF4444;
}

.form-submit-area { margin-top: 1.25rem; }
/* Botón de reserva — icono + texto alineados */
.btn-reservar {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}
.btn-reservar svg { flex-shrink: 0; }
.btn-reservar-txt { display: inline; color: var(--black); }
.form-microcopy {
  text-align: center;
  margin-top: 0.75rem;
  font-size: var(--text-xs);
  color: var(--gray);
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-microcopy span::before { content: "· "; }
.form-feedback {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  /* Sin display:none aquí — Alpine controla visibilidad via x-show */
}
.form-feedback.success {
  background: var(--green-soft);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green);
}
.form-feedback.error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #EF4444;
}
@media (max-width: 900px) {
  .form-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
}

/* ── CTA FINAL ── */
.cta-final {
  background: var(--black);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(245,197,24,0.07) 0%, transparent 70%);
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final .label { margin-bottom: 1rem; display: block; }
.cta-final h2 { margin-bottom: 1rem; }
.cta-final p { color: var(--gray-light); max-width: 560px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}
.cta-img-side img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-text-side .cta-btns { justify-content: flex-start; }
.cta-micro {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--gray);
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-micro span::before { content: "✓ "; color: var(--green); }
.cta-text-side .cta-micro { justify-content: flex-start; }
.cta-text-side p { margin-left: 0; margin-right: 0; }
@media (max-width: 768px) {
  .cta-grid { grid-template-columns: 1fr; text-align: center; }
  .cta-img-side { display: none; }
  .cta-text-side .cta-btns { justify-content: center; }
  .cta-text-side .cta-micro { justify-content: center; }
  .cta-text-side p { margin: 0 auto 2.5rem; }
}

/* ── FAB MÓVIL (diferente del .fab-bar de styles.css) ── */
.fab-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: 0.75rem 1rem;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}
.fab-inner { display: flex; gap: 0.75rem; }
.fab-inner .btn { flex: 1; text-align: center; padding: 0.9rem 1rem; font-size: 0.95rem; }
@media (max-width: 768px) {
  .fab-mobile { display: block; }
  body { padding-bottom: 5rem; }
}

/* ── SECTION HEAD: sub-reglas específicas de esta página ── */
/* styles.css ya tiene .section-head base; añadimos lo que falta */
.section-head .label { margin-bottom: 0.75rem; display: block; }
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p {
  color: var(--gray-light);
  max-width: 580px;
  font-size: var(--text-base);
  line-height: 1.65;
}
.section-head.center p { margin: 0 auto; }

/* ── UTILIDADES ── */
.text-yellow { color: var(--yellow); }
.text-gray   { color: var(--gray); }


.site-footer {
  margin-top: 0;
  padding-top: 3.5rem;
}

/* ── Tabla comparativa: responsive entre 601-640px ──────── */
@media (max-width: 600px) {
  .contrast-table th {
    font-size: 0.72rem;
    padding: 0.4rem 0.3rem;
  }
  .contrast-table td {
    padding: 0.55rem 0.3rem;
    font-size: 0.8rem;
  }
}

/* ── Animación de entrada: garantia cards (igual que serv-strip-item) ── */
.garantia {
  opacity: 0;
  transform: translateY(16px);
}
.garantia.is-visible {
  animation: stripFadeUp .45s ease forwards;
}
@media (prefers-reduced-motion: reduce) {
  .garantia { opacity: 1; transform: none; }
  .garantia.is-visible { animation: none; }
}

/* ── Móvil: imágenes completas sin recorte ────────────────── */
@media (max-width: 600px) {
  .garantias-photo img { height: auto; object-fit: unset; }
}
