/* Tu Viaje — shared styles */

:root {
  --tv-primary: #f40606;
  --tv-primary-dark: #B30404;
  --tv-primary-light: #FDCDCD;
  --tv-accent: #FF4D4D;
  --tv-ink: #1C1C1E;
  --tv-ink-soft: #6B6B6B;
  --tv-gray-50: #F9F9F9;
  --tv-gray-100: #F2F2F2;
  --tv-gray-200: #E8E8E8;
  --tv-gray-300: #D1D1D1;
  --tv-footer: #1A0A0D;
  --tv-whatsapp: #25D366;
  --tv-gold: #E6A817;

  --tv-font-display: 'Montserrat', ui-sans-serif, system-ui, sans-serif;
  --tv-font-body: 'DM Sans', ui-sans-serif, system-ui, sans-serif;

  --tv-radius-sm: 8px;
  --tv-radius-md: 12px;
  --tv-radius-lg: 20px;
  --tv-radius-xl: 28px;

  --tv-shadow-sm: 0 1px 3px rgba(28, 28, 30, 0.06);
  --tv-shadow-md: 0 6px 24px rgba(28, 28, 30, 0.08);
  --tv-shadow-lg: 0 18px 48px rgba(200, 16, 46, 0.12);
  --tv-shadow-xl: 0 24px 70px rgba(28, 28, 30, 0.18);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--tv-font-body);
  color: var(--tv-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { scroll-behavior: smooth; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--tv-font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.tv-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 640px) {
  .tv-container { padding: 0 20px; }
}

/* ============ NAV ============ */
.tv-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
  border-bottom: 2px solid transparent;
}
.tv-nav.is-scrolled {
  background: #fff;
  box-shadow: var(--tv-shadow-sm);
  border-bottom-color: var(--tv-primary);
}
.tv-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.tv-nav .tv-logo {
  display: inline-flex;
  align-items: center;
  transition: opacity 300ms;
  height: 44px;
  flex-shrink: 0;
}
.tv-nav .tv-logo-img {
  height: 44px !important;
  width: auto !important;
  max-width: none;
  display: block;
  object-fit: contain;
  transition: opacity 300ms;
}
.tv-nav .tv-logo-img-red { display: none !important; }
.tv-nav.is-scrolled .tv-logo-img-white { display: none !important; }
.tv-nav.is-scrolled .tv-logo-img-red { display: block !important; }

@media (max-width: 640px) {
  .tv-nav .tv-logo,
  .tv-nav .tv-logo-img { height: 32px !important; }
  .tv-nav-inner { height: 64px !important; }
}

.tv-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tv-nav-group {
  position: relative;
}
.tv-nav-drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -6px);
  min-width: 280px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18), 0 4px 14px rgba(0,0,0,0.08);
  padding: 16px 10px 10px;
  margin-top: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 220ms;
  visibility: hidden;
  z-index: 60;
}
.tv-nav-drop::before {
  content: '';
  position: absolute;
  top: 4px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 2px;
}
.tv-nav-group.is-open .tv-nav-drop {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 0s;
}
.tv-nav-group.is-open > .tv-nav-link svg { transform: rotate(180deg); }
.tv-nav-link svg { transition: transform 180ms ease; }
.tv-nav-drop-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--tv-ink);
  transition: background 150ms, color 150ms;
  position: relative;
}
.tv-nav-drop-item svg {
  flex-shrink: 0;
  color: var(--tv-primary);
  margin-top: 1px;
}
.tv-nav-drop-item:hover {
  background: var(--tv-primary-light);
}
.tv-nav-drop-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--tv-ink);
  line-height: 1.2;
}
.tv-nav-drop-desc {
  display: block;
  font-size: 12px;
  color: var(--tv-ink-soft);
  margin-top: 3px;
  line-height: 1.3;
}

/* Admin dropdown — dark variant to differentiate from other menus */
.tv-nav-drop.tv-nav-drop-dark {
  background: #1A0A0D;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 4px 14px rgba(0,0,0,0.25);
}
.tv-nav-drop.tv-nav-drop-dark::before { background: #1A0A0D; }
.tv-nav-drop.tv-nav-drop-dark .tv-nav-drop-item { color: #fff; }
.tv-nav-drop.tv-nav-drop-dark .tv-nav-drop-item svg { color: var(--tv-primary); }
.tv-nav-drop.tv-nav-drop-dark .tv-nav-drop-label { color: #fff; }
.tv-nav-drop.tv-nav-drop-dark .tv-nav-drop-desc { color: rgba(255,255,255,0.55); }
.tv-nav-drop.tv-nav-drop-dark .tv-nav-drop-item:hover { background: var(--tv-primary-dark); }
.tv-nav-drop.tv-nav-drop-dark .tv-nav-drop-item:hover .tv-nav-drop-desc { color: rgba(255,255,255,0.85); }
.tv-nav-drop.tv-nav-drop-dark .tv-nav-drop-item:hover svg { color: #fff; }
@media (max-width: 900px) {
  .tv-nav-links { display: none; }
}
.tv-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  border-radius: 8px;
  transition: all 200ms;
}
.tv-nav.is-scrolled .tv-nav-link { color: var(--tv-ink); }
.tv-nav.is-scrolled .tv-nav-link:hover { color: var(--tv-primary); background: var(--tv-primary-light); }
.tv-nav-link:hover { color: rgba(255,255,255,0.8); }
.tv-nav-link.active { color: var(--tv-primary); }
.tv-nav.is-scrolled .tv-nav-link.active { background: var(--tv-primary-light); }

.tv-nav-cta {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  background: #fff;
  color: var(--tv-primary);
  transition: all 200ms;
}
.tv-nav.is-scrolled .tv-nav-cta {
  background: var(--tv-primary);
  color: #fff;
}
.tv-nav-cta:hover { transform: translateY(-1px); box-shadow: var(--tv-shadow-md); }

.tv-mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 8px;
}
.tv-nav.is-scrolled .tv-mobile-toggle { color: var(--tv-ink); }

@media (max-width: 900px) {
  .tv-mobile-toggle { display: flex; }

  /* Hamburger panel — open state */
  .tv-nav.is-open {
    background: #fff;
    box-shadow: var(--tv-shadow-sm);
    border-bottom-color: var(--tv-primary);
  }
  .tv-nav.is-open .tv-logo-img-white { display: none !important; }
  .tv-nav.is-open .tv-logo-img-red { display: block !important; }
  .tv-nav.is-open .tv-mobile-toggle { color: var(--tv-ink); }

  .tv-nav.is-open .tv-nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    padding: 12px 20px 20px;
    border-top: 1px solid var(--tv-gray-100);
    box-shadow: var(--tv-shadow-md);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .tv-nav.is-open .tv-nav-link {
    color: var(--tv-ink);
    padding: 14px 12px;
    font-size: 16px;
    border-radius: 10px;
    justify-content: space-between;
    width: 100%;
    text-align: left;
  }
  .tv-nav.is-open .tv-nav-link.active {
    background: var(--tv-primary-light);
    color: var(--tv-primary);
  }
  .tv-nav.is-open .tv-nav-group { display: block; }
  /* Submenu inline-expanded only when its group is open */
  .tv-nav.is-open .tv-nav-drop {
    position: static;
    transform: none;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    min-width: 0;
    padding: 0 0 0 12px;
    margin: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    transition: max-height 220ms ease;
  }
  .tv-nav.is-open .tv-nav-drop::before { display: none; }
  .tv-nav.is-open .tv-nav-group.is-open .tv-nav-drop {
    visibility: visible;
    pointer-events: auto;
    max-height: 600px;
    padding: 4px 0 8px 12px;
    transform: none;
  }
  .tv-nav.is-open .tv-nav-drop-item { padding: 12px; }
  .tv-nav.is-open .tv-nav-drop.tv-nav-drop-dark { background: transparent; }
  .tv-nav.is-open .tv-nav-drop.tv-nav-drop-dark .tv-nav-drop-item,
  .tv-nav.is-open .tv-nav-drop.tv-nav-drop-dark .tv-nav-drop-label { color: var(--tv-ink); }
  .tv-nav.is-open .tv-nav-drop.tv-nav-drop-dark .tv-nav-drop-desc { color: var(--tv-ink-soft); }
  .tv-nav.is-open .tv-nav-cta {
    margin-top: 8px;
    background: var(--tv-primary);
    color: #fff;
    text-align: center;
    padding: 14px 18px;
  }
}

/* ============ FOOTER ============ */
.tv-footer {
  background: var(--tv-footer);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 40px;
}
.tv-footer h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  font-weight: 700;
}
.tv-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 860px) {
  .tv-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 500px) {
  .tv-footer-grid { grid-template-columns: 1fr; }
}
.tv-footer-logo {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.tv-footer-brand {
  font-family: var(--tv-font-display);
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.tv-footer-tag {
  font-size: 14px;
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 20px;
}
.tv-footer-legajo {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}
.tv-footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tv-footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 200ms;
}
.tv-footer-links a:hover { color: var(--tv-primary); }
.tv-footer-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  line-height: 1.45;
}
.tv-footer-bottom {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.tv-footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }
.tv-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.tv-social a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: all 200ms;
}
.tv-social a:hover { background: var(--tv-primary); transform: translateY(-2px); }

/* ============ BUTTONS ============ */
.tv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--tv-radius-sm);
  transition: all 200ms;
  cursor: pointer;
  white-space: nowrap;
}
.tv-btn-primary { background: var(--tv-primary); color: #fff; }
.tv-btn-primary:hover { background: var(--tv-primary-dark); transform: translateY(-1px); box-shadow: var(--tv-shadow-lg); }
.tv-btn-ghost { background: #fff; color: var(--tv-ink); border: 1px solid var(--tv-gray-300); }
.tv-btn-ghost:hover { border-color: var(--tv-primary); color: var(--tv-primary); }
.tv-btn-whatsapp {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(37, 211, 102, 0.5);
}
.tv-btn-whatsapp svg { color: var(--tv-whatsapp); }
.tv-btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: var(--tv-whatsapp);
}
.tv-btn-lg { padding: 18px 28px; font-size: 15px; }
.tv-btn:active { transform: scale(0.98); }

/* ============ BADGE ============ */
.tv-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--tv-primary);
  color: #fff;
}
.tv-badge-gold { background: var(--tv-gold); color: #1a0a00; }
.tv-badge-ghost {
  background: transparent;
  color: var(--tv-primary);
  border: 1px solid currentColor;
  background: var(--tv-primary-light);
}

/* ============ CARDS ============ */
.tv-card {
  background: #fff;
  border-radius: var(--tv-radius-lg);
  overflow: hidden;
  box-shadow: var(--tv-shadow-sm);
  border: 1px solid var(--tv-gray-100);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.tv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tv-shadow-lg);
}

/* ============ WhatsApp FAB ============ */
.tv-wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--tv-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
  z-index: 40;
  animation: tvPulse 2s ease-in-out infinite;
}
@keyframes tvPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* ============ ANIMATIONS ============ */
@keyframes tvFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.tv-fade-up { animation: tvFadeUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both; }

/* ============ TWEAKS PANEL ============ */
.tv-tweaks {
  position: fixed;
  bottom: 20px; left: 20px;
  width: 300px;
  background: #fff;
  border: 1px solid var(--tv-gray-300);
  border-radius: 16px;
  box-shadow: var(--tv-shadow-xl);
  z-index: 60;
  overflow: hidden;
  display: none;
  font-family: var(--tv-font-body);
}
.tv-tweaks.open { display: block; }
.tv-tweaks-header {
  padding: 14px 18px;
  background: var(--tv-footer);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--tv-font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tv-tweaks-body {
  padding: 16px 18px;
  max-height: 70vh;
  overflow-y: auto;
}
.tv-tweak-group { margin-bottom: 18px; }
.tv-tweak-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tv-ink-soft);
  margin-bottom: 8px;
}
.tv-tweak-swatches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.tv-tweak-swatch {
  aspect-ratio: 1;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 150ms, border-color 150ms;
}
.tv-tweak-swatch:hover { transform: scale(1.05); }
.tv-tweak-swatch.active { border-color: var(--tv-ink); }
.tv-tweak-segment {
  display: flex;
  background: var(--tv-gray-100);
  border-radius: 8px;
  padding: 3px;
}
.tv-tweak-segment button {
  flex: 1;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  color: var(--tv-ink-soft);
}
.tv-tweak-segment button.active {
  background: #fff;
  color: var(--tv-primary);
  box-shadow: var(--tv-shadow-sm);
}

/* ============================================================
   Per-page styles, lifted verbatim from the reference HTML
   pages so server-rendered sections render identically.
   ============================================================ */

/* ---- index.html ---- */
/* ---- HOME specific ---- */
  .tv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .tv-hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?q=80&w=2400&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
  }
  .tv-hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 40%, rgba(26, 10, 13, 0.85) 100%);
  }
  .tv-hero-content {
    position: relative;
    width: 100%;
    padding: 140px 0 60px;
    color: #fff;
    text-align: center;
  }
  .tv-hero-content > .tv-container > .tv-fade-up,
  .tv-hero-content > .tv-container > h1,
  .tv-hero-content > .tv-container > p {
    text-align: center;
  }
  .tv-hero-sub {
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.5;
    max-width: 560px;
    color: rgba(255,255,255,0.85);
    margin: 0 auto 36px;
  }
  .tv-trust {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 28px 40px;
    align-items: center;
    justify-content: center;
  }
  .tv-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    backdrop-filter: blur(8px);
  }
  .tv-hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--tv-primary);
    box-shadow: 0 0 10px var(--tv-primary);
  }
  .tv-hero h1 {
    font-size: clamp(40px, 6.4vw, 88px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    white-space: nowrap;
  }
  .tv-hero h1 em {
    font-style: italic;
    font-weight: 800;
    color: var(--tv-primary);
  }
  @media (max-width: 520px) {
    .tv-hero h1 { font-size: clamp(34px, 9vw, 56px); white-space: normal; }
  }
  .tv-hero h1 .dot {
    display: inline-block;
    width: 14px; height: 14px;
    background: var(--tv-primary);
    border-radius: 50%;
    margin-left: 4px;
    vertical-align: baseline;
    transform: translateY(-0.55em);
  }
  .tv-hero-search {
    background: #fff;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr auto;
    gap: 4px;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
  }
  .tv-search-field {
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-radius: 14px;
    cursor: pointer;
    transition: background 150ms;
    text-align: left;
    background: transparent;
    border: none;
    font-family: inherit;
    position: relative;
    min-width: 0;
  }
  .tv-search-field + .tv-search-field::before {
    content: '';
    position: absolute;
    left: -2px; top: 22%; bottom: 22%;
    width: 1px;
    background: var(--tv-gray-200);
  }
  .tv-search-field:hover,
  .tv-search-field.is-open { background: var(--tv-gray-50); }
  .tv-search-field.is-open + .tv-search-field::before,
  .tv-search-field.is-open::before { opacity: 0; }
  .tv-search-field label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tv-ink-soft);
    pointer-events: none;
  }
  .tv-search-value {
    font-family: var(--tv-font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--tv-ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .tv-search-value.is-placeholder { color: var(--tv-ink-soft); font-weight: 500; }
  .tv-search-value svg {
    flex-shrink: 0;
    opacity: 0.5;
    transition: transform 180ms;
  }
  .tv-search-field.is-open .tv-search-value svg { transform: rotate(180deg); opacity: 1; }
  .tv-search-submit {
    align-self: stretch;
    min-width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--tv-primary);
    color: #fff;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 150ms, transform 150ms;
  }
  .tv-search-submit:hover { background: var(--tv-primary-dark); }
  .tv-search-submit:active { transform: scale(0.98); }

  /* Dropdown popovers */
  .tv-sp {
    position: absolute;
    top: calc(100% + 8px);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.22), 0 4px 16px rgba(0,0,0,0.08);
    padding: 14px;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms, transform 180ms;
    min-width: 280px;
  }
  .tv-sp.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Destino popover */
  .tv-sp-dest { left: 8px; width: 420px; max-width: calc(100vw - 40px); }
  .tv-sp-search {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    background: var(--tv-gray-100);
    border-radius: 12px;
    margin-bottom: 12px;
  }
  .tv-sp-search input {
    flex: 1; border: none; outline: none; background: transparent;
    font-family: inherit; font-size: 14px; font-weight: 500;
  }
  .tv-sp-section {
    font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--tv-ink-soft);
    padding: 10px 8px 6px;
  }
  .tv-sp-dest-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 120ms;
  }
  .tv-sp-dest-item:hover { background: var(--tv-gray-50); }
  .tv-sp-dest-item.is-selected { background: var(--tv-primary-light); }
  .tv-sp-dest-thumb {
    width: 44px; height: 44px; border-radius: 10px;
    background-size: cover; background-position: center;
    flex-shrink: 0;
  }
  .tv-sp-dest-name { font-size: 14px; font-weight: 600; color: var(--tv-ink); line-height: 1.15; }
  .tv-sp-dest-region { font-size: 12px; color: var(--tv-ink-soft); margin-top: 2px; }
  .tv-sp-dest-chip {
    margin-left: auto;
    font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 8px; border-radius: 6px;
    background: var(--tv-gray-100); color: var(--tv-ink-soft);
  }
  .tv-sp-dest-chip.air { background: #E0EAF4; color: #1F4E7C; }
  .tv-sp-dest-chip.bus { background: #E8F0E4; color: #3A5F20; }
  .tv-sp-empty { padding: 24px 10px; text-align: center; font-size: 13px; color: var(--tv-ink-soft); }

  /* Salida popover */
  .tv-sp-date {
    left: 50%;
    transform: translate(-50%, -6px);
    max-width: calc(100vw - 40px);
    padding: 18px;
  }
  .tv-sp-date.is-open { transform: translate(-50%, 0); }
  .tv-sp-date-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 14px;
  }
  .tv-sp-date-title {
    font-family: var(--tv-font-display);
    font-weight: 800;
    font-size: 15px;
    color: var(--tv-ink);
    letter-spacing: -0.01em;
  }
  .tv-sp-date-nav {
    display: flex; gap: 4px;
  }
  .tv-sp-date-nav button {
    width: 28px; height: 28px;
    border-radius: 8px;
    border: 1px solid var(--tv-gray-200);
    background: #fff;
    color: var(--tv-ink);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 150ms;
  }
  .tv-sp-date-nav button:hover { border-color: var(--tv-primary); color: var(--tv-primary); }
  .tv-sp-date-nav button:disabled { opacity: 0.35; cursor: not-allowed; }
  .tv-sp-month-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 380px;
    max-width: calc(100vw - 80px);
  }
  .tv-sp-month {
    padding: 14px 6px 12px;
    border-radius: 12px;
    border: 1.5px solid var(--tv-gray-200);
    background: #fff;
    cursor: pointer;
    text-align: center;
    font-family: inherit;
    transition: all 150ms;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .tv-sp-month-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--tv-ink);
    letter-spacing: -0.005em;
  }
  .tv-sp-month-year {
    font-size: 10px;
    font-weight: 600;
    color: var(--tv-ink-soft);
    letter-spacing: 0.04em;
  }
  .tv-sp-month:hover {
    border-color: var(--tv-primary);
    background: var(--tv-primary-light);
  }
  .tv-sp-month.is-selected {
    background: var(--tv-primary);
    border-color: var(--tv-primary);
    box-shadow: 0 6px 18px rgba(200,16,46,0.25);
  }
  .tv-sp-month.is-selected .tv-sp-month-label,
  .tv-sp-month.is-selected .tv-sp-month-year { color: #fff; }
  .tv-sp-flex {
    margin-top: 14px;
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    background: var(--tv-gray-50);
    border-radius: 12px;
    font-size: 12px; color: var(--tv-ink-soft);
    width: 380px;
    max-width: calc(100vw - 80px);
  }
  .tv-sp-flex svg { color: var(--tv-primary); flex-shrink: 0; }

  /* Transporte popover */
  .tv-sp-trans { right: 0; width: 320px; }
  .tv-sp-trans-opt {
    width: 100%;
    display: flex; align-items: center; gap: 14px;
    padding: 14px 12px;
    border: none;
    background: transparent;
    border-radius: 12px;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: background 150ms;
  }
  .tv-sp-trans-opt + .tv-sp-trans-opt { margin-top: 2px; }
  .tv-sp-trans-opt:hover { background: var(--tv-gray-50); }
  .tv-sp-trans-opt.is-selected { background: var(--tv-primary-light); }
  .tv-sp-trans-ico {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--tv-gray-100);
    color: var(--tv-primary);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .tv-sp-trans-opt.is-selected .tv-sp-trans-ico { background: var(--tv-primary); color: #fff; }
  .tv-sp-trans-label { font-size: 14px; font-weight: 600; color: var(--tv-ink); }
  .tv-sp-trans-sub { font-size: 12px; color: var(--tv-ink-soft); margin-top: 2px; }

  @media (max-width: 720px) {
    .tv-hero-search { grid-template-columns: 1fr; padding: 6px; }
    .tv-search-submit { padding: 16px; }
    .tv-search-field + .tv-search-field::before { display: none; }
    .tv-search-field { padding: 11px 16px; }
    .tv-sp { position: fixed; left: 20px; right: 20px; width: auto; max-width: none; top: auto; bottom: 20px; }
    .tv-sp-dest, .tv-sp-date, .tv-sp-trans { left: 20px; right: 20px; width: auto; }
    .tv-sp-month-grid, .tv-sp-flex { width: 100%; }
  }
  .tv-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
  }
  .tv-trust-item svg { color: var(--tv-primary); }

  /* Section */
  .tv-section { padding: 100px 0; }
  .tv-section-header { max-width: 760px; margin: 0 auto 56px; text-align: center; }
  .tv-section-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--tv-primary);
    margin-bottom: 14px;
  }
  .tv-section h2 {
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }
  .tv-section h2 em {
    font-style: italic;
    font-weight: 700;
    color: var(--tv-primary);
  }
  .tv-section-sub {
    font-size: 17px;
    color: var(--tv-ink-soft);
    line-height: 1.6;
  }

  /* Filter pills */
  .tv-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .tv-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    background: #fff;
    color: var(--tv-ink);
    border: 1px solid var(--tv-gray-300);
    transition: all 200ms;
  }
  .tv-filter.active {
    background: var(--tv-primary);
    color: #fff;
    border-color: var(--tv-primary);
    box-shadow: var(--tv-shadow-md);
  }
  .tv-filter:hover:not(.active) { border-color: var(--tv-primary); color: var(--tv-primary); }

  /* Destination grid */
  .tv-dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
  }
  .tv-dest-card {
    position: relative;
    border-radius: var(--tv-radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    box-shadow: var(--tv-shadow-sm);
    border: 1px solid var(--tv-gray-100);
    transition: transform 300ms ease, box-shadow 300ms ease;
    display: block;
  }
  .tv-dest-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--tv-shadow-lg);
  }
  .tv-dest-media {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
  }
  .tv-dest-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
  }
  .tv-dest-card:hover .tv-dest-media img { transform: scale(1.06); }
  .tv-dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
  }
  .tv-dest-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
  }
  .tv-dest-type {
    width: 36px; height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tv-primary);
  }
  .tv-dest-info {
    position: absolute;
    left: 20px; right: 20px; bottom: 16px;
    color: #fff;
  }
  .tv-dest-info .from {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    margin-bottom: 4px;
  }
  .tv-dest-info .name {
    font-family: var(--tv-font-display);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .tv-dest-foot {
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .tv-dest-price {
    font-family: var(--tv-font-display);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--tv-primary);
  }
  .tv-dest-price .prefix {
    display: block;
    font-size: 11px;
    color: var(--tv-ink-soft);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--tv-font-body);
  }
  .tv-dest-price .val { font-size: 24px; }
  .tv-dest-cuota { font-size: 11px; color: var(--tv-ink-soft); margin-top: 2px; font-family: var(--tv-font-body); font-weight:500; }
  .tv-dest-foot-right {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tv-primary);
    font-weight: 700;
    font-size: 14px;
  }

  /* How it works */
  .tv-how {
    background: linear-gradient(180deg, #fff 0%, var(--tv-gray-50) 100%);
  }
  .tv-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    position: relative;
    counter-reset: tv-step;
  }
  @media (max-width: 760px) { .tv-steps { grid-template-columns: 1fr; } }
  .tv-step {
    text-align: center;
    padding: 0 16px;
    counter-increment: tv-step;
  }
  .tv-step-num::before {
    content: counter(tv-step);
  }
  .tv-step-num {
    display: inline-flex;
    width: 88px; height: 88px;
    align-items: center;
    justify-content: center;
    font-family: var(--tv-font-display);
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    background: var(--tv-primary);
    border-radius: 50%;
    margin-bottom: 22px;
    position: relative;
    font-style: italic;
    letter-spacing: -0.04em;
  }
  .tv-step-num::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px dashed var(--tv-primary-light);
    border-radius: 50%;
    animation: tvSpin 18s linear infinite;
  }
  @keyframes tvSpin { to { transform: rotate(360deg); } }
  .tv-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .tv-step p {
    color: var(--tv-ink-soft);
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
  }
  .tv-step-points {
    list-style: none;
    margin: 14px auto 0;
    padding: 0;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .tv-step-bullet {
    position: relative;
    padding-left: 20px;
    color: var(--tv-ink-soft);
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
  }
  .tv-step-bullet::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tv-primary);
  }

  /* Contact CTA */
  .tv-contact {
    background: var(--tv-footer);
    color: #fff;
    padding: 100px 0;
  }
  .tv-contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 820px) { .tv-contact-grid { grid-template-columns: 1fr; } }
  .tv-contact h2 { font-size: clamp(36px, 4.5vw, 56px); color: #fff; margin-bottom: 20px; }
  .tv-contact h2 em { color: var(--tv-primary); font-style: italic; font-weight: 700; }
  .tv-contact p { color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.6; margin-bottom: 28px; }
  .tv-contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }

  .tv-contact-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 36px;
  }
  .tv-contact-card h3 { color: #fff; margin-bottom: 20px; font-size: 20px; }
  .tv-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
  .tv-contact-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,0.8); }
  .tv-contact-list .ico {
    width: 40px; height: 40px;
    background: var(--tv-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .tv-contact-list strong { display: block; color: #fff; font-size: 15px; margin-bottom: 2px; }

  /* Partners */
  .tv-partners {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
    border-top: 1px solid var(--tv-gray-100);
  }
  .tv-partners-title {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--tv-ink-soft);
    margin-bottom: 32px;
  }
  .tv-marquee {
    display: flex;
    gap: 64px;
    align-items: center;
    animation: tvMarquee 30s linear infinite;
  }
  @keyframes tvMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .tv-partner {
    font-family: var(--tv-font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--tv-ink-soft);
    opacity: 0.5;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }

  /* Editorial feature band */
  .tv-60 {
    padding: 120px 0;
    background: var(--tv-primary);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .tv-60::before {
    content: '60';
    position: absolute;
    bottom: -120px; right: -40px;
    font-family: var(--tv-font-display);
    font-weight: 900;
    font-style: italic;
    font-size: 680px;
    line-height: 1;
    color: rgba(255,255,255,0.08);
    pointer-events: none;
  }
  .tv-60-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 820px) { .tv-60-inner { grid-template-columns: 1fr; } }
  .tv-60 h2 { color: #fff; font-size: clamp(40px, 5vw, 64px); }
  .tv-60 h2 em {
    font-style: italic;
    color: var(--tv-primary-light);
    font-weight: 700;
  }
  .tv-60 p { color: rgba(255,255,255,0.9); font-size: 18px; line-height: 1.6; margin-top: 20px; max-width: 520px; }

  [data-density="compact"] .tv-section { padding: 70px 0; }
  [data-density="compact"] .tv-dest-foot { padding: 14px 16px; }

/* ---- destinos.html ---- */
.tv-list-hero {
    padding: 140px 0 48px;
    background: linear-gradient(180deg, #fff 0%, var(--tv-gray-50) 100%);
    position: relative;
    overflow: hidden;
  }
  .tv-list-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .tv-list-hero-grid { grid-template-columns: 1fr; }
  }
  .tv-list-hero h1 {
    font-size: clamp(44px, 6vw, 80px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }
  .tv-list-hero h1 em { font-style: italic; color: var(--tv-primary); font-weight: 700; }
  .tv-list-hero p { color: var(--tv-ink-soft); font-size: 18px; max-width: 540px; margin-bottom: 28px; }
  .tv-list-hero-chips {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin-top: 8px;
  }
  .tv-list-hero-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--tv-gray-200);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--tv-ink);
    transition: all 200ms;
    cursor: pointer;
  }
  .tv-list-hero-chip:hover { border-color: var(--tv-primary); color: var(--tv-primary); transform: translateY(-2px); }
  .tv-list-hero-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--tv-primary); }

  .tv-list-hero-collage {
    position: relative;
    height: 420px;
  }
  .tv-list-hero-collage img {
    position: absolute;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  }
  .tv-list-hero-collage .p1 {
    top: 0; right: 20%; width: 56%; height: 65%;
    z-index: 2;
    transform: rotate(-3deg);
  }
  .tv-list-hero-collage .p2 {
    bottom: 0; right: 0; width: 48%; height: 58%;
    z-index: 3;
    transform: rotate(4deg);
  }
  .tv-list-hero-collage .p3 {
    bottom: 12%; left: 0; width: 42%; height: 50%;
    z-index: 1;
    transform: rotate(-5deg);
  }
  .tv-list-hero-collage .sticker {
    position: absolute;
    top: -10px; left: -10px;
    width: 120px; height: 120px;
    background: var(--tv-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--tv-font-display);
    font-weight: 900;
    font-style: italic;
    line-height: 0.9;
    text-align: center;
    z-index: 4;
    box-shadow: 0 10px 30px rgba(200,16,46,0.3);
    transform: rotate(-12deg);
  }
  .tv-list-hero-collage .sticker .big { font-size: 38px; }
  .tv-list-hero-collage .sticker .small { font-size: 11px; font-weight: 600; font-style: normal; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; opacity: 0.9; }
  @media (max-width: 900px) {
    .tv-list-hero-collage { height: 280px; }
  }

  .tv-list-wrap { padding: 40px 0 100px; }
  .tv-list-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: flex-start;
  }
  @media (max-width: 900px) { .tv-list-layout { grid-template-columns: 1fr; } }

  .tv-side {
    position: sticky; top: 100px;
    background: #fff;
    border: 1px solid var(--tv-gray-200);
    border-radius: 20px;
    padding: 24px;
  }
  .tv-side h4 {
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--tv-ink-soft);
    margin: 18px 0 10px;
  }
  .tv-side h4:first-child { margin-top: 0; }
  .tv-side-opts { display: flex; flex-direction: column; gap: 6px; }
  .tv-side-opt {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    text-align: left;
    transition: all 150ms;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--tv-ink);
  }
  .tv-side-opt:hover { background: var(--tv-gray-50); }
  .tv-side-opt.active {
    background: var(--tv-primary-light);
    color: var(--tv-primary);
    font-weight: 700;
  }
  .tv-side-opt .count {
    font-size: 11px;
    color: var(--tv-ink-soft);
    background: var(--tv-gray-100);
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 600;
  }
  .tv-side-opt.active .count { background: #fff; color: var(--tv-primary); }

  .tv-range {
    width: 100%;
    accent-color: var(--tv-primary);
  }
  .tv-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--tv-ink-soft);
    margin-top: 6px;
  }

  .tv-list-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .tv-list-count { font-size: 14px; color: var(--tv-ink-soft); }
  .tv-list-count strong { color: var(--tv-ink); font-weight: 700; font-family: var(--tv-font-display); }
  .tv-sort {
    padding: 10px 14px;
    border: 1px solid var(--tv-gray-300);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    background: #fff;
    cursor: pointer;
  }

  .tv-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .tv-card-a {
    position: relative;
    display: block;
    border-radius: var(--tv-radius-lg);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--tv-gray-100);
    box-shadow: var(--tv-shadow-sm);
    transition: transform 300ms ease, box-shadow 300ms ease;
  }
  .tv-card-a:hover { transform: translateY(-4px); box-shadow: var(--tv-shadow-lg); }
  .tv-card-a .media { aspect-ratio: 4/3; position: relative; overflow: hidden; }
  .tv-card-a .media img { width:100%; height:100%; object-fit:cover; transition:transform 500ms; }
  .tv-card-a:hover .media img { transform: scale(1.05); }
  .tv-card-a .overlay { position:absolute; inset:0; background:linear-gradient(180deg,transparent 50%,rgba(0,0,0,0.7) 100%); }
  .tv-card-a .top { position:absolute; top:14px; left:14px; right:14px; display:flex; justify-content:space-between; align-items:flex-start; gap:8px; }
  .tv-card-a .ty { width:32px; height:32px; background:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--tv-primary); }
  .tv-card-a .info { position:absolute; left:16px; right:16px; bottom:14px; color:#fff; }
  .tv-card-a .info .from { font-size:11px; letter-spacing:.08em; text-transform:uppercase; opacity:.85; font-weight:600; }
  .tv-card-a .info .name { font-family:var(--tv-font-display); font-size:22px; font-weight:800; letter-spacing:-0.02em; line-height:1.1; margin-top:2px; }
  .tv-card-a .foot { padding:16px 18px; display:flex; justify-content:space-between; align-items:center; }
  .tv-card-a .foot .p { display:block; font-size:10px; letter-spacing:.08em; text-transform:uppercase; color:var(--tv-ink-soft); font-weight:700; }
  .tv-card-a .foot .v { display:block; font-family:var(--tv-font-display); font-size:20px; font-weight:900; color:var(--tv-primary); line-height:1; margin-top:2px; }
  .tv-card-a .foot .c { font-size:11px; color:var(--tv-ink-soft); margin-top:4px; }
  .tv-card-a .arrow { color:var(--tv-primary); font-weight:700; font-size:13px; }

/* ---- destino.html ---- */
/* Big hero banner */
  .tv-d-hero-banner {
    position: relative;
    height: clamp(360px, 56vh, 560px);
    overflow: hidden;
    background: var(--tv-ink);
  }
  .tv-d-hero-banner .bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
  }
  .tv-d-hero-banner::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
  }
  .tv-d-hero-banner-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 44px;
    padding-top: 110px;
    color: #fff;
  }
  .tv-d-hero-banner .crumb {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    margin-bottom: 18px;
  }
  .tv-d-hero-banner .crumb a { color: rgba(255,255,255,0.85); }
  .tv-d-hero-banner .crumb a:hover { color: #fff; }
  .tv-d-hero-banner .crumb .sep { opacity: 0.5; margin: 0 6px; }
  .tv-d-hero-banner .crumb .current { color: #fff; font-weight: 600; }
  .tv-d-hero-banner .region-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
    backdrop-filter: blur(8px);
  }
  .tv-d-hero-banner h1 {
    font-size: clamp(48px, 8vw, 108px);
    line-height: 0.92;
    letter-spacing: -0.04em;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
  }
  .tv-d-hero-banner .lede {
    max-width: 640px;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
  }

  /* Breadcrumb (kept for compatibility but hidden — banner has its own) */
  .tv-detail-crumb {
    display: none;
    padding: 110px 0 0;
    background: #fff;
  }
  .tv-crumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--tv-ink-soft);
  }
  .tv-crumb a { color: var(--tv-ink-soft); transition: color 200ms; }
  .tv-crumb a:hover { color: var(--tv-primary); }
  .tv-crumb .sep { opacity: 0.4; }
  .tv-crumb .current { color: var(--tv-ink); font-weight: 600; }

  /* ================ HERO ================ */
  .tv-d-hero {
    padding: 32px 0 0;
  }
  .tv-d-hero-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .tv-d-region {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--tv-primary-light);
    color: var(--tv-primary);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .tv-d-title {
    font-size: clamp(56px, 9vw, 132px);
    line-height: 0.88;
    letter-spacing: -0.045em;
    font-weight: 900;
  }
  .tv-d-title em {
    display: block;
    font-style: italic;
    font-weight: 700;
    color: var(--tv-primary);
    font-size: 0.42em;
    letter-spacing: -0.02em;
    margin-top: 18px;
    line-height: 1.2;
  }
  .tv-d-lede {
    max-width: 480px;
    font-size: 18px;
    line-height: 1.5;
    color: var(--tv-ink-soft);
  }
  .tv-d-meta-row {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid var(--tv-gray-200);
    border-bottom: 1px solid var(--tv-gray-200);
    margin-top: 8px;
  }
  .tv-d-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
  }
  .tv-d-meta .ico {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--tv-gray-100);
    color: var(--tv-primary);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tv-d-meta strong { display: block; color: var(--tv-ink); font-weight: 700; font-size: 14px; }
  .tv-d-meta span { display: block; color: var(--tv-ink-soft); font-size: 12px; }

  /* Gallery */
  .tv-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 12px;
    margin: 32px 0 0;
    border-radius: 24px;
    overflow: hidden;
  }
  .tv-gallery img {
    width: 100%; height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 500ms;
  }
  .tv-gallery .main {
    grid-row: 1 / -1;
    position: relative;
  }
  .tv-gallery .main img { transition: transform 800ms ease; }
  .tv-gallery .main:hover img { transform: scale(1.03); }
  .tv-gallery .main .label {
    position: absolute;
    top: 20px; left: 20px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.95);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tv-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  @media (max-width: 820px) {
    .tv-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px; }
    .tv-gallery .main { grid-row: auto; grid-column: 1 / -1; aspect-ratio: 16/9; height: 260px; }
  }

  /* ================ BODY LAYOUT ================ */
  .tv-d-body {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: flex-start;
  }
  @media (max-width: 960px) { .tv-d-body { grid-template-columns: 1fr; gap: 40px; } }
  .tv-d-sidebar { position: sticky; top: 100px; }

  /* Tabs */
  .tv-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--tv-gray-200);
    margin-bottom: 40px;
    position: sticky;
    top: 76px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    z-index: 10;
    margin-left: -8px;
    margin-right: -8px;
    padding: 0 8px;
  }
  .tv-tab {
    padding: 18px 0;
    margin-right: 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--tv-ink-soft);
    border-bottom: 2px solid transparent;
    transition: all 200ms;
    white-space: nowrap;
  }
  .tv-tab:hover { color: var(--tv-ink); }
  .tv-tab.active { color: var(--tv-primary); border-color: var(--tv-primary); }

  .tv-d-block { margin-bottom: 64px; scroll-margin-top: 140px; }
  .tv-d-block h2 {
    font-size: 32px;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }
  .tv-d-block .kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tv-primary);
    margin-bottom: 14px;
  }
  .tv-d-block .lead {
    color: var(--tv-ink-soft);
    line-height: 1.7;
    font-size: 17px;
    margin-bottom: 24px;
    max-width: 580px;
  }

  /* Services grid */
  .tv-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  @media (max-width: 540px) { .tv-services { grid-template-columns: 1fr; } }
  .tv-service {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: var(--tv-gray-50);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 200ms;
  }
  .tv-service:hover {
    background: #fff;
    border-color: var(--tv-primary-light);
    box-shadow: var(--tv-shadow-sm);
  }
  .tv-service .ico {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: #fff;
    color: var(--tv-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--tv-gray-200);
  }
  .tv-service span { font-weight: 500; font-size: 14px; }

  /* Itinerary timeline */
  .tv-itinerary {
    position: relative;
    padding-left: 40px;
  }
  .tv-itinerary::before {
    content: '';
    position: absolute;
    left: 15px; top: 12px; bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, var(--tv-primary) 0%, var(--tv-primary-light) 100%);
  }
  .tv-day {
    position: relative;
    padding: 16px 0 32px;
  }
  .tv-day::before {
    content: attr(data-day);
    position: absolute;
    left: -40px;
    top: 10px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--tv-primary);
    color: var(--tv-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--tv-font-display);
    font-weight: 800;
    font-size: 13px;
    font-style: italic;
  }
  .tv-day h4 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .tv-day .meta {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tv-primary);
    margin-bottom: 8px;
  }
  .tv-day p { color: var(--tv-ink-soft); line-height: 1.6; }

  /* Hotels per departure */
  .tv-hotels-by-dep {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--tv-gray-200);
  }
  .tv-hotels-by-dep h3 {
    font-size: 22px;
    letter-spacing: -0.015em;
    margin-bottom: 6px;
  }
  .tv-hotels-by-dep .tv-hotels-lede {
    color: var(--tv-ink-soft);
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 24px;
  }
  .tv-hotels-dep {
    margin-bottom: 28px;
  }
  .tv-hotels-dep:last-child { margin-bottom: 0; }
  .tv-hotels-dep-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }
  .tv-hotels-dep-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--tv-primary-light);
    color: var(--tv-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .tv-hotels-dep-chip svg { color: var(--tv-primary); }
  .tv-hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
  }
  .tv-hotel-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--tv-gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 200ms, box-shadow 200ms, border-color 200ms;
  }
  .tv-hotel-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--tv-shadow-md);
    border-color: var(--tv-primary-light);
  }
  .tv-hotel-img {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    background-color: var(--tv-gray-100);
  }
  .tv-hotel-body {
    padding: 14px 16px 16px;
  }
  .tv-hotel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
  }
  .tv-hotel-name {
    font-family: var(--tv-font-display);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.01em;
    color: var(--tv-ink);
    line-height: 1.2;
  }
  .tv-hotel-stars {
    color: var(--tv-gold, #E6A817);
    font-size: 12px;
    flex-shrink: 0;
    letter-spacing: 1px;
  }
  .tv-hotel-addr {
    font-size: 12px;
    color: var(--tv-ink-soft);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .tv-hotel-addr svg { color: var(--tv-primary); flex-shrink: 0; }
  .tv-hotel-blurb {
    font-size: 13px;
    line-height: 1.5;
    color: var(--tv-ink);
  }

  /* Tarifa table */
  .tv-tarifas-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--tv-shadow-md);
    border: 1px solid var(--tv-gray-200);
    background: #fff;
  }
  .tv-tarifas-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .tv-tarifas-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 720px;
  }
  .tv-tarifas-table thead th {
    background: var(--tv-primary);
    color: #fff;
    padding: 18px 20px;
    font-family: var(--tv-font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: left;
    white-space: nowrap;
  }
  .tv-tarifas-table thead th:last-child { text-align: right; }
  .tv-tarifas-table tbody td {
    padding: 16px 20px;
    border-top: 1px solid var(--tv-gray-100);
    vertical-align: middle;
    color: var(--tv-ink);
  }
  .tv-tarifas-table tbody tr:first-child td { border-top: 0; }
  .tv-tarifas-table .hotel-cell {
    background: #FBFBFB;
    border-right: 1px solid var(--tv-gray-100);
    min-width: 200px;
    padding: 20px;
  }
  .tv-tarifas-table .hotel-cell .name {
    font-family: var(--tv-font-display);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.01em;
    line-height: 1.15;
  }
  .tv-tarifas-table .hotel-cell .stars {
    color: var(--tv-primary);
    font-size: 12px;
    letter-spacing: 3px;
    margin-top: 6px;
  }
  .tv-tarifas-table .hotel-cell .link {
    display: block;
    font-size: 11px;
    color: var(--tv-primary);
    margin-top: 8px;
    text-decoration: underline;
    word-break: break-all;
  }
  .tv-tarifas-table .date-cell { min-width: 140px; }
  .tv-tarifas-table .date-cell .date {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    line-height: 1.3;
  }
  .tv-tarifas-table .date-cell .date .strike { text-decoration: line-through; color: var(--tv-ink-soft); }
  .tv-tarifas-table .date-cell .tag {
    display: inline-block;
    margin-top: 6px;
    color: var(--tv-primary);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  .tv-tarifas-table .regime-cell {
    color: var(--tv-ink-soft);
    font-size: 13px;
    line-height: 1.45;
    min-width: 110px;
  }
  .tv-tarifas-table .hab-cell {
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    min-width: 80px;
  }
  .tv-tarifas-table .tarifa-cell {
    color: var(--tv-ink);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    min-width: 180px;
  }
  .tv-tarifas-table .tarifa-cell .plus { color: var(--tv-ink-soft); }
  .tv-tarifas-table .total-cell {
    font-weight: 800;
    font-family: var(--tv-font-display);
    font-size: 17px;
    letter-spacing: -0.01em;
    text-align: right;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
  }
  .tv-tarifas-foot {
    background: var(--tv-primary);
    color: #fff;
    text-align: center;
    padding: 16px;
    font-size: 13px;
    letter-spacing: 0.04em;
    font-weight: 600;
  }
  @media (max-width: 720px) {
    .tv-tarifas-table thead th { padding: 14px 12px; font-size: 10px; letter-spacing: 0.14em; }
    .tv-tarifas-table tbody td { padding: 14px 12px; }
    .tv-tarifas-table .hotel-cell { padding: 16px 12px; }
  }

  /* Map placeholder */
  .tv-map {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #D6E4E8 0%, #C4D6DA 100%);
    aspect-ratio: 16/9;
    position: relative;
    border: 1px solid var(--tv-gray-200);
  }
  .tv-map svg.route { position: absolute; inset: 0; width: 100%; height: 100%; }
  .tv-map .pin {
    position: absolute;
    transform: translate(-50%, -100%);
    color: var(--tv-primary);
    filter: drop-shadow(0 4px 10px rgba(200,16,46,0.4));
  }
  .tv-map .pin-label {
    position: absolute;
    transform: translate(-50%, 0);
    background: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: var(--tv-shadow-sm);
    white-space: nowrap;
  }

  /* FAQ */
  .tv-faq details {
    border-bottom: 1px solid var(--tv-gray-200);
    padding: 20px 0;
  }
  .tv-faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    list-style: none;
  }
  .tv-faq summary::-webkit-details-marker { display: none; }
  .tv-faq summary::after {
    content: '+';
    font-family: var(--tv-font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--tv-primary);
    transition: transform 200ms;
  }
  .tv-faq details[open] summary::after { content: '−'; }
  .tv-faq details p { color: var(--tv-ink-soft); line-height: 1.6; margin-top: 12px; font-size: 15px; }

  /* Reviews */
  .tv-reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  @media (max-width: 640px) { .tv-reviews { grid-template-columns: 1fr; } }
  .tv-review {
    padding: 24px;
    background: var(--tv-gray-50);
    border-radius: 16px;
  }
  .tv-review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }
  .tv-review-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--tv-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--tv-font-display);
  }
  .tv-review-name { font-weight: 700; font-size: 14px; }
  .tv-review-date { font-size: 12px; color: var(--tv-ink-soft); }
  .tv-review-stars { color: var(--tv-gold); font-size: 14px; margin-left: auto; }
  .tv-review p { font-size: 14px; line-height: 1.6; color: var(--tv-ink); font-style: italic; }

  /* ================ BOOKING CARD ================ */
  .tv-book {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--tv-shadow-md);
    border: 1px solid var(--tv-gray-100);
    overflow: hidden;
  }
  .tv-book-price {
    padding: 28px 28px 22px;
    background: linear-gradient(180deg, var(--tv-primary-light) 0%, #fff 100%);
  }
  .tv-book-price .prefix {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tv-ink-soft);
  }
  .tv-book-price .val {
    font-family: var(--tv-font-display);
    font-size: 46px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--tv-primary);
    line-height: 1;
    margin: 4px 0 6px;
  }
  .tv-book-price .per { font-size: 13px; color: var(--tv-ink-soft); }
  .tv-book-cuotas {
    margin: 14px 0 0;
    padding: 12px 14px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--tv-gray-200);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
  }
  .tv-book-cuotas strong { color: var(--tv-primary); font-weight: 700; }

  .tv-book-body { padding: 20px 28px 28px; }
  .tv-book-fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
  .tv-book-field {
    padding: 14px 16px;
    border: 1px solid var(--tv-gray-300);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: border-color 200ms;
    cursor: pointer;
  }
  .tv-book-field:hover, .tv-book-field:focus-within { border-color: var(--tv-primary); }
  .tv-book-field label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tv-ink-soft);
  }
  .tv-book-field input, .tv-book-field select {
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--tv-ink);
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    appearance: none;
  }
  .tv-book-total {
    padding: 16px 0;
    border-top: 1px dashed var(--tv-gray-300);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .tv-book-total .label { font-size: 13px; color: var(--tv-ink-soft); }
  .tv-book-total .sum { font-family: var(--tv-font-display); font-size: 28px; font-weight: 900; letter-spacing: -0.02em; }

  .tv-book-actions { display: flex; flex-direction: column; gap: 10px; }
  .tv-book-cta {
    width: 100%;
    padding: 16px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    background: var(--tv-primary);
    color: #fff;
    transition: all 200ms;
  }
  .tv-book-cta:hover { background: var(--tv-primary-dark); transform: translateY(-1px); box-shadow: var(--tv-shadow-lg); }
  .tv-book-wa {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    background: var(--tv-whatsapp);
    color: #fff;
    border: 1px solid var(--tv-whatsapp);
    transition: all 200ms;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .tv-book-wa:hover { filter: brightness(0.95); transform: translateY(-1px); box-shadow: var(--tv-shadow-lg); }

  .tv-book-foot {
    padding: 18px 28px;
    background: var(--tv-gray-50);
    border-top: 1px solid var(--tv-gray-200);
    font-size: 12px;
    color: var(--tv-ink-soft);
    display: flex;
    gap: 14px;
  }
  .tv-book-foot svg { flex-shrink: 0; color: var(--tv-primary); }

  /* Related */
  .tv-related {
    padding: 80px 0 120px;
    background: var(--tv-gray-50);
  }
  .tv-related-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 24px;
    flex-wrap: wrap;
  }
  .tv-related h2 { font-size: 40px; }
  .tv-related h2 em { font-style: italic; color: var(--tv-primary); font-weight: 700; }
  .tv-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  /* Mobile booking bar */
  .tv-mobile-book {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 14px 20px;
    background: #fff;
    border-top: 1px solid var(--tv-gray-200);
    z-index: 30;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.06);
  }
  .tv-mobile-book .price { font-family: var(--tv-font-display); font-weight: 900; font-size: 22px; color: var(--tv-primary); }
  .tv-mobile-book .small { font-size: 11px; color: var(--tv-ink-soft); letter-spacing: 0.08em; text-transform: uppercase; }
  @media (max-width: 960px) {
    .tv-mobile-book { display: flex; }
    body { padding-bottom: 72px; }
    .tv-wa-fab { display: none; }
  }

/* ---- empresa.html ---- */
.tv-emp-hero {
    padding: 160px 0 80px;
    background: var(--tv-ink);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .tv-emp-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(200,16,46,0.25) 0%, transparent 50%);
    pointer-events: none;
  }
  .tv-emp-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 900px) { .tv-emp-hero-grid { grid-template-columns: 1fr; } }
  .tv-emp-hero h1 {
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: #fff;
    margin-bottom: 24px;
  }
  .tv-emp-hero h1 em { font-style: italic; color: var(--tv-primary-light); font-weight: 700; }
  .tv-emp-hero p.lead {
    font-size: 19px;
    line-height: 1.55;
    color: rgba(255,255,255,0.75);
    max-width: 540px;
  }
  .tv-emp-60 {
    font-family: var(--tv-font-display);
    font-weight: 900;
    font-style: italic;
    font-size: clamp(200px, 30vw, 380px);
    color: var(--tv-primary);
    line-height: 0.9;
    letter-spacing: -0.08em;
    text-align: center;
    position: relative;
  }
  .tv-emp-60::after {
    content: 'años viajando con vos';
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
    font-family: var(--tv-font-body);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
  }

  /* Story band */
  .tv-emp-story { padding: 120px 0; }
  .tv-emp-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
  }
  @media (max-width: 900px) { .tv-emp-story-grid { grid-template-columns: 1fr; gap: 40px; } }
  .tv-emp-kicker {
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--tv-primary); margin-bottom: 18px;
  }
  .tv-emp-story h2 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
  }
  .tv-emp-story h2 em { font-style: italic; color: var(--tv-primary); font-weight: 700; }
  .tv-emp-story p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--tv-ink-soft);
    margin-bottom: 16px;
  }
  .tv-emp-story p:first-of-type::first-letter {
    font-family: var(--tv-font-display);
    font-weight: 900;
    font-size: 72px;
    line-height: 0.85;
    float: left;
    padding: 4px 14px 0 0;
    color: var(--tv-primary);
  }

  /* Timeline */
  .tv-emp-timeline { padding: 100px 0; background: var(--tv-gray-50); }
  .tv-emp-timeline-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
  }
  .tv-emp-timeline-list::before {
    content: '';
    position: absolute;
    top: 38px; left: 6%; right: 6%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--tv-primary) 0 10px, transparent 10px 20px);
    z-index: 0;
  }
  @media (max-width: 900px) {
    .tv-emp-timeline-list { grid-template-columns: 1fr 1fr; }
    .tv-emp-timeline-list::before { display: none; }
  }
  .tv-emp-tl-item {
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .tv-emp-tl-dot {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--tv-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--tv-font-display);
    font-weight: 900;
    color: var(--tv-primary);
    font-size: 16px;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }
  .tv-emp-tl-item h4 { font-size: 18px; margin-bottom: 6px; }
  .tv-emp-tl-item p { font-size: 14px; color: var(--tv-ink-soft); line-height: 1.55; }

  /* Team */
  .tv-emp-team { padding: 120px 0; background: var(--tv-ink); color: #fff; }
  .tv-emp-team-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
  .tv-emp-team-head h2 { color: #fff; font-size: clamp(40px, 5vw, 64px); line-height: 1; letter-spacing: -0.03em; margin-bottom: 20px; }
  .tv-emp-team-head h2 em { font-style: italic; color: var(--tv-primary); font-weight: 700; }
  .tv-emp-team-head p { color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.6; }
  .tv-emp-team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px 20px;
  }
  @media (max-width: 1100px) { .tv-emp-team-grid { grid-template-columns: repeat(4, 1fr); } }
  @media (max-width: 820px)  { .tv-emp-team-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 540px)  { .tv-emp-team-grid { grid-template-columns: repeat(2, 1fr); } }
  .tv-emp-member {
    text-align: center;
    padding: 8px 4px;
    transition: transform 300ms;
  }
  .tv-emp-member:hover { transform: translateY(-4px); }
  .tv-emp-avatar {
    width: 120px; height: 120px;
    border-radius: 50%;
    background: var(--tv-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--tv-font-display);
    font-weight: 900;
    font-size: 38px;
    color: #fff;
    letter-spacing: -0.02em;
    font-style: italic;
    margin: 0 auto 16px;
    border: 3px solid rgba(255,255,255,0.08);
    transition: border-color 300ms, transform 300ms;
  }
  .tv-emp-member:hover .tv-emp-avatar { border-color: var(--tv-primary); }
  .tv-emp-avatar.v-0 { background: linear-gradient(135deg, #f40606 0%, #7A2E1D 100%); }
  .tv-emp-avatar.v-1 { background: linear-gradient(135deg, #0F4C5C 0%, #041e24 100%); }
  .tv-emp-avatar.v-2 { background: linear-gradient(135deg, #1F4E3D 0%, #0f261d 100%); }
  .tv-emp-avatar.v-3 { background: linear-gradient(135deg, #D97706 0%, #7c2d12 100%); }
  .tv-emp-avatar.v-4 { background: linear-gradient(135deg, #4338CA 0%, #1e1b4b 100%); }
  .tv-emp-avatar.v-5 { background: linear-gradient(135deg, #7A2E1D 0%, #3d1710 100%); }
  .tv-emp-avatar.v-6 { background: linear-gradient(135deg, #0F172A 0%, #000 100%); }
  .tv-emp-avatar.v-7 { background: linear-gradient(135deg, #9F1239 0%, #500720 100%); }

  .tv-emp-member-body { padding: 0 4px; }
  .tv-emp-member-role {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tv-primary-light);
    margin-bottom: 6px;
  }
  .tv-emp-member h4 { font-size: 15px; margin-bottom: 6px; color: #fff; letter-spacing: -0.01em; }
  .tv-emp-member p { font-size: 12px; line-height: 1.5; color: rgba(255,255,255,0.65); }
  .tv-emp-member p strong { display: block; color: rgba(255,255,255,0.85); font-weight: 600; margin-bottom: 4px; font-size: 12px; }

  .tv-emp-notice {
    margin: 32px auto 0;
    max-width: 680px;
    padding: 16px 20px;
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    text-align: center;
  }

  /* Values */
  .tv-emp-values { padding: 120px 0; }
  .tv-emp-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    counter-reset: tv-val;
  }
  @media (max-width: 820px) { .tv-emp-values-grid { grid-template-columns: 1fr; } }
  .tv-emp-value {
    padding: 40px 32px;
    background: var(--tv-gray-50);
    border-radius: 20px;
    border-left: 4px solid var(--tv-primary);
    counter-increment: tv-val;
  }
  .tv-emp-value .num::before { content: counter(tv-val, decimal-leading-zero); }
  .tv-emp-value .num {
    font-family: var(--tv-font-display);
    font-weight: 900;
    font-style: italic;
    font-size: 64px;
    line-height: 0.9;
    color: var(--tv-primary);
    letter-spacing: -0.05em;
    margin-bottom: 18px;
  }
  .tv-emp-value h3 { font-size: 22px; margin-bottom: 10px; }
  .tv-emp-value p { color: var(--tv-ink-soft); line-height: 1.65; font-size: 15px; }

  /* CTA */
  .tv-emp-cta {
    padding: 120px 0;
    background: var(--tv-primary);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .tv-emp-cta::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?q=80&w=2000&auto=format&fit=crop');
    background-size: cover; background-position: center;
    opacity: 0.15;
    mix-blend-mode: overlay;
  }
  .tv-emp-cta > * { position: relative; }
  .tv-emp-cta h2 { color: #fff; font-size: clamp(40px, 5vw, 64px); letter-spacing: -0.03em; line-height: 1; margin-bottom: 20px; }
  .tv-emp-cta h2 em { font-style: italic; color: #fff; opacity: 0.7; font-weight: 700; }
  .tv-emp-cta p { color: rgba(255,255,255,0.9); font-size: 18px; max-width: 560px; margin: 0 auto 36px; line-height: 1.6; }

/* ---- contacto.html ---- */
.tv-ct-hero {
    padding: 140px 0 40px;
    background: linear-gradient(180deg, #fff 0%, var(--tv-gray-50) 100%);
  }
  .tv-ct-hero h1 { font-size: clamp(44px, 6vw, 80px); line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 18px; max-width: 820px; }
  .tv-ct-hero h1 em { font-style: italic; color: var(--tv-primary); font-weight: 700; }
  .tv-ct-hero p { font-size: 18px; color: var(--tv-ink-soft); max-width: 620px; }

  .tv-ct-channels {
    padding: 40px 0 80px;
  }
  .tv-ct-channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  @media (max-width: 900px) { .tv-ct-channels-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .tv-ct-channels-grid { grid-template-columns: 1fr; } }
  .tv-ct-channel {
    padding: 28px 26px;
    background: #fff;
    border: 1px solid var(--tv-gray-200);
    border-radius: 18px;
    display: flex; flex-direction: column; gap: 12px;
    transition: all 250ms;
    color: var(--tv-ink);
  }
  .tv-ct-channel:hover { transform: translateY(-4px); box-shadow: var(--tv-shadow-md); border-color: var(--tv-primary); }
  .tv-ct-channel .ico {
    width: 52px; height: 52px;
    background: var(--tv-primary-light);
    color: var(--tv-primary);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
  }
  .tv-ct-channel.wa .ico { background: #25D366; color: #fff; }
  .tv-ct-channel h3 { font-size: 18px; margin-bottom: 2px; }
  .tv-ct-channel .val { font-family: var(--tv-font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; color: var(--tv-primary); }
  .tv-ct-channel .meta { font-size: 13px; color: var(--tv-ink-soft); }

  /* Form + branches */
  .tv-ct-main { padding: 60px 0 100px; }
  .tv-ct-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: flex-start;
  }
  @media (max-width: 900px) { .tv-ct-main-grid { grid-template-columns: 1fr; gap: 40px; } }

  .tv-ct-form {
    background: #fff;
    border: 1px solid var(--tv-gray-200);
    border-radius: 24px;
    padding: 40px;
  }
  .tv-ct-form h2 { font-size: 32px; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 8px; }
  .tv-ct-form h2 em { font-style: italic; color: var(--tv-primary); font-weight: 700; }
  .tv-ct-form .sub { color: var(--tv-ink-soft); font-size: 15px; margin-bottom: 28px; }
  .tv-ct-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
  .tv-ct-field label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--tv-ink-soft);
  }
  .tv-ct-field input, .tv-ct-field select, .tv-ct-field textarea {
    font-family: inherit;
    font-size: 15px;
    padding: 14px 16px;
    background: var(--tv-gray-50);
    border: 1px solid var(--tv-gray-200);
    border-radius: 12px;
    color: var(--tv-ink);
    outline: none;
    transition: all 150ms;
  }
  .tv-ct-field input:focus, .tv-ct-field select:focus, .tv-ct-field textarea:focus {
    border-color: var(--tv-primary);
    background: #fff;
    box-shadow: 0 0 0 4px var(--tv-primary-light);
  }
  .tv-ct-field textarea { resize: vertical; min-height: 120px; }
  .tv-ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  @media (max-width: 540px) { .tv-ct-row { grid-template-columns: 1fr; } }
  .tv-ct-form button[type=submit] {
    width: 100%;
    padding: 16px;
    background: var(--tv-primary);
    color: #fff;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    transition: background 150ms;
    margin-top: 8px;
  }
  .tv-ct-form button[type=submit]:hover { background: var(--tv-primary-dark); }
  .tv-ct-success {
    display: none;
    padding: 20px;
    background: #E8F5E8;
    border: 1px solid #8FD18F;
    color: #166534;
    border-radius: 12px;
    font-weight: 600;
    margin-top: 16px;
  }
  .tv-ct-form.sent .tv-ct-success { display: block; }

  /* Branches + map */
  .tv-ct-branch {
    background: #fff;
    border: 1px solid var(--tv-gray-200);
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 16px;
  }
  .tv-ct-branch.main { background: var(--tv-ink); color: #fff; border-color: transparent; }
  .tv-ct-branch.main h3 { color: #fff; }
  .tv-ct-branch-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
  .tv-ct-branch-pin { width: 36px; height: 36px; background: var(--tv-primary); color: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .tv-ct-branch h3 { font-size: 20px; line-height: 1; margin: 0; }
  .tv-ct-branch .tag { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tv-primary); margin-bottom: 2px; }
  .tv-ct-branch.main .tag { color: var(--tv-primary-light); }
  .tv-ct-branch ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
  .tv-ct-branch ul li { font-size: 14px; color: var(--tv-ink-soft); display: flex; gap: 10px; align-items: flex-start; }
  .tv-ct-branch.main ul li { color: rgba(255,255,255,0.75); }
  .tv-ct-branch ul li strong { color: var(--tv-ink); font-weight: 700; }
  .tv-ct-branch.main ul li strong { color: #fff; }
  .tv-ct-branch ul li svg { flex-shrink: 0; margin-top: 2px; color: var(--tv-primary); }

  /* Map (SVG) */
  .tv-ct-map {
    background: var(--tv-gray-100);
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    margin-top: 20px;
    border: 1px solid var(--tv-gray-200);
  }
  .tv-ct-map iframe { width: 100%; height: 100%; border: 0; display: block; }
  .tv-ct-map-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #E6DCCB 0%, #D4C5AE 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tv-ct-map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
  }
  .tv-ct-map-pin {
    position: relative;
    display: flex; flex-direction: column; align-items: center;
    animation: tvPinBob 2.5s ease-in-out infinite;
  }
  @keyframes tvPinBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
  .tv-ct-map-pin .bubble {
    background: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    font-weight: 700;
    font-size: 13px;
    color: var(--tv-ink);
    margin-bottom: 8px;
    white-space: nowrap;
  }
  .tv-ct-map-pin .dot {
    width: 24px; height: 24px;
    background: var(--tv-primary);
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(200,16,46,0.5);
  }

  /* Placeholder notice */
  .tv-ct-notice {
    padding: 12px 16px;
    border: 1px dashed var(--tv-gray-300);
    background: var(--tv-gray-50);
    border-radius: 10px;
    font-size: 12px;
    color: var(--tv-ink-soft);
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .tv-ct-notice strong { color: var(--tv-primary); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 3px; }

/* ---- administracion.html ---- */
.tv-adm-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, #fff 0%, var(--tv-gray-50) 100%);
  }
  .tv-adm-hero h1 { font-size: clamp(40px, 5.5vw, 72px); line-height: 0.98; letter-spacing: -0.03em; margin-bottom: 16px; max-width: 780px; }
  .tv-adm-hero h1 em { font-style: italic; color: var(--tv-primary); font-weight: 700; }
  .tv-adm-hero p { font-size: 18px; color: var(--tv-ink-soft); max-width: 620px; }

  .tv-adm-layout {
    padding: 40px 0 120px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: flex-start;
  }
  @media (max-width: 900px) { .tv-adm-layout { grid-template-columns: 1fr; } }

  .tv-adm-side {
    position: sticky; top: 100px;
    background: #fff;
    border: 1px solid var(--tv-gray-200);
    border-radius: 18px;
    padding: 16px;
  }
  .tv-adm-side a {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--tv-ink-soft);
    transition: all 180ms;
  }
  .tv-adm-side a:hover, .tv-adm-side a.active { background: var(--tv-primary-light); color: var(--tv-primary); }
  .tv-adm-side a .i { width: 16px; display:flex; justify-content:center; color: inherit; }

  .tv-adm-section { margin-bottom: 80px; scroll-margin-top: 100px; }
  .tv-adm-section h2 {
    font-size: clamp(32px, 3.6vw, 44px);
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 8px;
  }
  .tv-adm-section h2 em { font-style: italic; color: var(--tv-primary); font-weight: 700; }
  .tv-adm-section .sub { color: var(--tv-ink-soft); font-size: 16px; margin-bottom: 32px; max-width: 620px; }

  /* Cards grid for tarjetas */
  .tv-adm-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
  .tv-adm-card {
    padding: 22px 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--tv-gray-200);
    display: flex; flex-direction: column; gap: 10px;
    transition: all 200ms;
  }
  .tv-adm-card:hover { border-color: var(--tv-primary); transform: translateY(-3px); box-shadow: var(--tv-shadow-md); }
  .tv-adm-card .logo {
    height: 40px; display: flex; align-items: center;
    font-family: var(--tv-font-display); font-weight: 900;
    font-size: 18px; letter-spacing: -0.02em; color: var(--tv-ink);
  }
  .tv-adm-card .logo .brand-mark {
    width: 36px; height: 36px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 900; font-size: 13px; letter-spacing: 0.05em;
    margin-right: 10px;
  }
  .tv-adm-card .rows { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
  .tv-adm-chip { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; background: var(--tv-primary-light); color: var(--tv-primary); }
  .tv-adm-chip.alt { background: var(--tv-gray-100); color: var(--tv-ink); }
  .tv-adm-card p { font-size: 13px; color: var(--tv-ink-soft); line-height: 1.5; }

  /* Bank accounts table */
  .tv-adm-bank-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
  .tv-adm-bank {
    padding: 24px 26px;
    border-radius: 18px;
    background: var(--tv-ink);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .tv-adm-bank::after {
    content: '';
    position: absolute;
    top: -40%; right: -20%;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: var(--tv-primary);
    opacity: 0.25;
    filter: blur(30px);
  }
  .tv-adm-bank .bank-name {
    font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--tv-primary-light); margin-bottom: 14px;
  }
  .tv-adm-bank h3 { color: #fff; font-size: 20px; margin-bottom: 18px; line-height: 1.2; }
  .tv-adm-bank dl { margin: 0; display: grid; gap: 10px; position: relative; z-index: 1; }
  .tv-adm-bank dl > div { display: grid; grid-template-columns: 110px 1fr auto; gap: 12px; align-items: center; font-size: 13px; }
  .tv-adm-bank dt { color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 10px; }
  .tv-adm-bank dd { margin: 0; font-family: 'JetBrains Mono', 'Menlo', ui-monospace, monospace; font-size: 13px; color: #fff; }
  .tv-adm-copy {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 150ms;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .tv-adm-copy:hover { background: var(--tv-primary); border-color: var(--tv-primary); }

  /* Conditions */
  .tv-adm-conds { display: grid; gap: 14px; }
  .tv-adm-cond {
    background: #fff;
    border: 1px solid var(--tv-gray-200);
    border-radius: 14px;
    overflow: hidden;
  }
  .tv-adm-cond summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
  }
  .tv-adm-cond summary::-webkit-details-marker { display: none; }
  .tv-adm-cond summary::after {
    content: '+';
    font-family: var(--tv-font-display);
    font-weight: 900;
    font-size: 28px;
    color: var(--tv-primary);
    transition: transform 300ms;
  }
  .tv-adm-cond[open] summary::after { transform: rotate(45deg); }
  .tv-adm-cond-body {
    padding: 0 24px 20px;
    color: var(--tv-ink-soft);
    line-height: 1.7;
    font-size: 15px;
  }
  .tv-adm-cond-body ul { padding-left: 20px; margin-top: 8px; }
  .tv-adm-cond-body li { margin-bottom: 6px; }

  /* Placeholder notice */
  .tv-adm-notice {
    padding: 14px 18px;
    border: 1px dashed var(--tv-gray-300);
    background: var(--tv-gray-50);
    border-radius: 12px;
    font-size: 13px;
    color: var(--tv-ink-soft);
    margin-bottom: 28px;
  }
  .tv-adm-notice strong { color: var(--tv-primary); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 4px; }

  /* Legal strip */
  .tv-adm-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding: 16px 22px;
    background: var(--tv-gray-50);
    border-radius: 14px;
    margin-bottom: 24px;
    border-left: 3px solid var(--tv-primary);
  }
  .tv-adm-legal > div { display: flex; flex-direction: column; gap: 2px; }
  .tv-adm-legal .k {
    font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--tv-ink-soft);
  }
  .tv-adm-legal strong { font-size: 14px; font-weight: 700; color: var(--tv-ink); letter-spacing: -0.005em; }

  .tv-adm-bank .bank-logo {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,255,255,0.08);
    font-family: var(--tv-font-display); font-weight: 900;
    color: #fff; font-size: 14px; letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .tv-adm-bank .bank-type {
    display: inline-block;
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 3px 9px; border-radius: 999px;
    background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75);
    margin-left: 10px;
  }
  .tv-adm-bank .bank-type.usd { background: rgba(230,168,23,0.2); color: var(--tv-gold); }

/* ---- tarjetas.html ---- */
.tv-adm-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, #fff 0%, var(--tv-gray-50) 100%);
  }
  .tv-adm-hero h1 { font-size: clamp(40px, 5.5vw, 72px); line-height: 0.98; letter-spacing: -0.03em; margin-bottom: 16px; max-width: 780px; }
  .tv-adm-hero h1 em { font-style: italic; color: var(--tv-primary); font-weight: 700; }
  .tv-adm-hero p { font-size: 18px; color: var(--tv-ink-soft); max-width: 640px; line-height: 1.6; }

  .tv-tj-wrap { padding: 12px 0 120px; }

  /* Tabla comparativa */
  .tv-tj-table-wrap {
    border: 1px solid var(--tv-gray-200);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--tv-shadow-sm);
  }
  .tv-tj-table-scroll { overflow-x: auto; }
  .tv-tj-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 760px;
  }
  .tv-tj-table thead th {
    background: var(--tv-ink);
    color: rgba(255,255,255,0.85);
    font-family: var(--tv-font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 18px 14px;
    text-align: center;
    white-space: nowrap;
  }
  .tv-tj-table thead th:first-child {
    text-align: left;
    background: linear-gradient(90deg, var(--tv-primary) 0%, var(--tv-primary-dark) 100%);
    color: #fff;
  }
  .tv-tj-table tbody td {
    padding: 18px 14px;
    border-top: 1px solid var(--tv-gray-100);
    text-align: center;
    color: var(--tv-ink-soft);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
  }
  .tv-tj-table tbody td:first-child {
    text-align: left;
    color: var(--tv-ink);
    font-weight: 700;
    font-family: var(--tv-font-display);
    letter-spacing: -0.01em;
  }
  .tv-tj-table tbody tr:hover { background: var(--tv-gray-50); }
  .tv-tj-table .brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border-radius: 8px;
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.04em;
    margin-right: 12px;
    vertical-align: middle;
    flex-shrink: 0;
  }
  .tv-tj-table .brand-row { display: inline-flex; align-items: center; }
  .tv-tj-table .pct { color: var(--tv-primary); font-weight: 800; }
  .tv-tj-table .zero { color: #16A34A; font-weight: 800; }
  .tv-tj-table .dash { color: var(--tv-gray-300); }
  .tv-tj-legend {
    padding: 14px 22px;
    background: var(--tv-gray-50);
    font-size: 12px;
    color: var(--tv-ink-soft);
    line-height: 1.5;
    border-top: 1px solid var(--tv-gray-100);
  }
  .tv-tj-legend strong { color: var(--tv-ink); font-weight: 700; }

  /* Promos */
  .tv-tj-section-title {
    margin: 56px 0 22px;
    display: flex;
    align-items: baseline;
    gap: 14px;
  }
  .tv-tj-section-title h2 {
    font-size: clamp(24px, 2.6vw, 30px);
    letter-spacing: -0.02em;
  }
  .tv-tj-section-title h2 em { font-style: italic; color: var(--tv-primary); font-weight: 700; }
  .tv-tj-section-title .badge {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--tv-primary-light);
    color: var(--tv-primary);
  }

  .tv-tj-promos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
  }
  .tv-tj-promo {
    padding: 22px 24px;
    background: #fff;
    border: 1px solid var(--tv-gray-200);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 200ms;
    position: relative;
  }
  .tv-tj-promo:hover {
    border-color: var(--tv-primary);
    box-shadow: var(--tv-shadow-md);
    transform: translateY(-2px);
  }
  .tv-tj-promo .h {
    font-family: var(--tv-font-display);
    font-weight: 800;
    font-size: 16px;
    color: var(--tv-ink);
    letter-spacing: -0.01em;
  }
  .tv-tj-promo .b {
    font-size: 13px;
    color: var(--tv-ink-soft);
    line-height: 1.55;
  }
  .tv-tj-promo .tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 6px;
    background: #16A34A;
    color: #fff;
    align-self: flex-start;
  }
  .tv-tj-promo .tag.alt { background: var(--tv-primary); }
  .tv-tj-promo .tag.muted { background: var(--tv-gray-100); color: var(--tv-ink-soft); }

  /* Requisitos */
  .tv-tj-reqs {
    background: linear-gradient(135deg, #1A0A0D 0%, #2A1418 100%);
    color: #fff;
    border-radius: 24px;
    padding: 56px;
    position: relative;
    overflow: hidden;
    margin-top: 56px;
  }
  .tv-tj-reqs::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: var(--tv-primary);
    opacity: 0.18;
    filter: blur(80px);
    pointer-events: none;
  }
  @media (max-width: 600px) { .tv-tj-reqs { padding: 36px 24px; } }
  .tv-tj-reqs-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: end;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  @media (max-width: 720px) {
    .tv-tj-reqs-head { grid-template-columns: 1fr; gap: 16px; }
  }
  .tv-tj-reqs h2 {
    color: #fff;
    font-size: clamp(28px, 3.4vw, 42px);
    letter-spacing: -0.025em;
    line-height: 1.05;
  }
  .tv-tj-reqs h2 em { font-style: italic; color: var(--tv-primary-light); font-weight: 700; }
  .tv-tj-reqs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--tv-primary-light);
    margin-bottom: 14px;
  }
  .tv-tj-reqs-eyebrow::before {
    content: '';
    width: 24px; height: 1.5px;
    background: var(--tv-primary);
    display: inline-block;
  }
  .tv-tj-reqs-lead {
    color: rgba(255,255,255,0.7);
    max-width: 380px;
    line-height: 1.6;
    font-size: 14px;
  }
  .tv-tj-reqs-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  @media (max-width: 720px) { .tv-tj-reqs-grid { grid-template-columns: 1fr; } }

  .tv-tj-req {
    position: relative;
    padding: 24px 26px 26px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background 220ms, border-color 220ms, transform 220ms;
  }
  .tv-tj-req:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(244,208,213,0.25);
    transform: translateY(-2px);
  }
  .tv-tj-req-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 4px;
  }
  .tv-tj-req-num {
    font-family: var(--tv-font-display);
    font-weight: 900;
    font-style: italic;
    font-size: 30px;
    line-height: 1;
    color: var(--tv-primary);
    letter-spacing: -0.04em;
    flex-shrink: 0;
    width: 44px;
  }
  .tv-tj-req-title {
    font-family: var(--tv-font-display);
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.25;
  }
  .tv-tj-req p {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
  }
  .tv-tj-req em {
    font-style: italic;
    color: var(--tv-primary-light);
  }
  .tv-tj-req strong { color: #fff; font-weight: 700; }

  /* Downloads */
  .tv-tj-downloads {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  @media (max-width: 720px) { .tv-tj-downloads { grid-template-columns: 1fr; } }
  .tv-tj-dl {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 26px;
    background: #fff;
    border: 1.5px solid var(--tv-gray-200);
    border-radius: 18px;
    transition: all 220ms;
    cursor: pointer;
  }
  .tv-tj-dl:hover {
    border-color: var(--tv-primary);
    background: var(--tv-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--tv-shadow-md);
  }
  .tv-tj-dl .ic {
    width: 52px; height: 52px;
    background: var(--tv-primary-light);
    color: var(--tv-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 220ms;
  }
  .tv-tj-dl:hover .ic { background: var(--tv-primary); color: #fff; }
  .tv-tj-dl .meta { flex: 1; }
  .tv-tj-dl .meta .t {
    font-family: var(--tv-font-display);
    font-weight: 800;
    font-size: 15px;
    color: var(--tv-ink);
    letter-spacing: -0.005em;
    line-height: 1.25;
    margin-bottom: 4px;
  }
  .tv-tj-dl .meta .s {
    font-size: 12px;
    color: var(--tv-ink-soft);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .tv-tj-dl .arrow {
    color: var(--tv-ink-soft);
    transition: transform 220ms, color 220ms;
  }
  .tv-tj-dl:hover .arrow { color: var(--tv-primary); transform: translateX(4px); }

/* ---- cuentas-bancarias.html ---- */
.tv-adm-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, #fff 0%, var(--tv-gray-50) 100%);
  }
  .tv-adm-hero h1 { font-size: clamp(40px, 5.5vw, 72px); line-height: 0.98; letter-spacing: -0.03em; margin-bottom: 16px; max-width: 780px; }
  .tv-adm-hero h1 em { font-style: italic; color: var(--tv-primary); font-weight: 700; }
  .tv-adm-hero p { font-size: 18px; color: var(--tv-ink-soft); max-width: 640px; line-height: 1.6; }

  .tv-cb-wrap { padding: 12px 0 120px; }

  .tv-cb-toolbar {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .tv-cb-toolbar .filter {
    display: inline-flex;
    background: var(--tv-gray-100);
    border-radius: 999px;
    padding: 4px;
  }
  .tv-cb-toolbar .filter button {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    color: var(--tv-ink-soft);
    transition: all 180ms;
  }
  .tv-cb-toolbar .filter button.is-active {
    background: #fff;
    color: var(--tv-primary);
    box-shadow: var(--tv-shadow-sm);
  }
  .tv-cb-toolbar .count {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--tv-ink-soft);
    text-transform: uppercase;
  }

  .tv-cb-titular {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 18px 24px;
    background: var(--tv-ink);
    color: #fff;
    border-radius: 16px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
  }
  .tv-cb-titular::after {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: var(--tv-primary);
    opacity: 0.18;
    filter: blur(50px);
  }
  .tv-cb-titular > div {
    position: relative; z-index: 1;
    padding-right: 32px;
    border-right: 1px solid rgba(255,255,255,0.1);
    margin-right: 32px;
  }
  .tv-cb-titular > div:last-child { border-right: none; margin-right: 0; padding-right: 0; }
  .tv-cb-titular .k {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
  }
  .tv-cb-titular .v {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.005em;
  }
  @media (max-width: 600px) {
    .tv-cb-titular { flex-direction: column; gap: 14px; }
    .tv-cb-titular > div { border-right: none; padding-right: 0; margin-right: 0; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .tv-cb-titular > div:last-child { border-bottom: none; padding-bottom: 0; }
  }

  .tv-cb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 18px;
  }
  .tv-cb-card {
    background: #fff;
    border: 1px solid var(--tv-gray-200);
    border-radius: 18px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 200ms;
    position: relative;
    overflow: hidden;
  }
  .tv-cb-card:hover {
    border-color: var(--tv-primary);
    box-shadow: var(--tv-shadow-md);
    transform: translateY(-2px);
  }
  .tv-cb-card[data-currency="USD"] { background: linear-gradient(180deg, #fff 0%, #FFF8E7 100%); border-color: #E6A81733; }
  .tv-cb-card[data-currency="USD"]:hover { border-color: var(--tv-gold); }

  .tv-cb-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .tv-cb-bank-name {
    font-family: var(--tv-font-display);
    font-weight: 900;
    font-size: 22px;
    color: var(--tv-ink);
    letter-spacing: -0.02em;
  }
  .tv-cb-currency-chip {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--tv-gray-100);
    color: var(--tv-ink-soft);
    text-transform: uppercase;
  }
  .tv-cb-card[data-currency="USD"] .tv-cb-currency-chip {
    background: var(--tv-gold);
    color: #2A1B00;
  }
  .tv-cb-type {
    font-size: 12px;
    font-weight: 600;
    color: var(--tv-ink-soft);
    letter-spacing: -0.005em;
    margin-top: -8px;
  }

  .tv-cb-rows { display: flex; flex-direction: column; gap: 8px; }
  .tv-cb-row {
    display: grid;
    grid-template-columns: 96px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--tv-gray-100);
  }
  .tv-cb-row:first-child { border-top: none; padding-top: 4px; }
  .tv-cb-row dt {
    font-size: 10px;
    font-weight: 700;
    color: var(--tv-ink-soft);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .tv-cb-row dd {
    margin: 0;
    font-family: 'JetBrains Mono', 'Menlo', ui-monospace, monospace;
    font-size: 13px;
    color: var(--tv-ink);
    overflow-wrap: anywhere;
    line-height: 1.35;
  }
  .tv-cb-copy {
    padding: 5px 10px;
    background: var(--tv-gray-100);
    color: var(--tv-ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 6px;
    transition: all 150ms;
    border: 1px solid transparent;
  }
  .tv-cb-copy:hover { background: var(--tv-primary); color: #fff; }
  .tv-cb-copy.is-copied { background: #16A34A; color: #fff; }

  .tv-cb-instructions {
    margin-top: 56px;
    background: #fff;
    border: 1px solid var(--tv-gray-200);
    border-left: 4px solid var(--tv-primary);
    border-radius: 14px;
    padding: 26px 30px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: start;
  }
  @media (max-width: 600px) { .tv-cb-instructions { grid-template-columns: 1fr; } }
  .tv-cb-instructions .icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--tv-primary-light);
    color: var(--tv-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .tv-cb-instructions h3 {
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: -0.015em;
  }
  .tv-cb-instructions p {
    color: var(--tv-ink-soft);
    line-height: 1.65;
    font-size: 14px;
  }
  .tv-cb-instructions p + p { margin-top: 8px; }

/* ---- condiciones-generales.html ---- */
.tv-adm-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, #fff 0%, var(--tv-gray-50) 100%);
  }
  .tv-adm-hero h1 { font-size: clamp(40px, 5.5vw, 72px); line-height: 0.98; letter-spacing: -0.03em; margin-bottom: 16px; max-width: 780px; }
  .tv-adm-hero h1 em { font-style: italic; color: var(--tv-primary); font-weight: 700; }
  .tv-adm-hero p { font-size: 18px; color: var(--tv-ink-soft); max-width: 620px; }

  .tv-cg-layout {
    padding: 40px 0 120px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 56px;
    align-items: flex-start;
  }
  @media (max-width: 960px) { .tv-cg-layout { grid-template-columns: 1fr; gap: 32px; } }

  .tv-cg-toc {
    position: sticky; top: 100px;
    background: #fff;
    border: 1px solid var(--tv-gray-200);
    border-radius: 18px;
    padding: 18px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
  .tv-cg-toc h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tv-ink-soft);
    margin-bottom: 12px;
    padding: 0 8px;
  }
  .tv-cg-toc ol { list-style: none; padding: 0; margin: 0; counter-reset: cg; }
  .tv-cg-toc li { counter-increment: cg; }
  .tv-cg-toc a {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--tv-ink-soft);
    line-height: 1.3;
    transition: all 150ms;
  }
  .tv-cg-toc a::before {
    content: counter(cg, decimal-leading-zero);
    font-family: var(--tv-font-display);
    font-weight: 700;
    font-size: 10px;
    color: var(--tv-primary);
    letter-spacing: 0.06em;
    flex-shrink: 0;
  }
  .tv-cg-toc a:hover,
  .tv-cg-toc a.is-active {
    background: var(--tv-primary-light);
    color: var(--tv-primary);
  }
  @media (max-width: 960px) {
    .tv-cg-toc { position: static; max-height: none; }
  }

  .tv-cg-doc { counter-reset: art; }
  .tv-cg-art {
    background: #fff;
    border: 1px solid var(--tv-gray-200);
    border-radius: 16px;
    padding: 32px 36px;
    margin-bottom: 18px;
    counter-increment: art;
    scroll-margin-top: 100px;
  }
  @media (max-width: 600px) { .tv-cg-art { padding: 24px; } }
  .tv-cg-art-num {
    display: inline-block;
    font-family: var(--tv-font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--tv-primary);
    margin-bottom: 6px;
  }
  .tv-cg-art-num::before {
    content: 'Art. ' counter(art, decimal-leading-zero);
  }
  .tv-cg-art h2 {
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  .tv-cg-art p, .tv-cg-art li {
    color: var(--tv-ink-soft);
    line-height: 1.7;
    font-size: 15px;
  }
  .tv-cg-art p + p { margin-top: 12px; }
  .tv-cg-art ol.alpha {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    counter-reset: a;
    display: grid;
    gap: 12px;
  }
  .tv-cg-art ol.alpha li {
    counter-increment: a;
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
  }
  .tv-cg-art ol.alpha li::before {
    content: counter(a, lower-alpha) ')';
    font-family: var(--tv-font-display);
    font-weight: 800;
    color: var(--tv-primary);
    font-size: 14px;
  }
  .tv-cg-art strong { color: var(--tv-ink); font-weight: 700; }

  .tv-cg-meta {
    margin-top: 40px;
    padding: 20px 24px;
    background: var(--tv-gray-50);
    border-left: 3px solid var(--tv-primary);
    border-radius: 12px;
    font-size: 13px;
    color: var(--tv-ink-soft);
  }
  .tv-cg-meta strong { color: var(--tv-ink); }
