/* ============================================
   HOTELESPLUS — destino.css
   Estilos exclusivos de la página de destino
============================================ */

/* ---- UTILIDAD 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: 0;
}

/* ============================
   HERO DESTINO
============================= */
.destino-hero {
  position: relative;
  padding-top: 80px; /* altura navbar */
  background: linear-gradient(135deg, #1a3a5c 0%, #2d6a9f 60%, #f07a26 100%);
  overflow: hidden;
}
.destino-hero--madrid    { background: linear-gradient(135deg, #1a3a5c 0%, #8e1c1c 100%); }
.destino-hero--barcelona { background: linear-gradient(135deg, #1a3a5c 0%, #c27a00 100%); }
.destino-hero--sevilla   { background: linear-gradient(135deg, #7a3500 0%, #c2930b 100%); }
.destino-hero--mallorca  { background: linear-gradient(135deg, #0d4f6e 0%, #1a9a6b 100%); }

.destino-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(240,122,38,.2) 0%, transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.04) 0%, transparent 50%);
  pointer-events: none;
}

.destino-hero-content {
  position: relative; z-index: 1;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-lg);
}

/* Breadcrumb */
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}
.breadcrumb li { font-size: 0.82rem; color: rgba(255,255,255,.65); }
.breadcrumb a  { color: rgba(255,255,255,.75); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb [aria-current="page"] { color: white; font-weight: 600; }

.destino-hero-body { max-width: 680px; }

.destino-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0,0,0,.4);
  color: white;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.destino-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: white;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: var(--space-sm);
}

.destino-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin-bottom: var(--space-lg);
  line-height: 1.65;
}

/* Stats del hero */
.destino-hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.dhs-item { display: flex; flex-direction: column; gap: 0.2rem; }
.dhs-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}
.dhs-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.75);
}

/* Quick nav */
.destino-quicknav {
  position: relative; z-index: 2;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.quicknav-list {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.quicknav-list::-webkit-scrollbar { display: none; }
.quicknav-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.quicknav-link:hover,
.quicknav-link.active {
  color: white;
  border-bottom-color: var(--color-accent);
}

/* ============================
   DATOS RÁPIDOS
============================= */
.datos-rapidos {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-md) 0;
}
.datos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.dato-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.dato-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.dato-content { display: flex; flex-direction: column; gap: 0.15rem; }
.dato-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}
.dato-value { font-size: 0.88rem; color: var(--color-text); font-weight: 500; }

/* ============================
   ANTES DE RESERVAR
============================= */
.antes-reservar {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}
.ar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.ar-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.ar-card:hover, .ar-card:focus {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ar-card--featured {
  grid-column: span 2;
}

.ar-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: var(--space-md) var(--space-md) 0;
  flex-wrap: wrap;
}
.ar-icon { font-size: 1.5rem; flex-shrink: 0; }
.ar-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  flex: 1;
}
.ar-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.ar-badge--warn { background: #fff3cd; color: #856404; }
.ar-badge--info { background: #cfe2ff; color: #084298; }
.ar-badge--ok   { background: #d1e7dd; color: #0a3622; }

.ar-card-body { padding: var(--space-sm) var(--space-md) var(--space-md); flex: 1; }
.ar-card-body > p:first-child { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 0.75rem; }

.ar-tip {
  font-size: 0.84rem;
  background: rgba(240,122,38,.08);
  border-left: 3px solid var(--color-accent);
  padding: 0.6rem 0.85rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 0.75rem;
  color: var(--color-text);
  line-height: 1.5;
}

.ar-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
}
.ar-link:hover { text-decoration: underline; }

/* Noise zones */
.noise-zones { display: flex; flex-direction: column; gap: 0.6rem; margin: 0.75rem 0; }
.noise-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
}
.noise-item > div { display: flex; flex-direction: column; gap: 0.1rem; }
.noise-item strong { color: var(--color-text); }
.noise-item span { color: var(--color-text-muted); font-size: 0.82rem; }

.noise-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.noise-high .noise-dot  { background: #e74c3c; box-shadow: 0 0 0 3px rgba(231,76,60,.2); }
.noise-mid  .noise-dot  { background: #f39c12; box-shadow: 0 0 0 3px rgba(243,156,18,.2); }
.noise-low  .noise-dot  { background: #2ecc71; box-shadow: 0 0 0 3px rgba(46,204,113,.2); }

.noise-level { font-weight: 700; font-size: 0.82rem; }
.noise-high-text { color: #c0392b; }
.noise-mid-text  { color: #d4890a; }
.noise-low-text  { color: #1a8a4a; }

/* Info DL */
.info-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  font-size: 0.86rem;
}
.info-dl dt {
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}
.info-dl dd { color: var(--color-text-muted); }

/* Info list */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.86rem;
}
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}
.info-list strong { color: var(--color-text); }

/* Entorno grid */
.entorno-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.entorno-item {
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.83rem;
}
.entorno-item > span:first-child { font-size: 1.2rem; }
.entorno-item strong { color: var(--color-text); }
.entorno-item > span:last-child { color: var(--color-text-muted); line-height: 1.4; }

/* Comparativa table */
.comparativa-table { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--color-border); font-size: 0.84rem; }
.ct-header, .ct-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
}
.ct-header {
  background: var(--color-primary);
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
}
.ct-header span, .ct-row span { padding: 0.55rem 0.75rem; }
.ct-row { border-top: 1px solid var(--color-border); }
.ct-row:nth-child(even) { background: var(--color-bg); }
.ct-good  { color: #1a7a40; font-weight: 600; }
.ct-mid   { color: #7a5a00; }
.ct-bad   { color: #7a1a1a; }

/* ============================
   ZONAS
============================= */
.zonas {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}
.zonas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.zona-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.zona-card:hover, .zona-card:focus {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.zona-header {
  padding: var(--space-md);
  color: white;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.zona-header h3 { font-size: 1.15rem; font-weight: 800; }
.zona-header--centro    { background: linear-gradient(135deg, #c0392b, #8e44ad); }
.zona-header--salamanca { background: linear-gradient(135deg, #1a3a5c, #2d6a9f); }
.zona-header--malasana  { background: linear-gradient(135deg, #8e44ad, #e91e8c); }
.zona-header--retiro    { background: linear-gradient(135deg, #1a7a40, #2d6a9f); }

.zona-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.ztag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(0,0,0,.3);
  color: white;
}

.zona-body { padding: var(--space-md); }

.zona-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3rem 0.85rem;
  font-size: 0.86rem;
  margin-bottom: var(--space-sm);
}
.zona-dl dt { font-weight: 700; color: var(--color-text); white-space: nowrap; }
.zona-dl dd { color: var(--color-text-muted); }

.zona-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.pros, .cons { font-size: 0.82rem; }
.pros h4, .cons h4 {
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}
.pros ul, .cons ul { display: flex; flex-direction: column; gap: 0.3rem; }
.pros li, .cons li { color: var(--color-text-muted); }

/* ============================
   HOTELES DESTACADOS
============================= */
.hoteles-section {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

/* Filtros */
.hoteles-filtros {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}
.filtro-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-border);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-surface);
  transition: all var(--transition);
}
.filtro-btn:hover,
.filtro-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

/* Grid hoteles */
.hoteles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.hotel-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hotel-card:hover, .hotel-card:focus {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.hotel-card.hidden { display: none; }

.hotel-img {
  height: 160px;
  position: relative;
}
.hotel-img--1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.hotel-img--2 { background: linear-gradient(135deg, #11998e, #38ef7d); }
.hotel-img--3 { background: linear-gradient(135deg, #f093fb, #f5576c); }

.hotel-badges {
  position: absolute;
  top: 0.6rem; left: 0.6rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.hbadge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,.55);
  color: white;
  backdrop-filter: blur(4px);
}
.hbadge--checkin  { background: rgba(26,58,92,.8); }
.hbadge--directo  { background: rgba(240,122,38,.85); }
.hbadge--family   { background: rgba(46,204,113,.85); }
.hbadge--pets     { background: rgba(52,152,219,.85); }
.hbadge--value    { background: rgba(155,89,182,.85); }

.hotel-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.hotel-stars { font-size: 0.85rem; color: #f39c12; letter-spacing: 1px; }
.hotel-name { font-size: 1rem; font-weight: 700; color: var(--color-primary); }
.hotel-zona {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.hotel-zona svg { width: 13px; height: 13px; flex-shrink: 0; }

.hotel-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin: 0.25rem 0;
}
.spec-item {
  font-size: 0.75rem;
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 500;
}
.spec-ok   { background: #d1fae5; color: #065f46; }
.spec-warn { background: #fef3c7; color: #78350f; }
.spec-bad  { background: #fee2e2; color: #7f1d1d; }

.hotel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}
.hotel-price { display: flex; align-items: baseline; gap: 0.2rem; }
.price-desde { font-size: 0.72rem; color: var(--color-text-muted); }
.price-amount { font-size: 1.3rem; font-weight: 800; color: var(--color-primary); }
.price-night { font-size: 0.72rem; color: var(--color-text-muted); }

.btn-ver-hotel {
  display: inline-flex;
  align-items: center;
  background: var(--color-primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-ver-hotel:hover { background: var(--color-accent); }

.hoteles-cta { text-align: center; }

/* ============================
   TEMPORADA
============================= */
.temporada {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}
.temp-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.5rem;
  align-items: end;
  margin-bottom: var(--space-md);
}
.temp-mes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.temp-mes-nombre {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
}
.temp-bar-wrap {
  width: 100%;
  height: 80px;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.temp-bar {
  width: 100%;
  border-radius: var(--radius-sm);
  transition: height 0.5s ease;
}
.temp-best .temp-bar { background: var(--color-accent); }
.temp-good .temp-bar { background: #3498db; }
.temp-low  .temp-bar { background: var(--color-border); }

.temp-precio { font-size: 0.9rem; }
.temp-clima {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-align: center;
}

.temp-leyenda {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.tl-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 0.3rem;
}
.tl-best { background: var(--color-accent); }
.tl-good { background: #3498db; }
.tl-low  { background: var(--color-border); }

/* ============================
   CÓMO LLEGAR
============================= */
.como-llegar {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}
.cl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.cl-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cl-card:hover, .cl-card:focus {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.cl-icon { font-size: 2rem; display: block; margin-bottom: 0.6rem; }
.cl-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}
.cl-card p {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

/* ============================
   FAQ
============================= */
.faq {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}
.faq-inner { max-width: 760px; }

.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md);
  text-align: left;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--color-primary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--color-bg); }
.faq-question[aria-expanded="true"] {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-accent);
  transition: transform var(--transition);
  line-height: 1;
  width: 24px;
  text-align: center;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: var(--space-md);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  animation: fadeSlideIn 0.25s ease;
}
.faq-answer strong { color: var(--color-text); }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================
   DESTINOS RELACIONADOS
============================= */
.relacionados {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}
.rel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}
.rel-card {
  position: relative;
  border-radius: var(--radius-md);
  min-height: 160px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: transform var(--transition);
}
.rel-card:hover { transform: scale(1.03); }

.rel-card--toledo    { background: linear-gradient(135deg, #7a3500 0%, #c2930b 100%); }
.rel-card--segovia   { background: linear-gradient(135deg, #1a3a5c 0%, #6b8f9e 100%); }
.rel-card--salamanca { background: linear-gradient(135deg, #7a1a1a 0%, #c27a00 100%); }
.rel-card--avila     { background: linear-gradient(135deg, #3d5a3e 0%, #1a3a5c 100%); }

.rel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 60%);
}
.rel-info {
  position: relative; z-index: 1;
  padding: var(--space-sm);
  color: white;
}
.rel-info h3 { font-size: 1.1rem; font-weight: 800; }
.rel-info span { font-size: 0.78rem; opacity: .8; }

/* ============================
   RESPONSIVE DESTINO
============================= */
@media (max-width: 1024px) {
  .ar-grid { grid-template-columns: repeat(2, 1fr); }
  .ar-card--featured { grid-column: span 2; }
  .cl-grid { grid-template-columns: repeat(2, 1fr); }
  .datos-grid { grid-template-columns: repeat(2, 1fr); }
  .hoteles-grid { grid-template-columns: repeat(2, 1fr); }
  .temp-grid { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 768px) {
  .ar-grid { grid-template-columns: 1fr; }
  .ar-card--featured { grid-column: auto; }
  .zonas-grid { grid-template-columns: 1fr; }
  .hoteles-grid { grid-template-columns: 1fr; }
  .rel-grid { grid-template-columns: repeat(2, 1fr); }
  .entorno-grid { grid-template-columns: 1fr; }
  .destino-hero-stats { flex-wrap: wrap; gap: var(--space-md); }
}

@media (max-width: 480px) {
  .datos-grid { grid-template-columns: 1fr 1fr; }
  .cl-grid { grid-template-columns: 1fr; }
  .temp-grid { grid-template-columns: repeat(4, 1fr); }
  .rel-grid { grid-template-columns: 1fr 1fr; }
  .zona-pros-cons { grid-template-columns: 1fr; }
  .hotel-specs { grid-template-columns: 1fr; }
  .comparativa-table { font-size: 0.78rem; }
}