/* ══════════════════════════════════════════════════════════════════════════
   HERO — Estética campania-verano (imagen fondo + shortcode calculadora)
   Clases: dest-hero* (genéricas, sin nombre de destino)
   ══════════════════════════════════════════════════════════════════════════ */



.dest-hero {
  position: relative;
  min-height: 680px;            /* altura suficiente para la calculadora */
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--brand-d);  /* fallback si no hay imagen */
}

/* Imagen de fondo */
.dest-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.dest-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Overlay degradado: oscuro izquierda → transparente derecha */
.dest-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(7, 39, 73, 0.90) 0%,
    rgba(13, 59, 102, 0.82) 40%,
    rgba(13, 59, 102, 0.55) 65%,
    rgba(13, 59, 102, 0.20) 100%
  );
}

/* Grid interior */
.dest-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 72px 24px 64px;
  box-sizing: border-box;
}

/* ── Columna contenido ───────────────────────────────────────────────────── */

/* Badge */
.dest-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.dest-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(19, 181, 177, 0.35);
  animation: dest-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dest-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(19,181,177,0.35); }
  50%       { box-shadow: 0 0 0 6px rgba(19,181,177,0.15); }
}

/* Título */
.dest-hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
  margin: 0 0 16px;
}
.dest-accent {
  color: #fde68a;
  display: inline;          /* permanece en la misma línea que el texto anterior */
  white-space: nowrap;      /* impide que el nombre del país se parta */
}

/* Subtítulo */
.dest-hero__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  max-width: 480px;
  margin: 0 0 28px;
}

/* Stats */
.dest-hero__stats {
  display: flex;
  gap: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.dest-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.dest-hero__stat-n {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.dest-hero__stat-l {
  font-size: 11px;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Trust chips */
.dest-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.dest-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 6px 13px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  transition: background 0.2s;
}
.dest-hero__chip:hover {
  background: rgba(255,255,255,0.18);
}
.dest-hero__chip .ti {
  color: #fde68a;
  font-size: 13px;
}

/* CTAs */
.dest-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Botones */
.dest-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 28px;
  cursor: pointer;
  transition: all 0.22s ease;
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}
.dest-btn--teal {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  box-shadow: 0 8px 22px rgba(19,181,177,0.4);
}
.dest-btn--teal:hover {
  background: var(--teal-d);
  border-color: var(--teal-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(19,181,177,0.5);
  color: #fff;
}
.dest-btn--outline-white {
  background: var(--teal);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.dest-btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

/* ── Columna calculadora (shortcode) ──────────────────────────────────── */
.dest-hero__calc {
  background: #fdfdfd00;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: none;
  border: 2px solid #fff;
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  box-shadow: none;
  overflow: hidden;
  min-width: 0;
  /* Alineación en el grid del hero */
  align-self: center;
  width: 100%;
}
/* Neutralizar animación flotante y forzar colores legibles sobre fondo oscuro */
.dest-hero__calc * { animation: none !important; }

/* El shortcode [shortquote] renderiza su propio título "CALCULA TU SEGURO"
   y campos de formulario — ajustar colores para que sean legibles sobre fondo oscuro */
.dest-hero__calc form,
.dest-hero__calc .shortquote-wrap,
.dest-hero__calc [class*="shortquote"],
.dest-hero__calc [class*="sq-"] {
  background: transparent !important;
  box-shadow: none !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* El primer hijo directo del calc no debe tener margen superior */
.dest-hero__calc > *:first-child {
  margin-top: 0 !important;
}

/* ── Colores blancos del formulario shortquote SOLO en el hero de esta landing ── */

/* Título "CALCULA TU SEGURO" */
.dest-hero__calc .font-bold,
.dest-hero__calc [class*="title"],
.dest-hero__calc [class*="heading"],
.dest-hero__calc h1,
.dest-hero__calc h2,
.dest-hero__calc h3,
.dest-hero__calc h4,
.dest-hero__calc h5,
.dest-hero__calc strong {
  color: #ffffff !important;
}

/* Textos de los campos: Residencia España, Selecciona tu destino, etc. */
.dest-hero__calc select,
.dest-hero__calc input,
.dest-hero__calc label,
.dest-hero__calc p,
.dest-hero__calc span:not([class*="btn"]):not([class*="button"]) {
  color: #ffffff !important;
}

/* Iconos SVG y elementos decorativos dentro del formulario */
.dest-hero__calc svg,
.dest-hero__calc svg path,
.dest-hero__calc svg circle,
.dest-hero__calc svg rect {
  stroke: #ffffff !important;
  fill: none;
}
.dest-hero__calc svg[fill="currentColor"],
.dest-hero__calc svg path[fill="currentColor"] {
  fill: #ffffff !important;
  stroke: none !important;
}

/* Placeholder de los inputs */
.dest-hero__calc input::placeholder {
  color: rgba(255,255,255,0.70) !important;
}

/* Selectores nativos — forzamos blanco en el select cerrado,
   pero los <option> del desplegable deben verse en negro sobre fondo blanco */
.dest-hero__calc select {
  color: #ffffff !important;
  background-color: transparent !important;
}
.dest-hero__calc select option {
  color: #1a1a1a !important;
  background-color: #ffffff !important;
}

/* Bordes de campos: hacerlos ligeramente blancos */
.dest-hero__calc input,
.dest-hero__calc select,
.dest-hero__calc [class*="field"],
.dest-hero__calc [class*="input"] {
  border-color: rgba(255,255,255,0.35) !important;
  background-color: rgba(255,255,255,0.08) !important;
}

/* Toggle / checkbox label */
.dest-hero__calc [class*="toggle"],
.dest-hero__calc [class*="check"] {
  color: #ffffff !important;
}

.dest-calc-hint {
  font-size: 11px;
  color: var(--ink-4);
  text-align: center;
  padding: 10px 16px 6px;
  line-height: 1.5;
  background: #fff;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .dest-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 52px 24px 48px;
  }
  .dest-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(7,39,73,0.88) 0%,
      rgba(13,59,102,0.80) 100%
    );
  }
  .dest-hero__calc {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .dest-hero { min-height: auto; }
  .dest-hero__inner { padding: 40px 16px 36px; }
  .dest-hero__stats { gap: 18px; }
  .dest-hero__ctas  { flex-direction: column; }
  .dest-btn         { justify-content: center; }
}


/* ══════════════════════════════════════════════════════════════════════════
   SECCIÓN TRUST — Alerta TSE + EEAT + Banner asistencia
   Estructura: card alerta | fila 3 cards | banner 2 col
   ══════════════════════════════════════════════════════════════════════════ */

.dest-trust-section {
  background: var(--bg);
  padding: 64px 0 56px;
}

/* Contenedor — mismo ancho que el resto de la página */
.dest-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 50px;
}

/* ── 1. Card alerta TSE ────────────────────────────────────────────────── */
.dest-alert-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 40px 32px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

/* Triángulo decorativo esquina superior derecha — como en el diseño */
.dest-alert-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 80px 80px 0;
  border-color: transparent var(--bg) transparent transparent;
}

/* Badge "Aviso importante" */
.dest-alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.dest-alert-badge .ti {
  font-size: 13px;
  color: var(--warm);
}

/* Título alerta */
.dest-alert-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.dest-alert-highlight {
  color: var(--teal);
  font-style: italic;
}

/* Texto */
.dest-alert-text {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 0 22px;
}

/* Pills informativos */
.dest-alert-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.dest-alert-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
}
.dest-alert-pill .ti { font-size: 14px; }

.dest-alert-pill--warn {
  background: #fef2f2;
  color: var(--danger);
  border: 1px solid #fecaca;
}
.dest-alert-pill--warn .ti { color: var(--danger); }

.dest-alert-pill--ok {
  background: var(--good-bg);
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.dest-alert-pill--ok .ti { color: var(--good); }

/* Badge largo del Ministerio: permite salto de línea y limita anchura */
.dest-alert-pill--ministerio {
  border-radius: 10px;
  max-width: 560px;
  white-space: normal;
  line-height: 1.45;
  align-items: flex-start;
  font-size: 12px;
}


/* ── 2. Fila EEAT: 3 cards horizontales ────────────────────────────────── */
.dest-eeat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.dest-eeat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.22s;
}
.dest-eeat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Icono */
.dest-eeat-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-l);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s;
}
.dest-eeat-card:hover .dest-eeat-icon {
  background: var(--teal);
}
.dest-eeat-icon .ti {
  font-size: 22px;
  color: var(--teal);
  transition: color 0.22s;
}
.dest-eeat-card:hover .dest-eeat-icon .ti {
  color: #fff;
}

/* Texto */
.dest-eeat-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dest-eeat-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.dest-eeat-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--brand);
  margin: 0;
  line-height: 1.3;
}
.dest-eeat-text {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0;
}


/* ── 3. Banner asistencia: imagen izq + card acción dcha ───────────────── */
.dest-assist-banner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 200px;
  box-shadow: var(--shadow-md);
}

/* Columna imagen */
.dest-assist-img {
  position: relative;
  min-height: 260px;          /* altura fija — la imagen se adapta a esto */
}
.dest-assist-img img {
  position: absolute;         /* imagen no empuja el contenedor */
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.dest-assist-img__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7,39,73,0.80) 0%,
    rgba(7,39,73,0.35) 55%,
    rgba(7,39,73,0.10) 100%
  );
}
.dest-assist-img__text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
}
.dest-assist-img__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  line-height: 1.2;
}
.dest-assist-img__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

/* Columna CTA verde oscuro */
.dest-assist-cta {
  background: #ffe781;           /* amarillo corporativo Holins */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 28px;
  text-align: center;
}
.dest-assist-cta__icon {
  width: 52px;
  height: 52px;
  background: rgba(0,0,0,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dest-assist-cta__icon .ti {
  font-size: 26px;
  color: #1a1a1a;                /* icono negro sobre amarillo */
}
.dest-assist-cta__question {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;                /* texto negro para contraste */
  margin: 0;
  line-height: 1.3;
}

/* Botón blanco sobre fondo oscuro */
.dest-btn--white-on-dark {
  background: #fff;
  color: var(--brand);
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  width: 100%;
  letter-spacing: 0.01em;
}
.dest-btn--white-on-dark:hover {
  background: var(--teal-l);
  color: var(--teal-d);
  transform: translateY(-1px);
}
/* Botón oscuro sobre fondo amarillo (usado en banner asistencia) */
.dest-btn--dark-on-yellow {
  background: #1a1a1a;
  color: #ffe781;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 32px;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  width: 100%;
  letter-spacing: 0.02em;
}
.dest-btn--dark-on-yellow:hover {
  background: #333;
  color: #ffe781;
  transform: translateY(-1px);
}




/* ── Responsive Trust Section ────────────────────────────────────────── */
@media (max-width: 900px) {
  .dest-eeat-row           { grid-template-columns: 1fr; gap: 14px; }
  .dest-assist-banner      { grid-template-columns: 1fr; }
  .dest-assist-img         { min-height: 220px; }
  .dest-assist-cta         { padding: 28px 24px; }
  .dest-btn--white-on-dark { width: auto; padding: 12px 36px; }
}
@media (max-width: 600px) {
  .dest-alert-card            { padding: 24px 20px; }
  .dest-alert-title           { font-size: 20px; }
  .dest-trust-section         { padding: 44px 0 40px; }
  .dest-alert-pill--ministerio{ max-width: 100%; border-radius: 8px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   SEGUROS POR PERFIL DE VIAJERO
   ═══════════════════════════════════════════════════════════════════════════ */
.hol-profiles-section {
  background: var(--bg);
}

.hol-profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hol-profile-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.22s;
  cursor: pointer;
}
.hol-profile-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  color: var(--brand);
}

.hol-profile-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--teal-l);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
}
.hol-profile-card__icon .ti {
  font-size: 22px;
  color: var(--teal-d);
  transition: color 0.22s;
}
.hol-profile-card:hover .hol-profile-card__icon {
  background: var(--brand);
}
.hol-profile-card:hover .hol-profile-card__icon .ti {
  color: #fff;
}

.hol-profile-card__title {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.hol-profile-card__arrow {
  font-size: 18px;
  color: var(--ink-3);
  flex-shrink: 0;
  transition: transform 0.22s, color 0.22s;
}
.hol-profile-card:hover .hol-profile-card__arrow {
  transform: translateX(3px);
  color: var(--brand);
}

/* Responsive */
@media (max-width: 900px) {
  .hol-profiles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hol-profiles-grid { grid-template-columns: 1fr; }
}

/*
 * destinos-style.css
 * Hoja de estilos compartida para todas las landing pages de seguros por destino.
 * Ruta: /wp-content-secure/themes/holins/css/destinos-style.css
 *
 * USO: Se enlaza desde cada plantilla PHP de destino:
 *   <link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/destinos-style.css">
 *
 * CLASES: Todas usan prefijo .dest- para evitar colisiones con el tema Salient.
 * No renombrar las clases existentes sin actualizar todos los archivos PHP de destino.
 */

/* ════════════════════════════════════════════════════════════════════════════
   HOLINS — SEGURO DE VIAJE POR DESTINO
   Token system basado en identidad visual corporativa
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Tokens ──────────────────────────────────────────────────────────────── */
:root {
  /* Brand palette */
  --brand:      #0d3b66;
  --brand-d:    #072749;
  --brand-m:    #1a4d80;
  --teal:       #13b5b1;
  --teal-d:     #0e9693;
  --teal-l:     #e6f7f6;
  --warm:       #f59e0b;
  --warm-l:     #fef3c7;

  /* Neutrals */
  --ink:        #1a202c;
  --ink-2:      #4a5568;
  --ink-3:      #718096;
  --ink-4:      #a0aec0;
  --bg:         #f8fafc;
  --line:       #edf2f7;

  /* Status */
  --good:       #10b981;
  --good-bg:    #d1fae5;
  --danger:     #dc2626;

  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Oxygen', sans-serif;

  /* Radii */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  24px;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(13,59,102,0.06);
  --shadow-md: 0 8px 28px rgba(13,59,102,0.10);
  --shadow-lg: 0 20px 60px rgba(13,59,102,0.15);
}

/* ── Eyebrow — texto encima de título + línea amarilla debajo ────────────── */
.dest-eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.dest-eyebrow span {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.dest-eyebrow-line {
  width: 32px;
  height: 3px;
  background: #ffe781;            /* amarillo corporativo Holins */
  border-radius: 2px;
}

/* Eyebrow dentro de sección oscura (CTA final) */
.hol-cta-final .dest-eyebrow span {
  color: rgba(255,255,255,0.75);
}



/* ── Reset & Base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 1px;
}

h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--brand);
}

h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 700; }
h2 { font-size: clamp(24px, 3.5vw, 36px); }
h3 { font-size: clamp(18px, 2.5vw, 22px); }
h4 { font-size: 15px; }

p { color: var(--ink-2); line-height: 1.7; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-d); }

/* Excluir el footer del tema: no debe heredar el color de la landing */
footer a,
footer a:hover {
  color: inherit;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section wrapper ─────────────────────────────────────────────────────── */
.hol-section {
  padding: 80px 0;
}
.hol-section.alt {
  background: var(--bg);
}
.hol-section.dark {
  background: var(--brand);
}
.hol-section.dark h2,
.hol-section.dark h3,
.hol-section.dark p { color: rgba(255,255,255,0.9); }
.hol-section.tight {
  padding: 56px 0;
}

.section-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 52px;
}
.section-head p {
  margin-top: 12px;
  font-size: 16px;
  color: var(--ink-3);
}

/* ── Button system ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  padding: 14px 28px;
  box-shadow: 0 8px 22px rgba(19,181,177,0.35);
}
.btn-primary:hover {
  background: var(--teal-d);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(19,181,177,0.45);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  padding: 12px 24px;
}
.btn-outline:hover {
  background: var(--teal-l);
  color: var(--teal-d);
}
.btn-white {
  background: #fff;
  color: var(--brand);
  padding: 14px 28px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.2);
  color: var(--brand);
}
.btn-xl {
  padding: 18px 42px;
  font-size: 16px;
  border-radius: var(--r-lg);
}

/* ── Breadcrumb ──────────────────────────────────────────────────────────── */




/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */














/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */


/* Overlay textura */


/* Silueta de horizonte */


/* Partículas flotantes eliminadas */











/* Stats */











/* Calculadora en el hero */








/* ═══════════════════════════════════════════════════════════════════════════
   ALERTA / INFORMACIÓN CLAVE
   ═══════════════════════════════════════════════════════════════════════════ */
.hol-alert-section {
  padding: 0;
  background: #fff;
}
.hol-alert {
  background: var(--warm-l);
  border: 1px solid #fde68a;
  border-left: 5px solid var(--warm);
  border-radius: var(--r-md);
  padding: 24px 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: -24px 0 0;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-md);
}
.hol-alert-icon {
  width: 52px;
  height: 52px;
  background: var(--warm);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.hol-alert h3 { color: #92400e; margin-bottom: 6px; font-size: 17px; }
.hol-alert p  { color: #78350f; font-size: 14px; line-height: 1.6; }
.hol-alert b  { color: #78350f; }

/* E-E-A-T cards */
.hol-eeat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.hol-eeat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  text-align: center;
  transition: all 0.25s;
}
.hol-eeat-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.hol-eeat-card .ic-wrap {
  width: 54px;
  height: 54px;
  background: var(--teal-l);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.hol-eeat-card .ic-wrap .ti { font-size: 26px; color: var(--teal); }
.hol-eeat-card .card-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.hol-eeat-card h4 { font-size: 14px; margin-bottom: 6px; color: var(--brand); }
.hol-eeat-card p  { font-size: 12px; line-height: 1.55; }

/* ═══════════════════════════════════════════════════════════════════════════
   TABLA DE COSTES
   ═══════════════════════════════════════════════════════════════════════════ */
.hol-costs-table {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.hol-costs-table table {
  width: 100%;
  border-collapse: collapse;
}
.hol-costs-table thead th {
  background: var(--brand);
  color: #fff;
  text-align: left;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.hol-costs-table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  vertical-align: middle;
}
.hol-costs-table tbody tr:last-child td { border-bottom: none; }
.hol-costs-table tbody tr:nth-child(even) td { background: var(--bg); }
.hol-costs-table tbody tr {
  transition: background 0.2s;
}
.hol-costs-table tbody tr:hover td { background: var(--teal-l); }

.cost-scenario {
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cost-scenario .ti { color: var(--ink-3); font-size: 20px; }
.cost-neg { color: #1a1a1a; font-weight: 600; font-size: 16px; white-space: nowrap; }
.cost-pos {
  color: #13b5b1;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cost-pos .ti { font-size: 18px; }

/* Tabla costes — responsive móvil: tabla → cards */
@media (max-width: 640px) {

  /* Quitar overflow:hidden del contenedor para que las cards no queden cortadas */
  .hol-costs-table {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
    border-radius: 0 !important;
  }

  /* Forzar display block — imprescindible para romper el modelo tabla */
  .hol-costs-table table  { display: block !important; width: 100% !important; }
  .hol-costs-table tbody  { display: block !important; width: 100% !important; }
  .hol-costs-table thead  { display: none !important; }

  /* Cada fila = una card */
  .hol-costs-table tbody tr {
    display: block !important;
    width: 100% !important;
    background: #fff !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--r-md) !important;
    box-shadow: var(--shadow-sm) !important;
    margin-bottom: 12px !important;
    overflow: hidden !important;
  }
  .hol-costs-table tbody tr:last-child { margin-bottom: 0 !important; }

  /* Todas las celdas: block por defecto */
  .hol-costs-table tbody td {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Primera celda: cabecera de la card */
  .hol-costs-table tbody td:first-child {
    padding: 14px 16px 12px !important;
    border-bottom: 2px solid var(--line) !important;
    background: var(--bg) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--ink) !important;
    border-right: none !important;
  }

  /* Celdas con data-label: label izquierda + valor derecha */
  .hol-costs-table tbody td[data-label] {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 11px 16px !important;
    border-bottom: 1px solid var(--line) !important;
    font-size: 13px !important;
    border-right: none !important;
  }
  .hol-costs-table tbody td[data-label]:last-child { border-bottom: none !important; }

  /* Label auto desde data-label */
  .hol-costs-table tbody td[data-label]::before {
    content: attr(data-label);
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Valores sin corte */
  .hol-costs-table .cost-neg {
    font-size: 13px !important;
    white-space: normal !important;
    text-align: right !important;
  }
  .hol-costs-table .cost-pos {
    font-size: 13px !important;
    gap: 4px !important;
    justify-content: flex-end !important;
    flex-wrap: wrap !important;
    text-align: right !important;
  }
  .hol-costs-table .cost-pos .ti { font-size: 15px !important; flex-shrink: 0 !important; }
  .hol-costs-table .cost-scenario { font-size: 13px !important; gap: 8px !important; }
  .hol-costs-table .cost-scenario .ti { font-size: 18px !important; }
}

.hol-stat-banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-m) 60%, var(--teal-d) 130%);
  border-radius: var(--r-md);
  padding: 20px 28px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hol-stat-banner::after {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.hol-stat-banner .big {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: #fde68a;
  line-height: 1;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.hol-stat-banner p {
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  line-height: 1.55;
}
.hol-stat-banner b { color: #fde68a; }
@media (max-width: 480px) {
  .hol-stat-banner        { flex-direction: column; align-items: flex-start; gap: 8px; padding: 20px; }
  .hol-stat-banner .big   { font-size: 36px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PLANES / PRICING
   ═══════════════════════════════════════════════════════════════════════════ */
.hol-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.hol-plan {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 24px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.hol-plan:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.hol-plan.featured {
  border-color: var(--teal);
  box-shadow: 0 16px 40px rgba(19,181,177,0.2);
  transform: translateY(-8px);
}
.hol-plan.featured:hover {
  transform: translateY(-12px);
}

.hol-plan-badge {
  position: absolute;
  top: -14px;
  left: 16px;
  right: 16px;
  text-align: center;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 4px 12px rgba(19,181,177,0.4);
  letter-spacing: 0.03em;
}
.hol-plan-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.hol-plan-coverage {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hol-plan-coverage-sub {
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.hol-plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.hol-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 7px 0;
  font-size: 13px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.hol-plan-features li:last-child { border-bottom: none; }
.hol-plan-features li .ti { color: var(--good); font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.hol-plan-price-label {
  font-size: 11px;
  color: var(--ink-3);
  margin-bottom: 3px;
}
.hol-plan-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.hol-plan-price span {
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 400;
}

.hol-plan-cta {
  width: 100%;
  border: 2px solid var(--teal);
  background: transparent;
  color: var(--teal);
  border-radius: var(--r-md);
  padding: 13px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.22s;
}
.hol-plan-cta:hover {
  background: var(--teal-l);
}
.hol-plan.featured .hol-plan-cta {
  background: var(--teal);
  color: #fff;
}
.hol-plan.featured .hol-plan-cta:hover {
  background: var(--teal-d);
}

/* El precio es ahora el último elemento de la card: limpiamos el margen sobrante */
.hol-plan-price:last-child { margin-bottom: 0; }

.hol-plans-note {
  text-align: center;
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .hol-plans-note { font-size: 17px; margin-top: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   COBERTURAS (grid de iconos)
   ═══════════════════════════════════════════════════════════════════════════ */
.hol-cov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hol-cov-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.hol-cov-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.hol-cov-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(19,181,177,0.1);
  transform: translateY(-3px);
}
.hol-cov-card:hover::after {
  transform: scaleX(1);
}
.hol-cov-icon {
  width: 58px;
  height: 58px;
  background: var(--teal-l);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.25s;
}
.hol-cov-card:hover .hol-cov-icon {
  background: var(--teal);
}
.hol-cov-icon .ti {
  font-size: 26px;
  color: var(--teal);
  transition: color 0.25s;
}
.hol-cov-card:hover .hol-cov-icon .ti {
  color: #fff;
}
.hol-cov-card h4 { font-size: 14px; margin-bottom: 6px; color: var(--brand); }
.hol-cov-card p  { font-size: 12px; line-height: 1.5; }

/* Banner cruceros */
.hol-cruise-banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-m) 50%, var(--teal-d) 100%);
  border-radius: var(--r-lg);
  padding: 38px 42px;
  color: #fff;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 32px;
}
.hol-cruise-banner::before {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.hol-cruise-banner::after {
  content: '';
  position: absolute;
  right: 40px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.hol-cruise-icon {
  width: 76px;
  height: 76px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.hol-cruise-icon .ti { font-size: 36px; color: #fff; }
.hol-cruise-body { position: relative; z-index: 2; }
.hol-cruise-tag {
  display: inline-block;
  background: rgba(253,230,138,0.25);
  color: #fde68a;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hol-cruise-body h3 { color: #fff; margin-bottom: 6px; }
.hol-cruise-body p  { color: rgba(255,255,255,0.85); font-size: 13px; max-width: 480px; }
.hol-cruise-cta     { position: relative; z-index: 2; }

/* ═══════════════════════════════════════════════════════════════════════════
   TABLA VS (TSE)
   ═══════════════════════════════════════════════════════════════════════════ */
.hol-vs-table {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.hol-vs-table table {
  width: 100%;
  border-collapse: collapse;
}
.hol-vs-table thead th {
  background: var(--bg);
  text-align: left;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-bottom: 1px solid var(--line);
}
.hol-vs-table tbody td {
  padding: 16px 22px;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.hol-vs-table tbody tr:last-child td { border-bottom: none; }
.hol-vs-table tbody td:first-child { font-weight: 500; color: var(--ink); }
.vs-no {
  color: #1a1a1a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.vs-yes {
  color: #13b5b1;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
/* Cobertura opcional — ámbar neutro, ni sí ni no */
.vs-opt {
  color: #92610a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.vs-opt .ti { color: #d97706; font-size: 16px; }

.hol-vs-table tbody tr.win-row td {
  background: linear-gradient(90deg, var(--teal-l) 0%, #fff 100%);
}
.hol-vs-table tbody tr.win-row td:first-child {
  color: var(--brand);
}
.hol-vs-table tbody tr.win-row td:first-child::before {
  content: '★ ';
  color: var(--warm);
  font-size: 12px;
}

/* Responsive: la tabla no cabe en pantallas pequeñas, se habilita scroll horizontal
   en vez de cortar/envolver el contenido de las columnas */
@media (max-width: 768px) {
  .hol-vs-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .hol-vs-table table {
    min-width: 640px;
  }
  .hol-vs-table thead th,
  .hol-vs-table tbody td {
    white-space: nowrap;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ACTIVIDADES
   ═══════════════════════════════════════════════════════════════════════════ */
.hol-acts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.hol-act-card {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.25s;
  cursor: pointer;
}
.hol-act-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
/* Cards actividades — imagen real */
.hol-act-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md) var(--r-md) 0 0;
}
.hol-act-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}
.hol-act-card:hover .hol-act-img img {
  transform: scale(1.06);
}
.hol-act-img__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7,39,73,0.45) 0%,
    rgba(7,39,73,0.10) 60%,
    transparent 100%
  );
  transition: background 0.3s;
}
.hol-act-card:hover .hol-act-img__overlay {
  background: linear-gradient(
    to top,
    rgba(7,39,73,0.55) 0%,
    rgba(7,39,73,0.15) 60%,
    transparent 100%
  );
}




/* Relacionados */





.hol-act-body { padding: 14px 18px 18px; }
.hol-act-body h4 { font-size: 14px; color: var(--brand); margin-bottom: 4px; }
.hol-act-body .loc {
  font-size: 12px;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 4px;
}

.hol-cities-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  justify-content: center;
}
.hol-city-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--ink-2);
  transition: all 0.2s;
}
.hol-city-chip:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.hol-city-chip .ti { color: var(--teal); font-size: 12px; }

/* ═══════════════════════════════════════════════════════════════════════════
   PROTOCOLO / PASOS
   ═══════════════════════════════════════════════════════════════════════════ */
.hol-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.hol-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 12px);
  right: calc(10% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, rgba(19,181,177,0.2) 100%);
  z-index: 0;
}
.hol-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 14px 18px;
  text-align: center;
  position: relative;
  transition: all 0.25s;
}
.hol-step:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.hol-step-num {
  width: 52px;
  height: 52px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 6px 16px rgba(19,181,177,0.35);
  transition: transform 0.25s;
}
.hol-step:hover .hol-step-num {
  transform: scale(1.08);
}
.hol-step h4 { font-size: 13px; color: var(--brand); margin-bottom: 6px; }
.hol-step p  { font-size: 12px; line-height: 1.5; }

.hol-call-bar {
  background: linear-gradient(135deg, var(--teal-l) 0%, #fff 100%);
  border: 1.5px solid rgba(19,181,177,0.25);
  border-radius: var(--r-md);
  padding: 26px 36px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.hol-call-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.hol-call-icon {
  width: 58px;
  height: 58px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hol-call-icon .ti { font-size: 28px; color: #fff; }
.hol-call-label { font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.hol-call-tel {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.01em;
}
.hol-call-tel a { color: var(--brand); }

/* ═══════════════════════════════════════════════════════════════════════════
   SEGURIDAD
   ═══════════════════════════════════════════════════════════════════════════ */
.hol-safe-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
}
.hol-safe-source {
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hol-safe-source .ti { color: var(--teal); }
.hol-safe-grid h3 { margin-bottom: 12px; }
.hol-safe-grid p  { margin-bottom: 16px; font-size: 15px; line-height: 1.75; color: var(--ink-2); }
.hol-safe-link {
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hol-safe-link:hover { color: var(--teal-d); }

.hol-safe-visual {
  height: 200px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--danger) 0%, var(--warm) 50%, var(--brand) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hol-safe-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}
.hol-safe-visual .ti {
  font-size: 64px;
  color: rgba(255,255,255,0.9);
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.3));
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESEÑAS / PRUEBA SOCIAL
   ═══════════════════════════════════════════════════════════════════════════ */



/* Swiper reviews */

.swiper-slide { height: auto; }




/* ═══════════════════════════════════════════════════════════════════════════
   FAQ — ACORDEÓN
   ═══════════════════════════════════════════════════════════════════════════ */
.hol-faqs {
  max-width: 780px;
  margin: 0 auto;
}
.hol-faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hol-faq.open {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(19,181,177,0.08);
}
.hol-faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.hol-faq-header:hover { background: var(--bg); }
.hol-faq-question {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand);
  line-height: 1.4;
}
.hol-faq-icon {
  width: 32px;
  height: 32px;
  background: var(--teal-l);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}
.hol-faq-icon .ti { font-size: 15px; transition: transform 0.3s; }
.hol-faq.open .hol-faq-icon { background: var(--teal); color: #fff; }
.hol-faq.open .hol-faq-icon .ti { transform: rotate(180deg); }

.hol-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.hol-faq.open .hol-faq-body {
  max-height: 400px;
}
.hol-faq-body-inner {
  padding: 0 24px 20px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════════════════════════ */
.hol-cta-final {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-d) 55%, #0e7490 120%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hol-cta-final::before {
  content: '';
  position: absolute;
  left: -100px;
  top: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(19,181,177,0.22) 0%, transparent 60%);
  border-radius: 50%;
}
.hol-cta-final::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(245,158,11,0.14) 0%, transparent 60%);
  border-radius: 50%;
}
.hol-cta-inner { position: relative; }
.hol-cta-final h2 { color: #fff; font-size: clamp(26px,4vw,38px); margin-bottom: 10px; }
.hol-cta-final .lead {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  margin-bottom: 8px;
}
.hol-cta-features {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 22px 0 32px;
}
.hol-cta-feat {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 7px;
}
.hol-cta-feat .ti { color: var(--teal); font-size: 17px; }
.hol-cta-final .microcopy {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hol-cta-final .microcopy .ti { color: #fde68a; font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════════════════
   RELACIONADOS
   ═══════════════════════════════════════════════════════════════════════════ */
.hol-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.hol-related-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.hol-related-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
/* Cards destinos relacionados — imagen real */
.hol-related-img {
  height: 150px;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md) var(--r-md) 0 0;
}
.hol-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}
.hol-related-card:hover .hol-related-img img {
  transform: scale(1.06);
}
.hol-related-img__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7,39,73,0.50) 0%,
    rgba(7,39,73,0.15) 55%,
    transparent 100%
  );
  transition: background 0.3s;
}
.hol-related-card:hover .hol-related-img__overlay {
  background: linear-gradient(
    to top,
    rgba(7,39,73,0.65) 0%,
    rgba(7,39,73,0.20) 55%,
    transparent 100%
  );
}
.hol-related-body { padding: 14px 18px 18px; }
.hol-related-body h4 { font-size: 14px; color: var(--brand); margin-bottom: 4px; }
.hol-related-body .price { font-size: 12px; color: var(--ink-3); }



/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {


  .hol-plans-grid      { grid-template-columns: 1fr; }
  .hol-plan.featured   { transform: none; }
  .hol-cov-grid        { grid-template-columns: repeat(3, 1fr); }
  .hol-acts-grid       { grid-template-columns: repeat(2, 1fr); }
  .hol-related-grid    { grid-template-columns: repeat(2, 1fr); }
  .hol-steps           { grid-template-columns: repeat(2, 1fr); }
  .hol-steps::before   { display: none; }
  .hol-safe-grid       { grid-template-columns: 1fr; }


  .hol-eeat-grid       { grid-template-columns: 1fr; }
  .hol-cruise-banner   { grid-template-columns: 1fr; text-align: center; }
  .hol-cruise-icon     { margin: 0 auto; }

}

@media (max-width: 680px) {
  .hol-cov-grid        { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hol-section         { padding: 52px 0; }
  .hol-cov-grid        { grid-template-columns: 1fr; }
  .hol-acts-grid       { grid-template-columns: 1fr; }
  .hol-related-grid    { grid-template-columns: 1fr 1fr; }
  .hol-steps           { grid-template-columns: 1fr; }



  .hol-call-bar        { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMACIONES AOS
   ═══════════════════════════════════════════════════════════════════════════ */
[data-aos] { will-change: transform, opacity; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* ── Accesibilidad ───────────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   REVIEWS — Grid fijo 2x2 (4 opiniones visibles a la vez)
   ══════════════════════════════════════════════════════════════════════════ */

.dest-reviews-section { background: #fff; }

/* Layout: caja rating izq + grid 2x2 dcha */
.dest-reviews-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start;
}

/* Caja de puntuación */
.dest-rating-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}
.dest-rating-stars {
  color: var(--warm);
  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.dest-rating-score {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.03em;
}
.dest-rating-score span {
  font-size: 22px;
  color: var(--ink-3);
  font-weight: 400;
}
.dest-rating-src {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 6px;
}
.dest-rating-vol {
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  line-height: 1.5;
}
.dest-rating-vol strong {
  color: var(--teal);
  font-size: 20px;
  font-family: var(--font-display);
}

/* Grid 2x2 de tarjetas */
.dest-reviews-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Tarjeta individual */
.dest-review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 24px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.dest-review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Cabecera: avatar + nombre/fecha */
.dest-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.dest-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.dest-review-avatar--teal  { background: var(--teal); }
.dest-review-avatar--brand { background: var(--brand); }

.dest-review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.dest-review-date {
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 2px;
}

/* Estrellas */
.dest-review-stars {
  color: var(--warm);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* Texto reseña */
.dest-review-text {
  font-size: 13px;
  color: var(--ink-2);
  font-style: italic;
  line-height: 1.65;
  margin: 0;
}

/* Responsive reviews */
@media (max-width: 900px) {
  .dest-reviews-grid { grid-template-columns: 1fr; }
  .dest-rating-box   { position: static; }
  .dest-reviews-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .dest-reviews-cards { grid-template-columns: 1fr; }
}


/* Banner asistencia al final de página */
/* ═══════════════════════════════════════════════════════════════════════════
   SECCIÓN CANALES DE CONTACTO
   ═══════════════════════════════════════════════════════════════════════════ */
.dest-contact-section {
  background: var(--bg);
  padding: 64px 0;
}

.dest-contact-card {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 300px;
  overflow: hidden;
}

/* ── Columna izquierda ────────────────────────────────────────────────── */
.dest-contact-left {
  padding: 44px 40px;
  border-right: 1px solid var(--line);
}

.dest-contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.dest-contact-eyebrow .ti { font-size: 16px; }

.dest-contact-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.2;
}

.dest-contact-sub {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 520px;
}

/* Grid de canales */
.dest-contact-channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.dest-contact-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dest-contact-channel:hover {
  border-color: var(--brand);
  box-shadow: 0 2px 8px rgba(0,84,163,0.08);
}

.dest-contact-channel__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dest-contact-channel__icon .ti { font-size: 20px; color: #fff; }

.dest-contact-channel__icon--phone   { background: var(--brand); }
.dest-contact-channel__icon--whatsapp{ background: #25d366; }
.dest-contact-channel__icon--chat    { background: #0ea5e9; }
.dest-contact-channel__icon--email   { background: #6366f1; }
.dest-contact-channel__icon--social  { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

.dest-contact-channel__name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.dest-contact-channel__detail {
  display: block;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.3;
  margin-top: 2px;
}

/* ── Canales interactivos (chat, email) ───────────────────────────────── */
.dest-contact-channel--action {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.dest-contact-channel--action:active {
  transform: translateY(1px);
}
.dest-contact-channel--action:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-color: var(--brand);
}

/* ── Redes sociales: dos iconos separados ─────────────────────────────── */
.dest-contact-channel--social {
  justify-content: space-between;
}
.dest-contact-channel__social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.dest-contact-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.dest-contact-social-icon .ti { font-size: 20px; color: #fff; }
.dest-contact-social-icon--ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.dest-contact-social-icon--fb { background: #1877f2; }
.dest-contact-social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  opacity: 0.95;
}
.dest-contact-social-icon:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* ── Toast "Correo copiado" ───────────────────────────────────────────── */
.dest-copy-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(12px);
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100vw - 32px);
  padding: 12px 18px;
  border-radius: 999px;
  background: #16223a;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.dest-copy-toast .ti { font-size: 18px; color: #25d366; }
.dest-copy-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ── Columna derecha: CTAs ────────────────────────────────────────────── */
.dest-contact-right {
  background: #ffe781;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
}

.dest-contact-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: center;
}

.dest-contact-cta-icon {
  width: 56px;
  height: 56px;
  background: rgba(0,0,0,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dest-contact-cta-icon .ti { font-size: 28px; color: #1a1a1a; }

.dest-contact-cta-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}

.dest-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 20px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s;
  letter-spacing: 0.02em;
}
.dest-contact-btn .ti { font-size: 18px; }

/* Botón llamar — oscuro sobre amarillo */
.dest-contact-btn.dest-btn--dark-on-yellow {
  background: #1a1a1a;
  color: #ffe781;
  border: none;
}
.dest-contact-btn.dest-btn--dark-on-yellow:hover {
  background: #333;
  transform: translateY(-1px);
}

/* Botón WhatsApp */
.dest-contact-btn--whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
}
.dest-contact-btn--whatsapp:hover {
  background: #1db954;
  transform: translateY(-1px);
}

.dest-contact-cta-note {
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}
.dest-contact-cta-note .ti { font-size: 15px; }

/* ── DOCUMENTOS DE PÓLIZAS — Condicionado y IPID por Europ Assistance ─────────────────────────────── */


.dest-docs-grid {
  display: grid;
  grid-template-columns: 40% 57%; 
  gap: 48px;
  align-items: center;
}

@media(max-width:1300px){
  .dest-docs-grid {
  grid-template-columns: 40% 55% !important; 
}
}

/* ── Columna izquierda ────────────────────────────────────────────────── */
.dest-docs-logo {
  height: 80px;   /* Tamaño solicitado ≈80px, como en el diseño */
  width: auto;
  max-width: 100%;
  margin-bottom: 22px;
}

.dest-docs-title {
  font-size: clamp(20px, 2vw, 24px);
  text-transform: uppercase;
  color: var(--teal-d);
  margin-bottom: 14px;
}

.dest-docs-line {
  width: 40px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 18px;
}

.dest-docs-text {
  font-size: 15px;
  color: var(--ink-2);
}

/* ── Columna derecha: grid de cards-botón ────────────────────────────── */
.dest-docs-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 arriba + 3 abajo */
  gap: 20px;
}

.dest-docs-card {
  background: #fff;
  border: 1px solid var(--teal);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  min-height: 150px;
  transition: background 0.22s, border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}
.dest-docs-card:hover,
.dest-docs-card:focus-visible {
  background: var(--brand);   /* Azul corporativo al hacer hover */
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.dest-docs-card__icon .ti {
  font-size: 30px;
  color: var(--teal);
  transition: color 0.22s;
}
.dest-docs-card:hover .dest-docs-card__icon .ti,
.dest-docs-card:focus-visible .dest-docs-card__icon .ti {
  color: #fff;
}

.dest-docs-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  color: var(--teal-d);
  transition: color 0.22s;
}
.dest-docs-card:hover .dest-docs-card__title,
.dest-docs-card:focus-visible .dest-docs-card__title {
  color: #fff;
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .dest-docs-grid  { grid-template-columns: 1fr; gap: 32px; }
  .dest-docs-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .dest-docs-cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .dest-docs-card  { padding: 22px 14px; min-height: 130px; }
}
@media (max-width: 480px) {
  .dest-docs-cards { grid-template-columns: 1fr; }
}


/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .dest-contact-card            { grid-template-columns: 1fr; }
  .dest-contact-left            { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 28px; }
  .dest-contact-right           { padding: 28px 24px; }
}
@media (max-width: 560px) {
  .dest-contact-channels        { grid-template-columns: 1fr; }
  .dest-contact-title           { font-size: 22px; }
  .dest-contact-left            { padding: 28px 20px; }
  .dest-contact-right           { padding: 24px 20px; }
}

/* ────────────────────────────────────────────────────────────────────────── */
.dest-assist-final {
  background: var(--bg);
  padding: 0 0 64px;
}
.dest-assist-final .dest-assist-banner {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ── Sección seguridad — texto descriptivo ───────────────────────────────── */
.dest-safe-desc {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  margin: 12px 0 20px;
  max-width: 560px;
}
