/* =========================================================
   JAS GROUP TX - V11 HOME COMPACTA
   Objetivo: reducir scroll, mejorar celular, conservar contenido aprobado.
   ========================================================= */

html {
  scroll-padding-top: 96px;
}

section[id],
main[id] {
  scroll-margin-top: 96px;
}

.compact-header {
  min-height: 76px;
}

.compact-header .brand {
  width: 66px;
  height: 66px;
}

.compact-header .brand img {
  width: 62px;
  height: 62px;
}

.compact-header .main-nav {
  gap: 6px;
}

.compact-header .main-nav a {
  padding: 8px 11px;
}

.compact-hero {
  min-height: auto !important;
  padding: clamp(28px, 4vw, 54px) clamp(18px, 4vw, 58px) 24px !important;
}

.compact-hero-grid {
  grid-template-columns: minmax(350px, 0.95fr) minmax(390px, 0.9fr) !important;
  gap: clamp(20px, 3vw, 46px) !important;
}

.compact-hero .hero h1,
.compact-hero h1 {
  font-size: clamp(30px, 3.1vw, 46px) !important;
  line-height: 1.12 !important;
}

.compact-hero .hero-text {
  max-width: 680px;
  margin: 14px 0 18px !important;
  font-size: clamp(15px, 1.15vw, 18px) !important;
  line-height: 1.55 !important;
}

.compact-hero-buttons {
  margin-top: 16px !important;
}

.quick-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.quick-topics a {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(121,212,255,0.18);
  color: #dcecff;
  font-size: 13px;
  font-weight: 850;
}

.compact-video-hero {
  min-height: 360px !important;
  border-radius: 26px !important;
  padding: 20px !important;
}

.compact-video-preview {
  min-height: 250px !important;
  border-radius: 22px !important;
  padding: 22px !important;
}

.compact-video-preview .play-button {
  width: 58px;
  height: 58px;
  font-size: 23px;
  top: 20px;
  left: 20px;
}

.compact-video-preview .video-overlay-copy h3 {
  font-size: clamp(24px, 2.7vw, 34px) !important;
}

.compact-video-preview .video-overlay-copy p {
  font-size: 15px !important;
}

.compact-strip,
.compact-section,
.roadtrip-compact-section,
.compact-booking {
  width: min(1480px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.compact-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 14px 0 28px;
}

.compact-tile {
  min-height: 118px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(22, 36, 58, 0.84);
  border: 1px solid rgba(175, 215, 255, 0.18);
  box-shadow: 0 14px 44px rgba(3, 12, 28, 0.28);
  transition: 180ms ease;
}

.compact-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(121,212,255,0.56);
}

.compact-tile span {
  display: block;
  color: #79d4ff;
  font-weight: 950;
  font-size: 13px;
  margin-bottom: 8px;
}

.compact-tile strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 6px;
}

.compact-tile small {
  display: block;
  color: var(--muted);
  line-height: 1.35;
  font-size: 13px;
}

.tile-cta {
  background:
    linear-gradient(135deg, rgba(212,32,42,0.28), rgba(53,168,255,0.16)),
    rgba(22, 36, 58, 0.88);
}

.compact-section {
  padding: 28px 0 32px;
  border-top: 1px solid rgba(121,212,255,0.13);
}

.compact-heading {
  max-width: 880px;
  margin-bottom: 18px;
}

.compact-heading h2,
.roadtrip-compact-card h2,
.compact-booking h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.compact-heading p:last-child,
.roadtrip-compact-card p,
.compact-booking p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 18px;
}

.service-pills span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(121,212,255,0.18);
  color: #eaf6ff;
  font-weight: 850;
  font-size: 14px;
}

.service-pills span::before {
  content: "•";
  color: #79d4ff;
  margin-right: 8px;
  font-size: 18px;
  line-height: 1;
}

.compact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.compact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mini-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  min-height: 148px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(22, 36, 58, 0.84);
  border: 1px solid rgba(175, 215, 255, 0.18);
  box-shadow: 0 14px 44px rgba(3, 12, 28, 0.28);
  overflow: hidden;
  transition: 180ms ease;
}

.mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(121,212,255,0.56);
}

.mini-card img {
  width: 112px;
  height: 100%;
  min-height: 122px;
  object-fit: cover;
  border-radius: 14px;
}

.mini-card h3 {
  margin: 2px 0 6px;
  font-size: 17px;
  line-height: 1.18;
}

.mini-card p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.35;
  font-size: 13px;
}

.mini-card span {
  display: inline-flex;
  color: #79d4ff;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compact-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.gallery-mini-card {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(22, 36, 58, 0.84);
  border: 1px solid rgba(175, 215, 255, 0.18);
  box-shadow: 0 14px 44px rgba(3, 12, 28, 0.28);
}

.gallery-mini-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.gallery-mini-card h3 {
  margin: 10px 11px 12px;
  font-size: 14px;
  line-height: 1.2;
}

.roadtrip-compact-section {
  padding: 28px 0 32px;
}

.roadtrip-compact-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(53,168,255,0.18), rgba(121,212,255,0.10)),
    rgba(22, 36, 58, 0.84);
  border: 1px solid rgba(175, 215, 255, 0.18);
  box-shadow: var(--shadow);
}

.roadtrip-mini-video {
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(8, 20, 38, 0.10), rgba(8, 20, 38, 0.66)),
    radial-gradient(circle at 22% 20%, rgba(121,212,255,0.34), transparent 32%),
    linear-gradient(135deg, #13243a 0%, #162d4c 42%, #1a2434 100%);
  border: 1px solid rgba(121,212,255,0.20);
}

.roadtrip-mini-video .small-play {
  position: static;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  font-size: 22px;
}

.roadtrip-mini-video span {
  display: block;
  color: #dcecff;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.roadtrip-mini-video strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
}

.compact-roadtrip-checks {
  grid-column: 1 / -1;
  padding: 0 !important;
  margin-top: 0;
}

.compact-roadtrip-checks span {
  min-height: 34px;
  font-size: 13px;
}

.roadtrip-compact-card .compact-actions {
  grid-column: 1 / -1;
  margin-top: 0;
}

.compact-booking {
  margin-top: 6px !important;
  margin-bottom: 26px !important;
  padding: clamp(22px, 3vw, 34px) !important;
}

.compact-footer {
  margin-top: 18px !important;
  padding-top: 24px !important;
}

/* Hide old long layouts if an older block remains loaded accidentally */
.services-section,
.clips-section:not(.clips-compact),
.gallery-section:not(.gallery-compact),
.before-drive,
.placeholder-section,
.feature-strip {
  display: none !important;
}

@media (max-width: 1180px) {
  .compact-hero-grid {
    grid-template-columns: 1fr !important;
  }

  .compact-video-hero {
    min-height: 320px !important;
  }

  .compact-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .compact-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compact-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .roadtrip-compact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 82px;
  }

  section[id],
  main[id] {
    scroll-margin-top: 82px;
  }

  .compact-header {
    min-height: 70px;
  }

  .compact-header .brand {
    width: 58px;
    height: 58px;
  }

  .compact-header .brand img {
    width: 54px;
    height: 54px;
  }

  .compact-hero {
    padding-top: 22px !important;
  }

  .compact-hero h1 {
    font-size: clamp(30px, 9vw, 42px) !important;
  }

  .compact-hero .hero-text {
    font-size: 15px !important;
  }

  .quick-topics a {
    font-size: 12px;
    padding: 7px 9px;
  }

  .compact-video-hero {
    min-height: 250px !important;
    padding: 12px !important;
  }

  .compact-video-preview {
    min-height: 220px !important;
    padding: 16px !important;
  }

  .compact-video-preview .play-button {
    width: 50px;
    height: 50px;
    font-size: 20px;
    top: 15px;
    left: 15px;
  }

  .compact-video-preview .video-overlay-copy h3 {
    font-size: 23px !important;
  }

  .video-tags {
    gap: 7px;
  }

  .video-tags span {
    font-size: 11px;
    padding: 8px 10px;
  }

  .compact-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    padding-bottom: 20px;
  }

  .compact-tile {
    min-height: 104px;
    padding: 13px;
  }

  .compact-tile strong {
    font-size: 16px;
  }

  .compact-tile small {
    font-size: 12px;
  }

  .compact-section,
  .roadtrip-compact-section {
    padding: 22px 0 24px;
  }

  .compact-heading h2,
  .roadtrip-compact-card h2,
  .compact-booking h2 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .service-pills {
    gap: 8px;
  }

  .service-pills span {
    min-height: 35px;
    font-size: 12px;
    padding: 7px 10px;
  }

  .compact-card-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mini-card {
    grid-template-columns: 92px 1fr;
    min-height: 120px;
    padding: 10px;
  }

  .mini-card img {
    width: 92px;
    min-height: 100px;
  }

  .mini-card h3 {
    font-size: 15px;
  }

  .mini-card p {
    font-size: 12px;
  }

  .compact-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }

  .gallery-mini-card h3 {
    font-size: 12px;
    margin: 8px 9px 10px;
  }

  .roadtrip-compact-card {
    padding: 18px;
    gap: 14px;
  }

  .roadtrip-mini-video {
    min-height: 126px;
    padding: 14px;
  }

  .roadtrip-mini-video strong {
    font-size: 18px;
  }

  .compact-roadtrip-checks span {
    min-height: 31px;
    font-size: 11.5px;
    padding: 6px 9px;
  }

  .compact-booking {
    padding: 18px !important;
  }

  .booking-actions {
    width: 100%;
  }

  .booking-actions a {
    width: 100%;
  }

  .compact-footer {
    padding-bottom: 34px !important;
  }
}


/* V12 - JAS Asesor Virtual */
.ai-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #07111f;
  background: linear-gradient(135deg, #79d4ff, #ffffff);
  border: 1px solid rgba(255,255,255,0.32);
  box-shadow: 0 18px 40px rgba(53,168,255,0.24);
  font-weight: 950;
  letter-spacing: -0.01em;
  transition: 180ms ease;
}

.ai-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(121,212,255,0.34);
}

.compact-ai-callout {
  width: min(1480px, calc(100% - 36px));
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 2.6vw, 30px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(121,212,255,0.20), rgba(53,168,255,0.11)),
    rgba(22, 36, 58, 0.84);
  border: 1px solid rgba(175, 215, 255, 0.22);
  box-shadow: var(--shadow);
}

.compact-ai-callout h2 {
  margin: 0;
  font-size: clamp(25px, 2.6vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.compact-ai-callout p:last-child {
  max-width: 900px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.5;
  margin-bottom: 0;
}

.ai-btn-large {
  white-space: nowrap;
}

@media (max-width: 820px) {
  .compact-ai-callout {
    grid-template-columns: 1fr;
    margin-bottom: 18px;
  }

  .ai-btn,
  .ai-btn-large {
    width: 100%;
  }

  .compact-hero-buttons .ai-btn {
    width: 100%;
  }
}


/* V16 - Privacy page and footer legal links */
.privacy-page {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 34px;
}

.privacy-hero {
  margin-top: 18px;
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(121,212,255,0.18), rgba(53,168,255,0.10)),
    rgba(22, 36, 58, 0.86);
  border: 1px solid rgba(175, 215, 255, 0.22);
  box-shadow: var(--shadow);
}

.privacy-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.privacy-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.privacy-date {
  color: #dcecff !important;
  font-weight: 850;
  margin-top: 12px;
}

.privacy-content {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.privacy-card {
  padding: clamp(18px, 3vw, 26px);
  border-radius: 22px;
  background: rgba(22, 36, 58, 0.80);
  border: 1px solid rgba(175, 215, 255, 0.16);
}

.privacy-card h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.privacy-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 10px;
}

.privacy-card a,
.site-footer a {
  color: #79d4ff;
  font-weight: 850;
}

.english-block {
  border-color: rgba(121,212,255,0.34);
}

.privacy-nav {
  margin-left: auto;
}

@media (max-width: 720px) {
  .privacy-page {
    padding-top: 20px;
  }

  .privacy-hero {
    padding: 20px;
  }

  .privacy-card {
    padding: 16px;
  }

  .privacy-nav {
    display: none !important;
  }
}


/* V17 - Botonera flotante móvil */
.mobile-action-bar {
  display: none;
}

@media (max-width: 820px) {
  body {
    padding-bottom: 86px;
  }

  .mobile-action-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 999;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 9px;
    border-radius: 22px;
    background:
      linear-gradient(135deg, rgba(22, 36, 58, 0.94), rgba(8, 20, 38, 0.96));
    border: 1px solid rgba(121,212,255,0.28);
    box-shadow: 0 18px 48px rgba(0,0,0,0.38);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    min-height: 54px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: rgba(255,255,255,0.075);
    border: 1px solid rgba(255,255,255,0.10);
    color: #ffffff;
    text-decoration: none;
    font-weight: 950;
    letter-spacing: -0.01em;
  }

  .mobile-action-bar a:nth-child(2) {
    background: linear-gradient(135deg, rgba(212,32,42,0.35), rgba(53,168,255,0.18));
    border-color: rgba(255,255,255,0.18);
  }

  .mobile-action-bar a:nth-child(3) {
    background: linear-gradient(135deg, rgba(121,212,255,0.28), rgba(255,255,255,0.10));
    border-color: rgba(121,212,255,0.30);
  }

  .mobile-action-bar span {
    font-size: 18px;
    line-height: 1;
  }

  .mobile-action-bar strong {
    font-size: 12px;
    line-height: 1;
  }
}


/* V18 - Avatar JAS Asesor Virtual */
.avatar-ai-callout {
  grid-template-columns: 132px 1fr auto;
  overflow: hidden;
  position: relative;
}

.avatar-ai-callout::after {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(121,212,255,0.20), transparent 68%);
  pointer-events: none;
}

.ai-avatar-wrap {
  position: relative;
  width: 116px;
  height: 116px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(121,212,255,0.20), rgba(255,255,255,0.08)),
    rgba(8,20,38,0.72);
  border: 1px solid rgba(121,212,255,0.28);
  box-shadow: 0 18px 44px rgba(0,0,0,0.30);
}

.ai-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.avatar-pulse {
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #79d4ff, #ffffff);
  color: #07111f;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 0 0 0 rgba(121,212,255,0.65);
  animation: avatarPulse 2.1s ease-in-out infinite;
}

.avatar-mini-note {
  display: inline-flex;
  margin-top: 10px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(121,212,255,0.18);
  color: #dcecff;
  font-size: 13px;
  font-weight: 850;
}

@keyframes avatarPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(121,212,255,0.58);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(121,212,255,0);
    transform: scale(1.04);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(121,212,255,0);
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  .avatar-ai-callout {
    grid-template-columns: 104px 1fr;
  }

  .avatar-ai-callout .ai-btn-large {
    grid-column: 1 / -1;
  }

  .ai-avatar-wrap {
    width: 96px;
    height: 96px;
    border-radius: 24px;
  }
}

@media (max-width: 620px) {
  .avatar-ai-callout {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .ai-avatar-wrap {
    width: 112px;
    height: 112px;
  }

  .avatar-mini-note {
    border-radius: 16px;
    line-height: 1.25;
  }
}


/* V19 - Galería real optimizada */
.real-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.gallery-real-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(22, 36, 58, 0.78);
  border: 1px solid rgba(175, 215, 255, 0.16);
  box-shadow: 0 16px 40px rgba(0,0,0,0.20);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.gallery-real-card:hover {
  transform: translateY(-3px);
  border-color: rgba(121,212,255,0.38);
  box-shadow: 0 22px 54px rgba(0,0,0,0.28);
}

.gallery-real-card a {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.gallery-real-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
}

.gallery-real-caption {
  padding: 15px 15px 16px;
}

.gallery-real-caption span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(121,212,255,0.14);
  color: #dcecff;
  border: 1px solid rgba(121,212,255,0.20);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.gallery-real-caption h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.gallery-real-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
}

@media (max-width: 960px) {
  .real-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .real-gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* V20 - Galería ampliada tipo presentación */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 10%, rgba(53,168,255,0.16), transparent 28%),
    rgba(2, 8, 18, 0.92);
  backdrop-filter: blur(12px);
}

.gallery-lightbox.open {
  display: flex;
}

.lightbox-panel {
  width: min(1080px, 92vw);
  max-height: 86vh;
  margin: 0;
  display: grid;
  gap: 12px;
}

.lightbox-panel img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 22px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(121,212,255,0.24);
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
}

.lightbox-panel figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(22,36,58,0.86);
  border: 1px solid rgba(121,212,255,0.18);
}

.lightbox-panel figcaption strong {
  color: #ffffff;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.lightbox-panel figcaption span {
  color: var(--muted);
  line-height: 1.35;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  cursor: pointer;
  color: #ffffff;
  background: rgba(22,36,58,0.82);
  border: 1px solid rgba(121,212,255,0.26);
  box-shadow: 0 16px 44px rgba(0,0,0,0.38);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  font-size: 32px;
  line-height: 1;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  width: 50px;
  height: 64px;
  border-radius: 18px;
  transform: translateY(-50%);
  font-size: 52px;
  line-height: 0.8;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.gallery-real-card a {
  cursor: zoom-in;
}

@media (max-width: 720px) {
  .gallery-lightbox {
    padding: 12px;
  }

  .lightbox-panel {
    width: 100%;
    max-height: 84vh;
  }

  .lightbox-panel img {
    max-height: 62vh;
    border-radius: 18px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 96px;
    width: 46px;
    height: 50px;
    font-size: 42px;
    transform: none;
  }

  .lightbox-prev {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }
}


/* V21 - Introducción destacada animada */
.intro-reel {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 340px;
  text-decoration: none;
  isolation: isolate;
  cursor: pointer;
}

.intro-reel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 24% 18%, rgba(121,212,255,0.26), transparent 26%),
    linear-gradient(180deg, rgba(2,8,18,0.10), rgba(2,8,18,0.78));
  pointer-events: none;
}

.intro-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.05);
  animation: introSlideFade 30s infinite;
}

.intro-slide-1 {
  background-image: url("assets/gallery-real/jas-mobile-mechanic-altima.webp");
  animation-delay: 0s;
}

.intro-slide-2 {
  background-image: url("assets/gallery-real/jas-ac-diagnostico.webp");
  animation-delay: 6s;
}

.intro-slide-3 {
  background-image: url("assets/gallery-real/jas-servicio-domicilio-f150.webp");
  animation-delay: 12s;
}

.intro-slide-4 {
  background-image: url("assets/gallery-real/jas-frenos-suspension-van.webp");
  animation-delay: 18s;
}

.intro-slide-5 {
  background-image: url("assets/gallery-real/jas-diagnostico-bmw.webp");
  animation-delay: 24s;
}

.intro-shine {
  position: absolute;
  inset: -30%;
  z-index: 4;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.14) 48%, transparent 60%);
  transform: translateX(-58%) rotate(5deg);
  animation: introShine 7s ease-in-out infinite;
  pointer-events: none;
}

.intro-progress {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 6;
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.20);
}

.intro-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  background: linear-gradient(90deg, #79d4ff, #ffffff);
  animation: introProgress 30s linear infinite;
}

.intro-live-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(8,20,38,0.72);
  border: 1px solid rgba(121,212,255,0.30);
  box-shadow: 0 12px 34px rgba(0,0,0,0.26);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 950;
}

.intro-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #79d4ff;
  box-shadow: 0 0 0 0 rgba(121,212,255,0.65);
  animation: introDotPulse 1.75s ease-in-out infinite;
}

.intro-play-mark {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 7;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding-left: 3px;
  color: #07111f;
  background: linear-gradient(135deg, #ffffff, #79d4ff);
  box-shadow: 0 14px 38px rgba(0,0,0,0.34);
  font-size: 18px;
  font-weight: 950;
}

.intro-overlay-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 34px;
  z-index: 7;
  max-width: 520px;
}

.intro-overlay-copy h3 {
  text-wrap: balance;
}

.intro-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #07111f;
  background: #ffffff;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}

@keyframes introSlideFade {
  0% {
    opacity: 0;
    transform: scale(1.05) translateX(0);
  }
  5% {
    opacity: 1;
  }
  18% {
    opacity: 1;
    transform: scale(1.14) translateX(-1.5%);
  }
  24% {
    opacity: 0;
    transform: scale(1.16) translateX(-2%);
  }
  100% {
    opacity: 0;
  }
}

@keyframes introShine {
  0%, 44% {
    transform: translateX(-58%) rotate(5deg);
  }
  62% {
    transform: translateX(62%) rotate(5deg);
  }
  100% {
    transform: translateX(62%) rotate(5deg);
  }
}

@keyframes introProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes introDotPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(121,212,255,0.70);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(121,212,255,0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(121,212,255,0);
  }
}

@media (max-width: 720px) {
  .intro-reel {
    min-height: 300px;
  }

  .intro-overlay-copy {
    left: 16px;
    right: 16px;
    bottom: 32px;
  }

  .intro-live-badge,
  .intro-play-mark {
    top: 14px;
  }

  .intro-live-badge {
    left: 14px;
  }

  .intro-play-mark {
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .intro-progress {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-slide,
  .intro-shine,
  .intro-progress::after,
  .intro-dot {
    animation: none !important;
  }

  .intro-slide-1 {
    opacity: 1;
  }
}


/* V22 - Jingle en Introducción Destacada */
.jingle-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 10px;
  margin-left: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(121,212,255,0.32);
  color: #ffffff;
  background: rgba(8,20,38,0.72);
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  backdrop-filter: blur(12px);
}

.jingle-toggle:hover,
.jingle-toggle:focus-visible {
  outline: none;
  background: rgba(22,36,58,0.92);
  border-color: rgba(255,255,255,0.42);
}

.jingle-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #07111f;
  background: linear-gradient(135deg, #ffffff, #79d4ff);
  font-size: 15px;
  line-height: 1;
}

.jingle-bars {
  display: inline-flex;
  align-items: end;
  gap: 3px;
  height: 16px;
}

.jingle-bars i {
  width: 3px;
  height: 6px;
  border-radius: 999px;
  background: #79d4ff;
  opacity: 0.85;
}

.jingle-toggle.is-playing .jingle-bars i:nth-child(1) {
  animation: jingleBar 0.7s ease-in-out infinite;
}

.jingle-toggle.is-playing .jingle-bars i:nth-child(2) {
  animation: jingleBar 0.7s ease-in-out infinite 0.12s;
}

.jingle-toggle.is-playing .jingle-bars i:nth-child(3) {
  animation: jingleBar 0.7s ease-in-out infinite 0.24s;
}

@keyframes jingleBar {
  0%, 100% { height: 5px; }
  50% { height: 15px; }
}

@media (max-width: 720px) {
  .jingle-toggle {
    margin-left: 0;
    margin-top: 9px;
    padding: 9px 12px;
  }
}


/* V23 - The Deal Corner TX inventory block */
.inventory-section {
  width: min(1180px, calc(100% - 36px));
  margin: 22px auto;
  padding: clamp(20px, 3vw, 32px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 15% 0%, rgba(255,210,90,0.14), transparent 24%),
    radial-gradient(circle at 100% 14%, rgba(53,168,255,0.16), transparent 30%),
    rgba(22, 36, 58, 0.78);
  border: 1px solid rgba(175, 215, 255, 0.16);
  box-shadow: var(--shadow);
}

.inventory-heading {
  align-items: flex-start;
  text-align: left;
  max-width: 980px;
  margin: 0 0 18px;
}

.inventory-heading h2 {
  max-width: 820px;
}

.inventory-heading p {
  max-width: 780px;
}

.inventory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.inventory-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(8, 20, 38, 0.58);
  border: 1px solid rgba(121,212,255,0.18);
  box-shadow: 0 18px 44px rgba(0,0,0,0.26);
}

.inventory-image-link {
  display: block;
  position: relative;
  overflow: hidden;
  background: rgba(0,0,0,0.22);
}

.inventory-image-link::after {
  content: "The Deal Corner TX";
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #07111f;
  background: linear-gradient(135deg, #ffd45a, #ffffff);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(0,0,0,0.30);
}

.inventory-image-link img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.inventory-card:hover .inventory-image-link img {
  transform: scale(1.035);
}

.inventory-card-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
}

.inventory-card-body h3 {
  margin: 7px 0 5px;
  color: #ffffff;
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.inventory-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.inventory-card-body a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 999px;
  color: #07111f;
  background: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
}

.inventory-status {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffd45a;
  background: rgba(255, 212, 90, 0.10);
  border: 1px solid rgba(255, 212, 90, 0.24);
  font-size: 12px;
  font-weight: 950;
}

.inventory-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 880px) {
  .inventory-grid {
    grid-template-columns: 1fr;
  }

  .inventory-card-body {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .inventory-section {
    width: min(100% - 24px, 1180px);
    padding: 16px;
  }

  .inventory-actions a {
    width: 100%;
    justify-content: center;
  }
}


/* V24 - Inventario The Deal Corner TX desplegable y compacto */
.inventory-section-compact {
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.inventory-disclosure {
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,210,90,0.14), transparent 24%),
    radial-gradient(circle at 100% 14%, rgba(53,168,255,0.16), transparent 30%),
    rgba(22, 36, 58, 0.78);
  border: 1px solid rgba(175, 215, 255, 0.16);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.inventory-summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.inventory-summary::-webkit-details-marker {
  display: none;
}

.inventory-summary h2 {
  margin: 2px 0 8px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.inventory-summary p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.inventory-summary-action {
  min-width: 146px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  border-radius: 999px;
  color: #07111f;
  background: linear-gradient(135deg, #ffd45a, #ffffff);
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(0,0,0,0.28);
  white-space: nowrap;
}

.inventory-summary-action::after {
  content: " +";
}

.inventory-disclosure[open] .inventory-summary-action::after {
  content: " −";
}

.inventory-panel {
  padding: 0 clamp(16px, 3vw, 28px) clamp(18px, 3vw, 28px);
  border-top: 1px solid rgba(121,212,255,0.14);
  animation: inventoryPanelIn 0.25s ease-out;
}

.inventory-panel-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
  padding: 18px 0;
}

.inventory-panel-header h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.inventory-panel-header p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

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

@media (max-width: 880px) {
  .inventory-summary,
  .inventory-panel-header {
    grid-template-columns: 1fr;
  }

  .inventory-summary-action {
    width: fit-content;
  }
}

@media (max-width: 620px) {
  .inventory-summary {
    padding: 17px;
  }

  .inventory-summary-action {
    width: 100%;
  }

  .inventory-panel {
    padding: 0 14px 16px;
  }
}


/* V25 - Inventario secundario, menos protagonista */
.inventory-section-compact {
  margin-top: 34px;
  margin-bottom: 18px;
}

.inventory-section-compact .eyebrow {
  color: #ffd45a;
}

.inventory-section-compact .inventory-disclosure {
  box-shadow: 0 14px 38px rgba(0,0,0,0.20);
  background:
    radial-gradient(circle at 100% 0%, rgba(255,210,90,0.10), transparent 22%),
    rgba(22, 36, 58, 0.68);
}

.inventory-section-compact .inventory-summary h2 {
  font-size: clamp(24px, 3.2vw, 38px);
}

.inventory-section-compact .inventory-summary-action {
  background: rgba(255,255,255,0.94);
}

.inventory-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(121,212,255,0.24);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(8,20,38,0.72);
  font-weight: 950;
  cursor: pointer;
}

.inventory-close:hover,
.inventory-close:focus-visible {
  outline: none;
  border-color: rgba(255,255,255,0.42);
  background: rgba(22,36,58,0.92);
}


/* V26 - Menú superior limpio y sin tarjetas numeradas */
.compact-strip {
  display: none !important;
}

.main-nav a[href="#inventory"] {
  color: #ffd45a;
}

@media (min-width: 821px) {
  .compact-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: none !important;
  }

  .main-nav {
    justify-content: center;
  }
}


/* V27 - Intro más limpia, menos texto y marca de agua */
.intro-play-mark {
  display: none !important;
}

.intro-overlay-minimal {
  left: 16px;
  right: auto;
  bottom: 58px;
  max-width: none;
}

.intro-overlay-minimal .video-kicker {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(8,20,38,0.70);
  border: 1px solid rgba(121,212,255,0.24);
  box-shadow: 0 10px 26px rgba(0,0,0,0.20);
}

.intro-overlay-minimal h3,
.intro-overlay-minimal p {
  display: none !important;
}

.intro-cta-minimal {
  position: absolute;
  left: 16px;
  bottom: 18px;
  z-index: 8;
  margin-top: 0;
  background: rgba(255,255,255,0.92);
}

.intro-reel .jingle-toggle {
  position: absolute;
  left: 170px;
  bottom: 18px;
  z-index: 8;
  margin-top: 0;
  margin-left: 0;
}

.intro-watermark {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 6;
  width: clamp(84px, 11vw, 124px);
  height: auto;
  opacity: 0.22;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.30));
  pointer-events: none;
}

@media (max-width: 720px) {
  .intro-overlay-minimal {
    left: 12px;
    bottom: 92px;
  }

  .intro-cta-minimal {
    left: 12px;
    bottom: 14px;
  }

  .intro-reel .jingle-toggle {
    left: 12px;
    bottom: 56px;
  }

  .intro-watermark {
    right: 12px;
    bottom: 16px;
    width: 72px;
    opacity: 0.18;
  }
}


/* V27 Clip 01 - video real integrado */
.video-link-card[href$=".mp4"] {
  border-color: rgba(210,176,80,0.45);
}

.video-link-card[href$=".mp4"] span::after {
  content: " ▶";
  font-weight: 800;
}


/* V28 - Video clips compactos en modal, sin extender la Home */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.video-modal.open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 7, 17, 0.78);
  backdrop-filter: blur(8px);
}

.video-modal-panel {
  position: relative;
  z-index: 2;
  width: min(980px, 96vw);
  background: rgba(6, 18, 34, 0.96);
  border: 1px solid rgba(216, 172, 69, 0.38);
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.video-modal-heading {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 58px 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.video-modal-heading span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-modal-heading strong {
  color: #ffffff;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
}

.video-modal video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.roadtrip-mini-video {
  text-decoration: none;
  color: inherit;
}

.video-link-card.js-video-modal-trigger,
.roadtrip-mini-video.js-video-modal-trigger,
.secondary-btn.js-video-modal-trigger {
  cursor: pointer;
}

.video-link-card.js-video-modal-trigger span::after {
  content: " ▶";
  font-weight: 900;
}

@media (max-width: 720px) {
  .video-modal {
    padding: 10px;
  }

  .video-modal-panel {
    border-radius: 14px;
  }

  .video-modal-heading {
    padding: 13px 52px 12px 14px;
  }
}

/* V28 - Limpieza del primer mosaico/fotos del hero: menos carga visual sobre las imágenes */
.intro-reel::before {
  background: linear-gradient(180deg, rgba(2, 8, 18, 0.03), rgba(2, 8, 18, 0.34)) !important;
}

.intro-live-badge {
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  gap: 6px;
  font-size: 11px;
  background: rgba(8, 20, 38, 0.50);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
}

.intro-dot {
  width: 7px;
  height: 7px;
}

.intro-overlay-minimal {
  left: 12px;
  bottom: 44px;
}

.intro-overlay-minimal .video-kicker {
  padding: 5px 8px;
  font-size: 10px;
  background: rgba(8, 20, 38, 0.42);
  border-color: rgba(121, 212, 255, 0.16);
  box-shadow: none;
  backdrop-filter: blur(4px);
}

.intro-cta-minimal {
  left: 12px;
  bottom: 12px;
  padding: 6px 9px;
  font-size: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.intro-reel .jingle-toggle {
  left: 122px;
  bottom: 12px;
  padding: 6px 9px;
  min-height: 28px;
  gap: 5px;
  font-size: 10px;
  border-radius: 999px;
  background: rgba(8, 20, 38, 0.58);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(5px);
}

.intro-reel .jingle-icon {
  width: 16px;
  height: 16px;
  font-size: 10px;
}

.intro-reel .jingle-bars {
  gap: 2px;
}

.intro-reel .jingle-bars i {
  width: 2px;
  height: 8px;
}

.intro-watermark {
  right: 12px;
  bottom: 12px;
  width: clamp(48px, 6.5vw, 74px);
  opacity: 0.14;
}

.intro-shine {
  opacity: 0.28;
}

@media (max-width: 720px) {
  .intro-overlay-minimal {
    left: 10px;
    bottom: 78px;
  }

  .intro-cta-minimal {
    left: 10px;
    bottom: 10px;
  }

  .intro-reel .jingle-toggle {
    left: 10px;
    bottom: 42px;
  }

  .intro-watermark {
    right: 10px;
    bottom: 10px;
    width: 48px;
    opacity: 0.12;
  }
}

/* V29 - Hero sin enlace/pestaña oculta detrás del mosaico */
.intro-reel {
  cursor: default !important;
}

.intro-overlay-minimal .video-kicker {
  display: none !important;
}

.intro-cta-minimal {
  text-decoration: none !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.intro-overlay-minimal {
  pointer-events: none;
}

.intro-overlay-minimal .intro-cta-minimal,
.intro-overlay-minimal .jingle-toggle,
.intro-overlay-minimal audio {
  pointer-events: auto;
}

.intro-reel .jingle-toggle {
  max-width: 150px;
}

.intro-reel .jingle-text {
  white-space: nowrap;
}

.intro-watermark {
  width: clamp(38px, 5vw, 58px) !important;
  opacity: 0.10 !important;
}

.intro-live-badge {
  opacity: 0.82;
}

@media (max-width: 720px) {
  .intro-reel .jingle-toggle {
    max-width: 138px;
  }

  .intro-watermark {
    width: 40px !important;
  }
}


/* V7 - WhatsApp + copy refinements */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e, #128c7e);
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 18px 38px rgba(18,140,126,0.28);
  font-weight: 950;
  letter-spacing: -0.01em;
  transition: 180ms ease;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(18,140,126,0.36);
}
.compact-hero .hero-text {
  font-size: clamp(14px, 1.02vw, 16px) !important;
  max-width: 760px;
}
@media (max-width: 820px) {
  .compact-hero .hero-text {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
  .compact-hero-buttons .whatsapp-btn,
  .booking-actions .whatsapp-btn {
    width: 100%;
  }
}
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.booking-actions .primary-btn,
.booking-actions .secondary-btn,
.booking-actions .whatsapp-btn {
  flex: 1 1 220px;
}
.inventory-summary h2 {
  max-width: 720px;
}
.inventory-summary p:not(.eyebrow) {
  max-width: 820px;
}
@media (max-width: 820px) {
  body {
    padding-bottom: 98px;
  }
  .mobile-action-bar {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 8px;
  }
  .mobile-action-bar a:nth-child(2) {
    background: linear-gradient(135deg, rgba(34,197,94,0.35), rgba(18,140,126,0.28));
    border-color: rgba(34,197,94,0.38);
  }
  .mobile-action-bar a:nth-child(3) {
    background: linear-gradient(135deg, rgba(212,32,42,0.35), rgba(53,168,255,0.18));
    border-color: rgba(255,255,255,0.18);
  }
  .mobile-action-bar a:nth-child(4) {
    background: linear-gradient(135deg, rgba(121,212,255,0.28), rgba(255,255,255,0.10));
    border-color: rgba(121,212,255,0.30);
  }
  .mobile-action-bar strong {
    font-size: 11px;
  }
}


/* V8 - Botón Compartir Web */
.share-btn,
.quick-share,
.mobile-share-button {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: inherit;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #07111f;
  background: linear-gradient(135deg, #f4d17a, #ffffff);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 18px 38px rgba(244,209,122,0.22);
  font-weight: 950;
  letter-spacing: -0.01em;
  transition: 180ms ease;
}

.share-btn:hover,
.quick-share:hover,
.mobile-share-button:hover {
  transform: translateY(-2px);
}

.quick-share {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(244,209,122,0.13);
  border: 1px solid rgba(244,209,122,0.26);
  color: #fff4d0;
  font-size: 13px;
  font-weight: 850;
}

.share-copied {
  background: linear-gradient(135deg, #22c55e, #b7ffd2) !important;
  color: #061526 !important;
}

@media (max-width: 820px) {
  .compact-hero-buttons .share-btn,
  .booking-actions .share-btn {
    width: 100%;
  }

  .mobile-action-bar {
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    padding: 7px;
  }

  .mobile-action-bar button.mobile-share-button {
    min-height: 54px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: linear-gradient(135deg, rgba(244,209,122,0.28), rgba(255,255,255,0.10));
    border: 1px solid rgba(244,209,122,0.30);
    color: #ffffff;
    text-decoration: none;
    font-weight: 950;
    letter-spacing: -0.01em;
  }

  .mobile-action-bar button.mobile-share-button span {
    font-size: 18px;
    line-height: 1;
  }

  .mobile-action-bar button.mobile-share-button strong {
    font-size: 10px;
    line-height: 1;
  }

  .mobile-action-bar a strong {
    font-size: 10px;
  }
}
