/* ==========================================================================
   PARQUE ACUÁTICO VILLAGASCA - DISEÑO LIMPIO Y BLANCO
   Inspirado 100% en la identidad gráfica oficial de Villagasca
   ========================================================================== */

/* 1. RESET Y VARIABLES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Fredoka', cursive, sans-serif;
  --font-script: 'Pacifico', cursive;

  /* Paleta Oficial Villagasca */
  --vg-blue-primary: #0084c7;
  --vg-blue-dark: #006097;
  --vg-blue-navy: #0e3b68;
  --vg-cyan-light: #00b0f0;
  --vg-cyan-bright: #00e1ea;
  --vg-orange-primary: #f97316;
  --vg-orange-dark: #ea580c;
  --vg-yellow: #facc15;
  --vg-red-brush: #d92525;
  
  /* Fondos Limpios y Claros */
  --vg-white: #ffffff;
  --vg-off-white: #f8fafc;
  --vg-gray-100: #f1f5f9;
  --vg-gray-200: #e2e8f0;
  --vg-gray-700: #334155;
  --vg-gray-900: #0f172a;

  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-floating: 0 14px 35px -5px rgba(0, 75, 125, 0.15), 0 6px 15px rgba(0, 0, 0, 0.05);
  --shadow-modal: 0 25px 60px -10px rgba(15, 23, 42, 0.3);
}

body.vg-body-clean {
  font-family: var(--font-main);
  background-color: var(--vg-white);
  color: var(--vg-gray-900);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

section[id], main[id], .vg-brush-promo-section, .vg-gallery-section, .vg-about-section, .vg-contact-section {
  scroll-margin-top: 86px;
}

.vg-anchor-target {
  display: block;
  position: relative;
  top: -86px;
  visibility: hidden;
  height: 0;
}

/* ==========================================================================
   2. ENCABEZADO LIMPIO EN BLANCO (HEADER OFICIAL)
   ========================================================================== */
.vg-header-clean {
  width: 100%;
  background-color: var(--vg-white);
  border-bottom: 2px solid var(--vg-gray-100);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.vg-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Menús Laterales con texto en azul oficial */
.vg-nav-side {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.vg-nav-side.nav-left {
  justify-content: flex-end;
}

.vg-nav-side.nav-right {
  justify-content: flex-start;
}

.vg-nav-item {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--vg-blue-primary);
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.vg-nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background-color: var(--vg-orange-primary);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.vg-nav-item:hover {
  color: var(--vg-orange-primary);
}

.vg-nav-item:hover::after {
  width: 100%;
}

/* Botón Destacado Boletos en la barra de navegación */
.vg-nav-item.vg-nav-btn-highlight {
  background: linear-gradient(135deg, var(--vg-orange-primary) 0%, var(--vg-orange-dark) 100%);
  color: #ffffff !important;
  padding: 8px 16px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.32);
  transition: all 0.22s cubic-bezier(0.25, 1, 0.5, 1);
  font-weight: 800;
}

.vg-nav-item.vg-nav-btn-highlight::after {
  display: none;
}

.vg-nav-item.vg-nav-btn-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.45);
  color: #ffffff !important;
}

/* Botón Hamburguesa Móvil */
.vg-mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--vg-blue-navy);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.vg-mobile-menu-btn:hover {
  background: #f1f5f9;
}

/* Panel Desplegable de Navegación Móvil */
.vg-mobile-nav-panel {
  display: none;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.vg-mobile-nav-panel.is-open {
  max-height: 520px;
}

.vg-mobile-panel-inner {
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vg-mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--vg-blue-navy);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.vg-mobile-nav-item:hover,
.vg-mobile-nav-item:active {
  background: #f0f9ff;
  color: var(--vg-blue-primary);
}

.vg-mob-icon {
  font-size: 18px;
}

.vg-mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}

.vg-mobile-act-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  transition: all 0.2s ease;
}

.vg-mobile-act-btn.btn-loc {
  background: #f1f5f9;
  color: #1e293b;
}

.vg-mobile-act-btn.btn-tix {
  background: linear-gradient(135deg, var(--vg-orange-primary) 0%, var(--vg-orange-dark) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

/* Logo Central */
.vg-logo-center {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
}

.vg-logo-link {
  display: inline-block;
  text-decoration: none;
}

.vg-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.vg-logo-img:hover {
  transform: scale(1.03);
}

/* Fallback si la imagen externa tarda */
.vg-logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
}
.vg-logo-fallback .vg-dolphin {
  font-size: 36px;
}
.vg-logo-fallback .text-blue {
  display: block;
  font-size: 24px;
  color: var(--vg-blue-primary);
  line-height: 1;
}
.vg-logo-fallback .text-red {
  display: block;
  font-size: 12px;
  color: var(--vg-red-brush);
  font-weight: 800;
  letter-spacing: 1px;
}

/* ==========================================================================
   3. HERO SECTION (CARRUSEL DE FONDO + 2 BOTONES PRINCIPALES AL FRENTE)
   ========================================================================== */
.vg-hero-wrapper {
  position: relative;
  width: 100%;
  background-color: var(--vg-white);
  overflow: hidden;
  padding-bottom: 24px;
}

.vg-hero-carousel {
  position: relative;
  width: 100%;
  height: 560px;
  background-color: #e0f2fe;
  overflow: hidden;
}

.vg-carousel-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Slides */
.vg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s ease;
  z-index: 1;
}

.vg-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Fondos Fotográficos Reales de Parque Acuático */
.vg-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  filter: brightness(0.96);
  transform: scale(1.03);
  transition: transform 7s ease-out;
}

.vg-slide.is-active .vg-slide-bg {
  transform: scale(1);
}

/* Slide 1: Alberca cristalina con palmeras y áreas verdes */
.slide-bg-1 {
  background-image: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.3) 100%),
    url('https://images.unsplash.com/photo-1576013551627-0cc20b96c2a7?auto=format&fit=crop&w=2000&q=85');
}

/* Slide 2: Alberca principal estilo resort de aguas cristalinas */
.slide-bg-2 {
  background-image: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.3) 100%),
    url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=2000&q=85');
}

/* Slide 3: Parque acuático con toboganes y piscinas recreativas */
.slide-bg-3 {
  background-image: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.3) 100%),
    url('https://images.unsplash.com/photo-1582650625119-3a31f8418b7d?auto=format&fit=crop&w=2000&q=85');
}

/* Slide 4: Piscina familiar soleada con agua cristalina */
.slide-bg-4 {
  background-image: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.3) 100%),
    url('https://images.unsplash.com/photo-1575429198097-0414ec08e8cd?auto=format&fit=crop&w=2000&q=85');
}

/* Contenido dentro del Slide */
.vg-slide-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1260px;
  height: 100%;
  margin: 0 auto;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ==========================================================================
   ELEMENTOS GRÁFICOS IDÉNTICOS A LOS ANUNCIOS ORIGINALES
   ========================================================================== */

/* SLIDE 1: Gráfica de "AGUA Clara y Cristalina" */
.content-slide-1 {
  align-items: flex-start;
}

.vg-splash-orange-left {
  position: absolute;
  top: 0;
  left: -80px;
  width: 260px;
  height: 100%;
  background: radial-gradient(circle at 10% 40%, rgba(249, 115, 22, 0.85) 0%, rgba(234, 88, 12, 0) 70%);
  pointer-events: none;
}

.vg-banner-badge-agua {
  display: inline-block;
  background: rgba(14, 59, 104, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 18px 32px 22px;
  border: 4px solid var(--vg-white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  max-width: 440px;
}

.vg-waves-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18px;
}

.vg-badge-agua-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vg-txt-agua {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
  line-height: 0.95;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.vg-txt-clara {
  font-family: var(--font-script);
  font-size: 34px;
  color: var(--vg-yellow);
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-top: 2px;
}

.vg-slide-caption-card {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 12px 20px;
  max-width: 420px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.vg-caption-pill {
  display: inline-block;
  background-color: var(--vg-blue-primary);
  color: white;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.vg-caption-text {
  font-size: 14px;
  color: var(--vg-gray-700);
  font-weight: 600;
  line-height: 1.4;
}

/* SLIDE 2: Mancha de agua azul con texto promocional */
.content-slide-2 {
  align-items: flex-start;
}

.vg-paint-splash-box {
  position: relative;
  max-width: 520px;
  padding: 40px 45px;
}

.vg-paint-splash-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
}

.vg-paint-splash-text {
  position: relative;
  z-index: 2;
}

.vg-splash-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

/* SLIDE 3: Taquilla Oficial & Temperatura del Agua 32°C */
.content-slide-3 {
  align-items: center;
}

.vg-promo-tarifa-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
}

/* Caja de Taquilla Roja */
.vg-taquilla-badge {
  background: var(--vg-red-brush);
  border-radius: 18px;
  padding: 16px 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  border: 4px solid #ffffff;
  min-width: 320px;
}

.vg-taquilla-header {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
  margin-bottom: 8px;
}

.vg-taquilla-box-inner {
  background: rgba(255, 255, 255, 0.15);
  border: 2px dashed rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 12px 16px;
}

.vg-taquilla-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
}

.vg-taquilla-line:last-of-type {
  border-bottom: none;
}

.text-gratis {
  color: #a7f3d0;
  font-size: 16px;
}

.text-precio {
  color: #fef08a;
  font-size: 17px;
}

.vg-taquilla-note {
  font-size: 11px;
  color: #f1f5f9;
  font-style: italic;
  margin-top: 6px;
  text-align: center;
}

/* Medallón 32°C */
.vg-temp-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vg-temp-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
  max-width: 180px;
}

.vg-temp-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--vg-red-brush);
  border: 5px solid #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vg-temp-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
}

/* SLIDE 4: "¡Ven y descubre Villagasca!" */
.content-slide-4 {
  align-items: center;
}

.vg-slide4-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: 980px;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vg-slide4-heading {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--vg-blue-navy);
  line-height: 1.15;
}

.vg-yellow-line {
  width: 70px;
  height: 4px;
  background-color: var(--vg-yellow);
  margin: 14px 0 20px;
  border-radius: 2px;
}

.vg-btn-yellow {
  background-color: var(--vg-yellow);
  color: var(--vg-gray-900);
  border: none;
  padding: 12px 22px;
  border-radius: 30px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  box-shadow: 0 6px 15px rgba(250, 204, 21, 0.4);
}

.vg-btn-yellow:hover {
  background-color: #f59e0b;
  transform: translateY(-2px);
}

.vg-video-mockup {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.vg-video-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.vg-video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(234, 88, 12, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(234, 88, 12, 0.6);
}

.vg-video-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
}

/* ==========================================================================
   FLECHAS LATERALES Y PAGINACIÓN DEL CARRUSEL
   ========================================================================== */
.vg-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.65);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vg-carousel-arrow:hover {
  background: var(--vg-blue-primary);
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.vg-carousel-arrow.arrow-left {
  left: 18px;
}

.vg-carousel-arrow.arrow-right {
  right: 18px;
}

/* Indicadores / Paginación (Invertido hacia abajo) */
.vg-carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
  background: rgba(15, 23, 42, 0.5);
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

.vg-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.vg-dot.is-active {
  width: 26px;
  border-radius: 8px;
  background: var(--vg-yellow);
}

/* ==========================================================================
   4. LOS 2 BOTONES PRINCIPALES EN EL FRENTE DEL HERO (INVERTIDO HACIA ARRIBA)
   ========================================================================== */
.vg-hero-floating-dock {
  position: absolute;
  bottom: 120px;
  left: 0;
  right: 0;
  z-index: 25;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}

.vg-dock-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  pointer-events: auto;
}

/* Estilo de Botón Normal Prominente */
.vg-btn-normal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid #ffffff;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease, background-color 0.2s ease;
  user-select: none;
}

.vg-btn-normal:hover {
  transform: translateY(-3px);
}

.vg-btn-normal:active {
  transform: translateY(0);
}

.vg-btn-normal svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.vg-btn-normal:hover svg {
  transform: scale(1.12);
}

/* Botón 1: Cómo Llegar (Azul Océano Villagasca) */
.vg-btn-normal.btn-como-llegar {
  background-color: var(--vg-blue-primary);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 100, 160, 0.4);
}

.vg-btn-normal.btn-como-llegar:hover {
  background-color: var(--vg-blue-dark);
  box-shadow: 0 10px 25px rgba(0, 80, 130, 0.55);
}

/* Botón 2: Compra de Boletos (Naranja Oficial) */
.vg-btn-normal.btn-boletos {
  background-color: var(--vg-orange-primary);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
}

.vg-btn-normal.btn-boletos:hover {
  background-color: var(--vg-orange-dark);
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.6);
}

/* ==========================================================================
   4.5 SECCIÓN DE VIDEO: RECORRIDO Y EXPERIENCIA VILLAGASCA
   ========================================================================== */
.vg-video-section {
  position: relative;
  background-color: var(--vg-white);
  padding: 70px 20px 80px;
  border-top: 1px solid var(--vg-gray-100);
}

.vg-video-container {
  max-width: 1040px;
  margin: 0 auto;
}

.vg-video-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.vg-section-kicker {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--vg-blue-primary);
  background: #e0f2fe;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.vg-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--vg-gray-900);
  line-height: 1.2;
  margin-bottom: 12px;
}

.vg-section-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 auto;
}

.vg-video-card {
  background: var(--vg-white);
  border: 1px solid var(--vg-gray-200);
  border-radius: 24px;
  box-shadow: var(--shadow-floating);
  padding: 24px;
}

.vg-video-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #020617;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.vg-video-tag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* Botón central de reproducción con efecto de pulso */
.vg-play-center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
  transition: transform 0.25s ease, opacity 0.25s ease;
  user-select: none;
}

.vg-play-center-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.85);
}

.vg-play-pulse {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.4);
  animation: vgPulse 2s infinite ease-out;
}

@keyframes vgPulse {
  0% { transform: translateX(-50%) scale(0.95); opacity: 0.8; }
  50% { transform: translateX(-50%) scale(1.35); opacity: 0.2; }
  100% { transform: translateX(-50%) scale(1.6); opacity: 0; }
}

.vg-play-circle {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vg-orange-primary), var(--vg-orange-dark));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.55);
  border: 3px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.vg-play-center-btn:hover .vg-play-circle {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(234, 88, 12, 0.7);
}

.vg-play-label {
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Controles de la barra inferior */
.vg-player-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.5) 70%, transparent 100%);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 15;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vg-video-screen:hover .vg-player-controls,
.vg-player-controls.is-visible {
  opacity: 1;
}

.vg-ctrl-icon-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 6px;
  transition: color 0.2s ease, transform 0.15s ease;
}

.vg-ctrl-icon-btn:hover {
  color: var(--vg-cyan-bright);
  transform: scale(1.1);
}

.vg-progress-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.vg-progress-bar-track:hover {
  height: 8px;
}

.vg-progress-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--vg-cyan-bright);
  border-radius: 4px;
  transition: width 0.1s linear;
}

.vg-time-display {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  white-space: nowrap;
}

/* Grid de 3 características clave */
.vg-video-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--vg-gray-200);
}

.vg-feat-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.vg-feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vg-feat-icon.bg-cyan {
  background-color: #e0f2fe;
  color: var(--vg-blue-primary);
}

.vg-feat-icon.bg-orange {
  background-color: #ffedd5;
  color: var(--vg-orange-primary);
}

.vg-feat-icon.bg-green {
  background-color: #dcfce7;
  color: #16a34a;
}

.vg-feat-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--vg-gray-900);
  margin-bottom: 4px;
}

.vg-feat-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
}

/* Barra de CTA debajo de las características */
.vg-video-cta-footer {
  margin-top: 28px;
  padding: 20px 24px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid var(--vg-gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.vg-video-cta-text {
  font-weight: 700;
  color: var(--vg-gray-900);
  font-size: 15.5px;
}

.vg-video-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================================================
   4.6 SECCIÓN PROMOCIONAL: TAQUILLA Y TEMPERATURA 32°C (ESTILO BROCHA TURQUESA)
   ========================================================================== */
.vg-brush-promo-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 10px 0 25px;
  overflow: hidden;
}

.vg-brush-canvas-wrap {
  position: relative;
  width: 100%;
}

.vg-brush-border {
  position: relative;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.vg-brush-border svg {
  display: block;
  width: 100%;
  height: 52px;
}

.vg-brush-border-top {
  margin-bottom: -2px;
}

.vg-brush-border-bottom {
  margin-top: -2px;
}

.vg-brush-body {
  position: relative;
  background: linear-gradient(180deg, #00c7e2 0%, #00b8dc 50%, #00aed3 100%);
  padding: 35px 24px 45px;
  z-index: 1;
}

.vg-brush-inner-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
}

/* 1. Elemento Izquierdo: Tarjetón Taquilla */
.vg-taquilla-showcase {
  position: relative;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  user-select: none;
  max-width: 100%;
}

.vg-taquilla-showcase:hover {
  transform: translateY(-4px) scale(1.015);
}

.vg-taquilla-showcase:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 6px;
  border-radius: 12px;
}

/* Salpicadura Azul "Taquilla:" */
.vg-splash-blue-taquilla {
  position: absolute;
  top: -28px;
  left: -20px;
  z-index: 5;
  width: 250px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.vg-splash-blue-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

.vg-splash-text-taquilla {
  position: relative;
  z-index: 2;
  font-family: 'Fredoka', cursive, sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 0px #004494, -1px -1px 0px #004494, 0 4px 8px rgba(0, 0, 0, 0.35);
  margin-left: -10px;
  margin-top: -4px;
}

/* Bloque Rojo de Precios */
.vg-red-brush-card {
  background-color: #ef3340;
  background-image: radial-gradient(circle at 50% 30%, #f43f4e 0%, #ea2a3a 100%);
  border-radius: 14px;
  padding: 24px 28px 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25), 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 420px;
  max-width: 500px;
  position: relative;
  margin-top: 18px;
}

/* Doble Marco Blanco */
.vg-card-double-border {
  border: 2px solid rgba(255, 255, 255, 0.95);
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 4.5px;
  border-radius: 4px;
  padding: 16px 20px 14px;
}

.vg-prices-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vg-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0;
}

.vg-price-cat {
  font-family: 'Fredoka', cursive, sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25);
}

.vg-price-tag {
  font-family: 'Fredoka', cursive, sans-serif;
  font-size: 28px;
  font-weight: 800;
  white-space: nowrap;
}

.vg-tag-cyan {
  color: #00c2e8;
  -webkit-text-stroke: 1.5px #ffffff;
  text-shadow: 0 0 2px #ffffff, 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.vg-price-footnote {
  font-family: 'Fredoka', cursive, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

/* 2. Elemento Derecho: Temperatura 32°C */
.vg-temp-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  user-select: none;
}

.vg-temp-banner-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 16px;
  font-family: 'Fredoka', cursive, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: 0.3px;
  text-shadow: 
    2.5px 2.5px 0 #016b8a,
    -2px -2px 0 #016b8a,
    2px -2px 0 #016b8a,
    -2px 2px 0 #016b8a,
    0 4px 10px rgba(0, 0, 0, 0.3);
}

.vg-temp-seal-wrapper {
  position: relative;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.vg-temp-seal-wrapper:hover {
  transform: scale(1.05) rotate(-2deg);
}

.vg-temp-seal-circle {
  width: 205px;
  height: 205px;
  border-radius: 50%;
  background-color: #ef3340;
  background-image: radial-gradient(circle at 45% 35%, #f43f4e 0%, #ea2a3a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25), 0 4px 10px rgba(0, 0, 0, 0.15);
  position: relative;
}

.vg-temp-inner-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 4.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vg-temp-big-value {
  font-family: 'Fredoka', cursive, sans-serif;
  font-size: 82px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -2px;
  line-height: 1;
  -webkit-text-stroke: 2px #005691;
  text-shadow: 
    3px 3px 0 #005691,
    -3px -3px 0 #005691,
    3px -3px 0 #005691,
    -3px 3px 0 #005691,
    0 6px 0 #003a63,
    0 10px 18px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   4.7 SECCIÓN DE GALERÍA DE FOTOS Y LIGHTBOX MODAL INTERACTIVO
   ========================================================================== */
.vg-gallery-section {
  position: relative;
  background: #f8fafc;
  padding: 80px 24px 90px;
  overflow: hidden;
}

.vg-gallery-container {
  max-width: 1240px;
  margin: 0 auto;
}

.vg-gallery-header {
  text-align: center;
  margin-bottom: 45px;
}

.vg-section-kicker {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--vg-blue-primary);
  text-transform: uppercase;
  margin-bottom: 10px;
  background: rgba(0, 102, 214, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
}

.vg-section-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--vg-blue-navy);
  margin: 4px 0 14px;
  line-height: 1.2;
}

.vg-section-subtitle {
  font-size: 16px;
  color: var(--vg-gray-700);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Filtros por Categoría */
.vg-gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.vg-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: var(--vg-gray-800);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.vg-filter-btn:hover {
  border-color: var(--vg-blue-primary);
  color: var(--vg-blue-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 102, 214, 0.15);
}

.vg-filter-btn.is-active {
  background: var(--vg-blue-primary);
  color: #ffffff;
  border-color: var(--vg-blue-primary);
  box-shadow: 0 6px 18px rgba(0, 102, 214, 0.35);
  transform: translateY(-1px);
}

.vg-filter-count {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
}

/* Rejilla de Fotografías */
.vg-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.vg-gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, opacity 0.25s ease;
}

.vg-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.vg-gallery-thumb-box {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
  background: #e2e8f0;
}

.vg-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.vg-gallery-item:hover .vg-gallery-img {
  transform: scale(1.08);
}

.vg-gallery-hover-indicator {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.vg-gallery-item:hover .vg-gallery-hover-indicator {
  opacity: 1;
}

.vg-gallery-zoom-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--vg-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transform: scale(0.75);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vg-gallery-item:hover .vg-gallery-zoom-icon {
  transform: scale(1);
}

/* Banner Inferior de Invitación */
.vg-gallery-bottom-cta {
  background: linear-gradient(135deg, #0066d6 0%, #00a4d6 100%);
  border-radius: 22px;
  padding: 30px 40px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 102, 214, 0.24);
}

.vg-gallery-cta-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 6px;
  line-height: 1.25;
}

.vg-gallery-cta-subtitle {
  font-size: 15px;
  margin: 0;
  opacity: 0.94;
  line-height: 1.5;
}

.vg-gallery-cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ==========================================================================
   4.8 SECCIÓN COMPACTA SOBRE NOSOTROS (HISTORIA & TRADICIÓN)
   ========================================================================== */
.vg-about-section {
  position: relative;
  background: #ffffff;
  padding: 85px 24px 90px;
  border-top: 1px solid #eef2f6;
}

.vg-about-container {
  max-width: 1240px;
  margin: 0 auto;
}

.vg-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 55px;
  align-items: center;
}

/* Columna de Medios e Imagen */
.vg-about-media-box {
  position: relative;
}

.vg-about-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 80, 180, 0.14);
  background: #f1f5f9;
}

.vg-about-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.vg-about-frame:hover .vg-about-img {
  transform: scale(1.03);
}

/* Sello Flotante "+30 Años" */
.vg-about-stamp {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #0066d6 0%, #00a4d6 100%);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 102, 214, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.vg-stamp-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.vg-stamp-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
  max-width: 100px;
  line-height: 1.2;
}

/* Píldora Flotante Inferior */
.vg-about-float-pill {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.vg-pill-icon {
  font-size: 22px;
}

.vg-pill-text strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--vg-blue-navy);
  line-height: 1.2;
}

.vg-pill-text span {
  display: block;
  font-size: 12.5px;
  color: #475569;
}

/* Contenido Narrativo */
.vg-about-content {
  display: flex;
  flex-direction: column;
}

.vg-about-heading {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: var(--vg-blue-navy);
  margin: 6px 0 16px;
  line-height: 1.25;
}

.vg-about-lead {
  font-size: 16px;
  color: #334155;
  line-height: 1.65;
  margin: 0 0 12px;
}

.vg-about-subtext {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 26px;
}

/* 3 Pilares en Cuadrícula */
.vg-about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

.vg-about-feat-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px 14px;
  transition: all 0.22s ease;
}

.vg-about-feat-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.vg-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.vg-feat-icon.water {
  background: rgba(0, 102, 214, 0.12);
  color: var(--vg-blue-primary);
}

.vg-feat-icon.family {
  background: rgba(239, 51, 64, 0.12);
  color: #ef3340;
}

.vg-feat-icon.nature {
  background: rgba(16, 185, 129, 0.14);
  color: #10b981;
}

.vg-feat-info h4 {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 800;
  color: var(--vg-blue-navy);
  margin: 0 0 4px;
  line-height: 1.25;
}

.vg-feat-info p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.vg-about-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ==========================================================================
   4.9 SECCIÓN DE CONTACTO Y ATENCIÓN PERSONALIZADA
   ========================================================================== */
.vg-contact-section {
  background: #f8fafc;
  padding: 90px 24px 100px;
  border-top: 1px solid #e2e8f0;
  position: relative;
}

.vg-contact-container {
  max-width: 1240px;
  margin: 0 auto;
}

.vg-contact-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.vg-contact-heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--vg-blue-navy);
  margin: 6px 0 14px;
  line-height: 1.25;
}

.vg-contact-subheading {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.vg-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 42px;
  align-items: start;
}

/* Columna Izquierda: Canales y Tarjetas */
.vg-contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vg-contact-channel-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.22s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.vg-contact-channel-card:hover {
  transform: translateY(-2px);
  border-color: #0066d6;
  box-shadow: 0 12px 28px rgba(0, 102, 214, 0.1);
}

.vg-contact-channel-card.is-interactive {
  cursor: pointer;
}

.vg-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vg-channel-icon.phone {
  background: rgba(0, 102, 214, 0.1);
  color: #0066d6;
}

.vg-channel-icon.whatsapp {
  background: rgba(37, 211, 102, 0.14);
  color: #25d366;
}

.vg-channel-icon.location {
  background: rgba(239, 51, 64, 0.1);
  color: #ef3340;
}

.vg-channel-icon.schedule {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

.vg-channel-info {
  flex: 1;
  min-width: 0;
}

.vg-channel-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.vg-channel-value {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--vg-blue-navy);
  line-height: 1.25;
}

.vg-channel-hint {
  display: block;
  font-size: 12.5px;
  color: #64748b;
  margin-top: 2px;
}

.vg-channel-arrow {
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.vg-contact-channel-card:hover .vg-channel-arrow {
  transform: translateX(4px);
  color: #0066d6;
}

/* Banner de Excursiones y Grupos */
.vg-contact-groups-banner {
  background: linear-gradient(135deg, #0c2340 0%, #004b99 100%);
  color: #ffffff;
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 18px;
  box-shadow: 0 10px 25px rgba(12, 35, 64, 0.16);
}

.vg-groups-banner-icon {
  font-size: 26px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.12);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vg-groups-banner-text {
  flex: 1;
}

.vg-groups-title {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #ffffff;
}

.vg-groups-p {
  font-size: 13px;
  color: #e2e8f0;
  line-height: 1.5;
  margin: 0;
}

/* Columna Derecha: Tarjeta del Formulario */
.vg-contact-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}

.vg-contact-form-header {
  margin-bottom: 22px;
}

.vg-form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--vg-blue-navy);
  margin: 0 0 4px;
}

.vg-form-subtitle {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
}

.vg-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vg-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.vg-field-label {
  font-size: 12.5px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
  display: block;
}

.vg-field-input {
  width: 100%;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 14px;
  color: #0f172a;
  font-family: var(--font-main);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

.vg-field-input:focus {
  border-color: #0066d6;
  box-shadow: 0 0 0 3px rgba(0, 102, 214, 0.15);
}

.vg-field-select {
  cursor: pointer;
  background-color: #ffffff;
}

.vg-field-textarea {
  resize: vertical;
  min-height: 95px;
}

.vg-contact-feedback {
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: 13.5px;
  line-height: 1.45;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.vg-contact-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.vg-btn-submit-contact {
  background: linear-gradient(135deg, #0066d6 0%, #004b99 100%);
  color: #ffffff;
  border: none;
  padding: 13px 26px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(0, 102, 214, 0.28);
  transition: all 0.22s cubic-bezier(0.25, 1, 0.5, 1);
}

.vg-btn-submit-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 102, 214, 0.38);
}

.vg-btn-wa-alt {
  background: #25d366;
  color: #ffffff;
  padding: 13px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  transition: all 0.22s ease;
}

.vg-btn-wa-alt:hover {
  transform: translateY(-2px);
  background: #20ba59;
  color: #ffffff;
}

/* ==========================================================================
   4.10 PIE DE PÁGINA (FOOTER)
   ========================================================================== */
.vg-footer {
  background: #09111e;
  color: #94a3b8;
  padding: 65px 24px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.vg-footer-container {
  max-width: 1240px;
  margin: 0 auto;
}

.vg-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vg-footer-logo-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 16px;
}

.vg-footer-logo-img {
  height: 62px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: none;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 1;
}

.vg-footer-logo-link:hover .vg-footer-logo-img {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.vg-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.vg-footer-dolphin {
  font-size: 32px;
}

.vg-footer-logo strong {
  display: block;
  font-family: var(--font-brand);
  font-size: 24px;
  color: #38bdf8;
  line-height: 1.1;
}

.vg-footer-logo span {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: #ef4444;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.vg-footer-text {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 360px;
  margin: 0;
}

.vg-footer-col-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: 0.5px;
}

.vg-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
}

.vg-footer-list li {
  color: #cbd5e1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.vg-footer-list li strong {
  color: #ffffff;
}

.vg-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}

.vg-footer-bottom p {
  margin: 0;
  color: #64748b;
}

.vg-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.vg-footer-bottom-links a,
.vg-footer-btn-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-main);
  transition: color 0.2s ease;
}

.vg-footer-bottom-links a:hover,
.vg-footer-btn-link:hover {
  color: #38bdf8;
}

/* ==========================================================================
   VISOR LIGHTBOX MODAL EN ALTA RESOLUCIÓN
   ========================================================================== */
.vg-lightbox-wrapper {
  z-index: 2000;
}

.vg-lightbox-backdrop {
  background: rgba(10, 18, 30, 0.88);
  backdrop-filter: blur(8px);
}

.vg-lightbox-card {
  position: relative;
  width: 100%;
  max-width: 1020px;
  max-height: 92vh;
  background: #0b1320;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2002;
}

.vg-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2010;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.vg-lightbox-close:hover {
  background: #ef3340;
  border-color: #ffffff;
  transform: scale(1.08);
}

.vg-lightbox-viewport {
  position: relative;
  flex: 1;
  min-height: 380px;
  max-height: 64vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #05080f;
  overflow: hidden;
}

.vg-lightbox-img-frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.vg-lightbox-img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  user-select: none;
}

.vg-lightbox-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2005;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vg-lightbox-arrow-btn:hover {
  background: var(--vg-blue-primary);
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.vg-lightbox-arrow-btn.prev {
  left: 20px;
}

.vg-lightbox-arrow-btn.next {
  right: 20px;
}

.vg-lightbox-footer {
  padding: 20px 28px;
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.vg-lightbox-info-group {
  flex: 1;
}

.vg-lightbox-tag {
  display: inline-block;
  background: var(--vg-blue-primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 6px;
}

.vg-lightbox-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px;
}

.vg-lightbox-desc {
  font-size: 13.5px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}

.vg-lightbox-meta-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.vg-lightbox-counter {
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 700;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
}

.vg-btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* ==========================================================================
   5. MODALES INTERACTIVOS (DESPLEGADOS POR LOS 2 BOTONES)
   ========================================================================== */
.vg-modal-wrapper {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vg-modal-wrapper.is-open {
  opacity: 1;
  visibility: visible;
}

.vg-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
}

.vg-modal-card {
  position: relative;
  z-index: 10;
  background: var(--vg-white);
  border-radius: 20px;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-modal);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vg-modal-wrapper.is-open .vg-modal-card {
  transform: scale(1) translateY(0);
}

/* Cabecera del modal */
.vg-modal-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  color: white;
}

.vg-modal-header.bg-blue {
  background: linear-gradient(135deg, var(--vg-blue-dark), var(--vg-blue-primary));
}

.vg-modal-header.bg-orange {
  background: linear-gradient(135deg, var(--vg-orange-dark), var(--vg-orange-primary));
}

.vg-modal-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.9;
}

.vg-modal-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.vg-modal-btn-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.2s;
}

.vg-modal-btn-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.vg-modal-content {
  padding: 24px;
}

/* Modal Cómo Llegar Grid */
.vg-location-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.vg-loc-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid var(--vg-gray-200);
  border-radius: 12px;
  padding: 14px;
  font-size: 13.5px;
}

.vg-loc-highlight strong {
  color: var(--vg-blue-dark);
}

.vg-loc-pin {
  font-size: 24px;
}

.vg-loc-gps-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0;
}

.vg-btn-gps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  width: 100%;
  transition: opacity 0.2s, transform 0.15s ease;
}

.vg-btn-gps.gmaps {
  background-color: #1a73e8;
}

.vg-btn-gps.waze {
  background-color: #00d6ff;
  color: #004d61;
}

.vg-btn-gps:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.vg-loc-times-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 12px;
}

.vg-loc-times-box h4 {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: #166534;
  margin-bottom: 8px;
}

.vg-loc-times-box ul {
  list-style: none;
  font-size: 13px;
  color: #14532d;
}

.vg-loc-times-box li {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
}

.vg-loc-note {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
  background: #f1f5f9;
  padding: 10px;
  border-radius: 8px;
}

.vg-loc-map-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--vg-gray-200);
}

/* ==========================================================================
   MODAL BOLETOS: PANEL DESLIZABLE LATERAL (DRAWER SLIDE-OVER DESDE LA DERECHA)
   ========================================================================== */
#modal-boletos.vg-modal-wrapper {
  padding: 0;
  align-items: stretch;
  justify-content: flex-end;
}

#modal-boletos .vg-modal-card {
  width: 100%;
  max-width: 520px;
  height: 100vh;
  max-height: 100vh;
  margin: 0;
  border-radius: 24px 0 0 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -12px 0 45px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  background: var(--vg-white);
}

#modal-boletos.is-open .vg-modal-card {
  transform: translateX(0);
}

#modal-boletos .vg-modal-header {
  border-radius: 24px 0 0 0;
  flex-shrink: 0;
  padding: 22px 26px;
}

#modal-boletos .vg-modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 22px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#modal-boletos .vg-modal-tickets-list {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}

#modal-boletos .vg-checkout-action-box {
  margin-top: auto;
}

@media (max-width: 640px) {
  #modal-boletos .vg-modal-card {
    max-width: 100%;
    border-radius: 0;
  }
  #modal-boletos .vg-modal-header {
    border-radius: 0;
  }
  #modal-boletos .vg-modal-content {
    padding: 18px 16px 24px;
  }
  #modal-boletos .vg-form-fields-row {
    grid-template-columns: 1fr;
  }
}

/* Modal Boletos Formulario */
.vg-modal-tickets-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.vg-ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1px solid var(--vg-gray-200);
  border-radius: 12px;
}

.vg-ticket-row.is-free {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.vg-ticket-info {
  display: flex;
  flex-direction: column;
}

.vg-t-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--vg-gray-900);
}

.vg-t-sub {
  font-size: 12px;
  color: #64748b;
  margin-top: 1px;
}

.vg-t-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--vg-orange-dark);
  margin-top: 4px;
}

.text-green {
  color: #16a34a !important;
}

.vg-t-qty-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 4px;
}

.vg-btn-step {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: none;
  background: #f1f5f9;
  color: var(--vg-gray-900);
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.vg-btn-step:hover {
  background: #e2e8f0;
}

.vg-input-step {
  width: 36px;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  border: none;
  background: transparent;
  color: var(--vg-gray-900);
}

.vg-checkout-action-box {
  background: #f1f5f9;
  border-radius: 14px;
  padding: 18px;
}

.vg-checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #cbd5e1;
}

.vg-total-label {
  font-size: 14px;
  font-weight: 700;
  color: #475569;
}

.vg-total-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--vg-orange-dark);
}

.vg-form-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.vg-modal-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 13.5px;
  font-family: var(--font-main);
  outline: none;
}

.vg-modal-input:focus {
  border-color: var(--vg-orange-primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.vg-btn-submit-pay {
  width: 100%;
  background: linear-gradient(135deg, var(--vg-orange-primary), var(--vg-orange-dark));
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.vg-btn-submit-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(234, 88, 12, 0.45);
}

/* ==========================================================================
   6. BOTÓN FLOTANTE OFICIAL DE WHATSAPP
   ========================================================================== */
.vg-float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.vg-float-whatsapp:hover {
  transform: scale(1.1) rotate(5deg);
}

/* ==========================================================================
   7. RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .vg-nav-side {
    gap: 10px;
  }
  .vg-nav-item {
    font-size: 11.5px;
    letter-spacing: 0.2px;
    padding: 6px 2px;
  }
  .vg-nav-item.vg-nav-btn-highlight {
    padding: 6px 12px;
  }
}

@media (max-width: 920px) {
  .vg-nav-side {
    display: none;
  }
  .vg-mobile-menu-btn {
    display: flex;
  }
  .vg-mobile-nav-panel {
    display: block;
  }
  .vg-header-inner {
    justify-content: space-between;
  }
  .vg-location-body-grid {
    grid-template-columns: 1fr;
  }
  .vg-form-fields-row {
    grid-template-columns: 1fr;
  }
  .vg-slide4-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .vg-yellow-line {
    margin: 14px auto 20px;
  }
  .vg-hero-carousel {
    height: 500px;
  }
  .vg-video-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .vg-video-cta-footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .vg-video-cta-btns {
    justify-content: center;
    width: 100%;
  }
  .vg-brush-inner-container {
    flex-direction: column;
    gap: 50px;
  }
  .vg-red-brush-card {
    min-width: unset;
    width: 100%;
    max-width: 480px;
  }
  .vg-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .vg-gallery-bottom-cta {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  .vg-gallery-cta-actions {
    justify-content: center;
  }
  .vg-about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .vg-about-img {
    height: 360px;
  }
  .vg-contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .vg-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .vg-gallery-section {
    padding: 50px 16px 60px;
  }
  .vg-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .vg-gallery-thumb-box {
    height: 230px;
  }
  .vg-filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  .vg-lightbox-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
  }
  .vg-lightbox-meta-bar {
    width: 100%;
    justify-content: space-between;
  }
  .vg-lightbox-arrow-btn {
    width: 42px;
    height: 42px;
  }
  .vg-lightbox-arrow-btn.prev {
    left: 8px;
  }
  .vg-lightbox-arrow-btn.next {
    right: 8px;
  }
  .vg-brush-body {
    padding: 26px 14px 38px;
  }
  .vg-brush-border svg {
    height: 38px;
  }
  .vg-red-brush-card {
    padding: 18px 16px 16px;
    border-radius: 12px;
  }
  .vg-card-double-border {
    padding: 12px 14px 10px;
  }
  .vg-splash-blue-taquilla {
    width: 200px;
    height: 68px;
    top: -24px;
    left: -12px;
  }
  .vg-splash-text-taquilla {
    font-size: 28px;
  }
  .vg-price-cat {
    font-size: 18px;
  }
  .vg-price-tag {
    font-size: 22px;
  }
  .vg-price-footnote {
    font-size: 12.5px;
  }
  .vg-temp-banner-title {
    font-size: 23px;
  }
  .vg-temp-seal-circle {
    width: 165px;
    height: 165px;
  }
  .vg-temp-inner-ring {
    width: 142px;
    height: 142px;
  }
  .vg-temp-big-value {
    font-size: 64px;
  }
  .vg-video-section {
    padding: 45px 16px 60px;
  }
  .vg-video-card {
    padding: 14px;
    border-radius: 18px;
  }
  .vg-play-circle {
    width: 62px;
    height: 62px;
  }
  .vg-play-circle svg {
    width: 26px;
    height: 26px;
  }
  .vg-hero-carousel {
    height: 440px;
  }
  .vg-carousel-dots {
    bottom: 16px;
  }
  .vg-hero-floating-dock {
    bottom: 88px;
  }
  .vg-dock-container {
    gap: 10px;
    flex-wrap: wrap;
  }
  .vg-btn-normal {
    padding: 11px 22px;
    font-size: 13.5px;
  }
  .vg-banner-badge-agua {
    padding: 12px 20px;
  }
  .vg-txt-agua {
    font-size: 42px;
  }
  .vg-txt-clara {
    font-size: 26px;
  }
  .vg-splash-title {
    font-size: 20px;
  }
  .vg-taquilla-badge {
    min-width: 270px;
    padding: 12px 16px;
  }
  .vg-temp-circle {
    width: 95px;
    height: 95px;
  }
  .vg-temp-number {
    font-size: 30px;
  }
  .vg-about-section {
    padding: 55px 16px 65px;
  }
  .vg-about-heading {
    font-size: 26px;
  }
  .vg-about-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .vg-about-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .vg-about-actions .vg-btn-normal {
    width: 100%;
    justify-content: center;
  }
  .vg-about-stamp {
    top: 14px;
    right: 14px;
    padding: 10px 14px;
  }
  .vg-stamp-num {
    font-size: 22px;
  }
  .vg-stamp-label {
    font-size: 10px;
  }
  .vg-about-float-pill {
    bottom: 14px;
    left: 14px;
    right: 14px;
    padding: 10px 14px;
  }
  .vg-contact-section {
    padding: 55px 16px 65px;
  }
  .vg-contact-heading {
    font-size: 26px;
  }
  .vg-contact-form-card {
    padding: 24px 18px;
    border-radius: 18px;
  }
  .vg-form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .vg-contact-form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .vg-btn-submit-contact,
  .vg-btn-wa-alt {
    width: 100%;
    justify-content: center;
  }
  .vg-footer {
    padding: 45px 16px 24px;
  }
  .vg-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
}
