/* =====================================================================
   rates.css — página de tarifas (rates.html en EN/ES/DE/FR) · 2026-09-10
   Sustituye a los bloques inline <style id="rates-page-fix"> y
   <style id="official-auth-css">. Se carga después de styles.min.css,
   por eso las reglas móviles usan la especificidad "html body.rates-page"
   para ganar a las capas antiguas de styles.css.
   Se regenera el HTML con: python _tools/aj_rates_build.py
   ===================================================================== */

/* ── 1. Navbar escritorio: fija y opaca ─────────────────────────────── */
@media (min-width: 969px) {
  body.rates-page .navbar {
    position: fixed !important;
    background: rgba(10, 35, 66, 0.97) !important;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2) !important;
  }
  body.rates-page .navbar .logo { flex: 0 0 auto !important; margin-right: 28px !important; }
  /* styles.css centra el menú con position:absolute + translateX(-50%) y se monta sobre el logo */
  body.rates-page .navbar ul.nav-links {
    position: static !important;
    left: auto !important;
    transform: none !important;
    width: auto !important;
    margin: 0 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 0 6px !important;
  }
  body.rates-page .navbar ul.nav-links li { margin: 0 !important; white-space: nowrap; }
}
@media (min-width: 969px) and (max-width: 1180px) {
  body.rates-page .navbar ul.nav-links li a { font-size: 0.9rem !important; padding-left: 8px !important; padding-right: 8px !important; }
}

/* Selector de idioma (banderas) en escritorio y móvil */
body.rates-page .lang-selector {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  width: auto !important;
}
body.rates-page .lang-selector a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
  padding: 6px 8px !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  text-decoration: none !important;
  transition: background 0.2s, border-color 0.2s !important;
  transform: none !important;
  box-shadow: none !important;
}
body.rates-page .lang-selector a:hover { background: rgba(255, 255, 255, 0.16) !important; }
body.rates-page .lang-selector a.active-lang {
  border-color: #00c4cc !important;
  background: rgba(0, 196, 204, 0.14) !important;
}
body.rates-page .lang-selector,
body.rates-page .lang-selector a { flex-shrink: 0 !important; }
body.rates-page .lang-selector img {
  display: block !important;
  flex: 0 0 26px !important;
  width: 26px !important;
  min-width: 26px !important;
  max-width: none !important;
  height: 18px !important;
  object-fit: cover !important;
  border-radius: 3px !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ── 2. Hero ─────────────────────────────────────────────────────────── */
body.rates-page header {
  position: relative;
  overflow: hidden;
  background: #0a2342;
}
body.rates-page header > .overlay {
  display: block !important;
  position: absolute !important;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(180deg, rgba(10, 35, 66, 0.8) 0%, rgba(10, 35, 66, 0.55) 100%) !important;
  z-index: 0 !important;
}
body.rates-page .rates-hero {
  position: relative;
  z-index: 1;
  background: none !important;   /* styles.css le pone una banda negra de 1250px: fuera */
  box-shadow: none !important;
  max-width: none !important;
  margin: 0 !important;
  min-height: 0 !important;
  padding: 150px 20px 96px !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
body.rates-page .rates-hero .hero-text {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 820px;
  text-align: center !important;
}
body.rates-page .rates-hero h1 {
  color: #fff;
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 10px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}
body.rates-page .rates-hero .subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  margin: 0;
}
.rz-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.rz-hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.rz-hero-badges li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f7c20c;
  flex: 0 0 auto;
}

/* ── 3. Navbar y menú móvil ─────────────────────────────────────────── */
@media (max-width: 968px) {
  html body.rates-page header { padding-top: 0 !important; }

  html body.rates-page .navbar {
    position: fixed !important;
    top: 0 !important; left: 0 !important; right: 0 !important;
    width: 100% !important;
    height: 62px !important;
    min-height: 0 !important;
    padding: 0 14px !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: rgba(10, 35, 66, 0.97) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25) !important;
    box-sizing: border-box !important;
    z-index: 1200 !important;
    transition: none !important;
  }
  html body.rates-page .navbar .logo {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  html body.rates-page .navbar .logo a {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
  }
  html body.rates-page .navbar .desktop-logo { display: none !important; }
  html body.rates-page .navbar .mobile-logo-text {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1 !important;
  }
  html body.rates-page .navbar .logo-name {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 1.15rem !important;
    letter-spacing: 0.2px !important;
  }
  html body.rates-page .navbar .logo-sub {
    color: #f7c20c !important;
    font-weight: 700 !important;
    font-size: 0.62rem !important;
    letter-spacing: 3px !important;
    margin-top: 3px !important;
  }

  /* Botón hamburguesa: centrado en la barra, siempre por encima del desplegable */
  html body.rates-page .navbar .menu-toggle {
    position: relative !important;
    top: auto !important; right: auto !important; bottom: auto !important; left: auto !important;
    margin: 0 !important;
    flex: 0 0 auto !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: none !important;
    cursor: pointer !important;
    z-index: 1300 !important;
    -webkit-tap-highlight-color: transparent;
  }
  html body.rates-page .navbar .menu-toggle span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    margin: 0 !important;
    background: #fff !important;
    border-radius: 2px !important;
    opacity: 1 !important;
    transform: none !important;
    transform-origin: center !important;
    transition: transform 0.25s ease, opacity 0.2s ease, background 0.2s ease !important;
  }
  html body.rates-page .navbar .menu-toggle.active {
    background: #f7c20c !important;
    border-color: #f7c20c !important;
  }
  html body.rates-page .navbar .menu-toggle.active span { background: #0a2342 !important; }
  html body.rates-page .navbar .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg) !important; }
  html body.rates-page .navbar .menu-toggle.active span:nth-child(2) { opacity: 0 !important; transform: scaleX(0) !important; }
  html body.rates-page .navbar .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) !important; }

  /* Desplegable: cuelga bajo la barra, la X queda visible para cerrarlo */
  html body.rates-page .navbar ul.nav-links {
    position: fixed !important;
    top: 62px !important; left: 0 !important; right: 0 !important; bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #0a2342 !important;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35) !important;
    z-index: 1250 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: none !important;
    transition: max-height 0.3s ease, padding 0.3s ease !important;
    list-style: none !important;
  }
  html body.rates-page .navbar ul.nav-links.active {
    max-height: calc(100vh - 62px) !important;
    max-height: calc(100dvh - 62px) !important;
    overflow-y: auto !important;
    pointer-events: auto !important;
    padding: 6px 0 14px !important;
  }
  html body.rates-page .navbar ul.nav-links li {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-top: none !important;
    list-style: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  html body.rates-page .navbar ul.nav-links li:last-child { border-bottom: none !important; }
  html body.rates-page .navbar ul.nav-links li a {
    display: block !important;
    width: auto !important;
    margin: 0 !important;
    padding: 14px 20px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    letter-spacing: 0.2px !important;
    color: #fff !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    text-decoration: none !important;
    text-shadow: none !important;
  }
  html body.rates-page .navbar ul.nav-links li a:hover,
  html body.rates-page .navbar ul.nav-links li a:active { background: rgba(255, 255, 255, 0.06) !important; }
  html body.rates-page .navbar ul.nav-links li a.active { color: #f7c20c !important; }
  html body.rates-page .navbar ul.nav-links li a.nav-cta {
    display: block !important;
    margin: 12px 24px 4px !important;
    padding: 13px 20px !important;
    background: linear-gradient(135deg, #f7c20c 0%, #d4a42a 100%) !important;
    color: #0a2342 !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
  }
  html body.rates-page .navbar ul.nav-links li.lang-selector {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 6px 0 0 !important;
    padding: 14px 16px 6px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: none !important;
  }
  html body.rates-page .navbar ul.nav-links li.lang-selector a {
    display: inline-flex !important;
    width: auto !important;
    padding: 7px 9px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
  }
  html body.rates-page .navbar ul.nav-links li.lang-selector a.active-lang {
    border-color: #00c4cc !important;
    background: rgba(0, 196, 204, 0.14) !important;
  }

  /* Hero compacto bajo la barra fija */
  html body.rates-page .rates-hero { padding: 92px 16px 36px !important; }
  html body.rates-page .rates-hero h1 { font-size: 1.65rem !important; padding: 0 !important; }
  html body.rates-page .rates-hero .subtitle { font-size: 0.95rem !important; padding: 0 !important; }
  .rz-hero-badges { gap: 6px; margin-top: 14px; }
  .rz-hero-badges li { font-size: 0.74rem; padding: 5px 11px; }
}

/* ── 4. Sección de tarifas: cabecera, buscador y navegación por zonas ── */
body.rates-page .pricing-table-container > h2 {
  text-align: center;
  color: #0a2342;
  font-size: 1.9rem;
  margin: 0 0 14px;
}
body.rates-page .pricing-intro-text {
  max-width: 860px;
  margin: 0 auto 22px;
  text-align: center;
  color: #444;
  line-height: 1.65;
}
body.rates-page .pricing-intro-text p { margin: 0 0 10px; }
body.rates-page .table-caption-text {
  text-align: center !important;
  color: #64748b !important;
  font-size: 0.86rem !important;
  margin: 0 0 14px !important;
}

.rz-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 6px 0 12px;
}
.rz-search {
  position: relative;
  flex: 1 1 320px;
  max-width: 460px;
}
.rz-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #64748b;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}
.rz-search input {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px 13px 42px;
  border: 1.5px solid #dbe2ea;
  border-radius: 12px;
  font: inherit;
  font-size: 0.95rem;
  color: #0a2342;
  background: #fff;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rz-search input::placeholder { color: #94a3b8; }
.rz-search input:focus {
  border-color: #00c4cc;
  box-shadow: 0 0 0 3px rgba(0, 196, 204, 0.18);
}

.rz-nav {
  position: sticky;
  top: 100px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 0 0 22px;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0 10px 12px -12px rgba(10, 35, 66, 0.25);
}
.rz-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef2f7;
  color: #0a2342 !important;
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none !important;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.rz-nav a small {
  font-weight: 600;
  font-size: 0.78rem;
  color: #007a80;
}
.rz-nav a:hover { background: #fff; border-color: #0a2342; }
.rz-nav a.is-active { background: #0a2342; color: #fff !important; }
.rz-nav a.is-active small { color: #f7c20c; }
.rz-nav.is-hidden { display: none; }

/* ── 5. Zonas y tablas ─────────────────────────────────────────────── */
.rz-zone {
  margin: 0 0 28px;
  scroll-margin-top: 150px;
}
.rz-zone.is-hidden { display: none; }
.rz-zone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #0a2342 0%, #163d6b 100%);
  color: #fff;
  border-radius: 12px 12px 0 0;
}
.rz-zone-head h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.rz-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f7c20c;
  color: #0a2342;
  font-size: 0.85rem;
  font-weight: 700;
}
.rz-zone-head p {
  margin: 5px 0 0;
  font-size: 0.86rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}
.rz-from {
  flex: 0 0 auto;
  text-align: right;
  font-size: 0.78rem;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}
.rz-from strong {
  display: block;
  font-size: 1.4rem;
  color: #f7c20c;
  margin-top: 2px;
}

.rz-wrap {
  background: #fff;
  border: 1px solid #e3e8ef;
  border-top: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
html body.rates-page .rz-zone .rz-table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 0 !important;
  table-layout: auto !important;
  font-size: 1rem !important;
}
html body.rates-page .rz-zone .rz-table th {
  padding: 10px 14px !important;
  background: #f4f7fb !important;
  color: #0a2342 !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.4px !important;
  text-transform: uppercase !important;
  text-align: center !important;
  border-bottom: 1px solid #e3e8ef !important;
  white-space: nowrap;
}
html body.rates-page .rz-zone .rz-table th:first-child { text-align: left !important; width: 34%; }
html body.rates-page .rz-zone .rz-table th small {
  display: block !important;
  margin-top: 2px !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: #64748b !important;
}
html body.rates-page .rz-zone .rz-table td {
  padding: 12px 14px !important;
  border-bottom: 1px solid #eef2f6 !important;
  text-align: center !important;
  vertical-align: middle !important;
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  color: #0a2342 !important;
  overflow: visible !important;
  white-space: normal !important;
  background: transparent !important;
}
html body.rates-page .rz-zone .rz-table tbody tr:last-child td { border-bottom: none !important; }
html body.rates-page .rz-zone .rz-table tbody tr:nth-child(even) td { background: #fbfcfe !important; }
html body.rates-page .rz-zone .rz-table tbody tr:hover td { background: #fff9df !important; }
html body.rates-page .rz-zone .rz-table tbody tr.is-hidden { display: none !important; }
html body.rates-page .rz-zone .rz-table td.rz-name {
  text-align: left !important;
  font-weight: 600 !important;
}
html body.rates-page .rz-zone .rz-table td.rz-name a {
  color: #0a2342 !important;
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  line-height: 1.3 !important;
}
html body.rates-page .rz-zone .rz-table td.rz-name a:hover {
  color: #007a80 !important;
  text-decoration: underline !important;
}
.rz-meta {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.3;
}
html body.rates-page .rz-zone .rz-table td.rz-van { color: #007a80 !important; }
html body.rates-page .rz-zone .rz-table .rz-book {
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 9px 18px !important;
  border: none !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #0a2342 0%, #163d6b 100%) !important;
  color: #fff !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: 0.4px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: 0 3px 10px rgba(10, 35, 66, 0.2) !important;
  transition: transform 0.2s, background 0.2s, color 0.2s !important;
}
html body.rates-page .rz-zone .rz-table .rz-book::after { content: none !important; }
html body.rates-page .rz-zone .rz-table .rz-book:hover {
  background: linear-gradient(135deg, #f7c20c 0%, #d4a42a 100%) !important;
  color: #0a2342 !important;
  transform: translateY(-2px);
}

.rz-empty {
  display: none;
  margin: 0 0 20px;
  padding: 26px 18px;
  text-align: center;
  color: #475569;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
}
.rz-empty.is-visible { display: block; }
.rz-empty a { color: #0a2342; font-weight: 700; }

body.rates-page .pricing-note {
  margin-top: 6px;
  color: #64748b;
  font-size: 0.88rem;
  text-align: center;
  line-height: 1.6;
}
body.rates-page .pricing-note a { color: #0a2342; font-weight: 600; }

/* ── 6. Móvil: la misma tabla, con proporciones ajustadas al ancho ── */
@media (max-width: 768px) {
  /* styles.css pone overflow en html, body y la sección: eso anula position:sticky de la barra de zonas */
  html body.rates-page { overflow: visible !important; }
  html body.rates-page .pricing-table-container { padding: 18px 10px 12px !important; overflow: visible !important; }
  html body.rates-page .pricing-table-container > h2 { font-size: 1.4rem; padding: 0 !important; margin-bottom: 10px; }
  html body.rates-page .pricing-intro-text { text-align: left; font-size: 0.92rem; padding: 0 !important; margin-bottom: 16px; }
  html body.rates-page .table-caption-text { padding: 0 !important; text-align: left !important; }

  .rz-toolbar { margin: 0 0 8px; }
  .rz-search { max-width: none; flex-basis: 100%; }

  .rz-nav {
    top: 62px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -10px 16px;
    padding: 8px 10px;
    border-bottom: 1px solid #eef2f6;
  }
  .rz-nav::-webkit-scrollbar { display: none; }
  .rz-nav a { font-size: 0.8rem; padding: 7px 12px; }

  .rz-zone { margin-bottom: 18px; scroll-margin-top: 122px; }
  .rz-zone-head { padding: 11px 12px; gap: 10px; border-radius: 10px 10px 0 0; }
  .rz-zone-head h3 { font-size: 1rem; gap: 8px; }
  .rz-num { width: 24px; height: 24px; font-size: 0.75rem; }
  .rz-zone-head p { font-size: 0.72rem; margin-top: 3px; }
  .rz-from { font-size: 0.68rem; }
  .rz-from strong { font-size: 1.15rem; }

  html body.rates-page .rz-zone .rz-wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 0 0 10px 10px;
  }
  /* Tabla de ancho fijo: Destino 34 % · Sedán 15 % · Familiar 15 % · Van 15 % · Reservar 21 % */
  html body.rates-page .rz-zone .rz-table {
    display: table !important;
    table-layout: fixed !important;
    width: 100% !important;
    font-size: 0.9rem !important;
  }
  html body.rates-page .rz-zone .rz-table thead { display: table-header-group !important; }
  html body.rates-page .rz-zone .rz-table tbody { display: table-row-group !important; }
  html body.rates-page .rz-zone .rz-table tr { display: table-row !important; }
  html body.rates-page .rz-zone .rz-table th,
  html body.rates-page .rz-zone .rz-table td {
    display: table-cell !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    white-space: normal !important;
  }
  html body.rates-page .rz-zone .rz-table th {
    padding: 8px 2px !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.2px !important;
    line-height: 1.15 !important;
  }
  html body.rates-page .rz-zone .rz-table th small { font-size: 0.56rem !important; margin-top: 1px !important; }
  html body.rates-page .rz-zone .rz-table th:first-child { width: 34% !important; padding-left: 10px !important; }
  html body.rates-page .rz-zone .rz-table th:nth-child(2),
  html body.rates-page .rz-zone .rz-table th:nth-child(3),
  html body.rates-page .rz-zone .rz-table th:nth-child(4) { width: 15% !important; }
  html body.rates-page .rz-zone .rz-table th:last-child { width: 21% !important; padding-right: 6px !important; }

  html body.rates-page .rz-zone .rz-table td {
    padding: 9px 2px !important;
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
  }
  html body.rates-page .rz-zone .rz-table td.rz-name {
    padding-left: 10px !important;
    padding-right: 4px !important;
    overflow-wrap: anywhere !important;
    hyphens: manual !important;
  }
  html body.rates-page .rz-zone .rz-table td.rz-name a { font-size: 0.86rem !important; line-height: 1.2 !important; }
  .rz-meta { font-size: 0.66rem; margin-top: 2px; line-height: 1.2; }
  html body.rates-page .rz-zone .rz-table td.rz-van,
  html body.rates-page .rz-zone .rz-table tbody tr:nth-child(even) td.rz-van { background: #eafafb !important; color: #007a80 !important; }
  html body.rates-page .rz-zone .rz-table th:nth-child(4) { background: #e6f4f5 !important; color: #007a80 !important; }
  html body.rates-page .rz-zone .rz-table td.rz-act { padding: 6px 6px 6px 2px !important; }
  html body.rates-page .rz-zone .rz-table .rz-book {
    display: block !important;
    width: 100% !important;
    padding: 8px 2px !important;
    border-radius: 8px !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.2px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    text-align: center !important;
    box-shadow: 0 2px 6px rgba(10, 35, 66, 0.18) !important;
  }
  html body.rates-page .rz-zone .rz-table .rz-book:hover { transform: none; }

  .rz-empty { margin: 0 0 16px; padding: 20px 14px; font-size: 0.92rem; }
  body.rates-page .pricing-note { padding: 0 !important; font-size: 0.82rem; text-align: left; }
}

@media (max-width: 360px) {
  html body.rates-page .rz-zone .rz-table td { font-size: 0.82rem !important; padding: 8px 1px !important; }
  html body.rates-page .rz-zone .rz-table td.rz-name a { font-size: 0.8rem !important; }
  html body.rates-page .rz-zone .rz-table th:first-child,
  html body.rates-page .rz-zone .rz-table td.rz-name { padding-left: 7px !important; }
  html body.rates-page .rz-zone .rz-table .rz-book { font-size: 0.55rem !important; padding: 7px 1px !important; }
  .rz-meta { font-size: 0.6rem; }
}

/* ── 7. Resto de secciones de la página (heredado del bloque inline) ── */
body.rates-page .cta-button,
body.rates-page .advantages-section a[href*="reservation"] {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0a2342 0%, #163d6b 100%) !important;
  text-decoration: none !important;
}
body.rates-page .cta-button:hover {
  background: linear-gradient(135deg, #d4a42a 0%, #b8920c 100%) !important;
  color: #0a2342 !important;
}
body.rates-page .advantages-content p { color: #1e293b !important; }
body.rates-page .advantages-content span[style*="color: #666"],
body.rates-page .advantages-content span[style*="color:#666"] { color: #374151 !important; }
body.rates-page .comparison-section > div[style*="grid"] { font-size: 0.88rem !important; }

@media (max-width: 768px) {
  body.rates-page .cta-button,
  body.rates-page .advantages-section a[href*="reservation"] {
    display: block !important;
    width: 100% !important;
    padding: 14px 20px !important;
    border-radius: 8px !important;
    text-align: center !important;
    box-sizing: border-box !important;
    font-size: 1em !important;
  }
  body.rates-page .advantages-section { flex-direction: column !important; padding: 20px 16px !important; }
  body.rates-page .advantages-section ul { grid-template-columns: 1fr !important; }
}
