 :root {
     --bg-base: #f5f3ea;
     --text-dark: #212529;
     --accent-gold: #A98A00;
     --accent-green: #225B4F;
     --font-heading: 'Adobe Caslon Pro';
     --font-body: 'Riviera Nights';
 }

 body {
     background-color: var(--bg-base);
     color: var(--text-dark);
     font-family: var(--font-body);
     -webkit-font-smoothing: antialiased;
     overflow-x: hidden;
     font-size: 1rem;
 }

 p {
     font-size: 1rem !important;
     font-family: var(--font-body);
 }

 .display-4 {
     font-family: var(--font-heading);
 }

 .h3,
 h3 {
     font-size: 1.55rem;
 }

 .display-3 {
     font-size: 2rem;
 }

 @font-face {
     font-family: 'Adobe Caslon Pro';
     src: url('../fonts/ACaslonPro-Italic.woff2') format('woff2'),
         url('../fonts/ACaslonPro-Italic.woff') format('woff');
     font-weight: normal;
     font-style: italic;
     font-display: swap;
 }

 @font-face {
     font-family: 'Riviera Nights';
     src: url('../fonts/RivieraNights-Regular.woff2') format('woff2'),
         url('../fonts/RivieraNights-Regular.woff') format('woff');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: 'Riviera-Nights-Light';
     src: url('../fonts/RivieraNights-Light.woff2') format('woff2'),
         url('../fonts/RivieraNights-Light.woff') format('woff');
     font-weight: 300 !important;
     font-style: normal;
     font-display: swap;
 }

 /* --- Utilidades Tipográficas y de Layout --- */
 .font-heading {
     font-family: var(--font-heading);
 }

 .text-justify {
     text-align: justify;

 }

 .text-sentence::first-letter {}

 /* Fijamos los inline-block solo a enlaces o spans para no romper el layout de listas o flex */
 a.text-sentence,
 span.text-sentence {
     display: inline-block;
 }

 .text-xs {
     font-size: 0.75rem !important;
 }

 .text-sm {
     font-size: 0.9rem;
 }

 .text-md-line {
     font-size: 0.95rem;
     line-height: 1.6;
 }



 .aspect-ratio-4-3 {
     aspect-ratio: 4/3;
 }

 .aspect-ratio-4-5 {
     aspect-ratio: 4/5;
 }

 .mt-custom-5 {
     margin-top: 5rem;
 }

 .bg-base-custom {
     background-color: var(--bg-base);
 }

 .spacer-50vh {
     height: 50vh;
 }

 /* --- Sistema de Botones Premium (Corrección Anti-Salto) --- */
 /* .btn-premium {
     position: relative;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     text-transform: uppercase;
     padding: 10px 28px;
     color: var(--text-dark);
     background-color: transparent;
     border: 1px solid rgba(33, 37, 41, 0.25);
     font-size: 0.75rem;
     letter-spacing: 1px;
     text-decoration: none;
     overflow: hidden;
     border-radius: 0;
     transition: color 0.4s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.4s ease;
     z-index: 1;
    
     -webkit-backface-visibility: hidden;
     backface-visibility: hidden;
     transform: translateZ(0);
 }

 .btn-premium::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: var(--text-dark);
     transform: scaleX(0);
     transform-origin: right;
     transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
     z-index: -1;
 }

 .btn-premium:hover {
     color: #fff;
     border-color: var(--text-dark);
 }

 .btn-premium:hover::before {
     transform: scaleX(1);
     transform-origin: left;
 }

 .btn-premium-gold {
     background-color: var(--accent-gold);
     color: #fff;
     border-color: var(--accent-gold);
 }

 .btn-premium-gold::before {
     background-color: var(--text-dark);
 }

 .btn-premium-gold:hover {
     border-color: var(--text-dark);
 } */
/* --- Botón de Texto con Subrayado Animado --- */
.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Ajustamos el padding para este estilo en particular (solo espacio abajo para la línea) */
    padding: 4px 0; 
    color: var(--text-dark);
    background-color: transparent;
    border: none;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.4s ease;
    /* Congela el renderizado de la fuente en la GPU para evitar brincos */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    text-transform: uppercase;
}

/* 1. La línea base (El color dorado que siempre está visible) */
.btn-premium::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px; /* El grosor exacto de tu SVG */
    background-color: var(--accent-gold);
}

/* 2. La línea que "pinta" encima al hacer hover (usando text-dark para mantener contraste) */
.btn-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text-dark);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* 3. La animación direccional al pasar el mouse */
.btn-premium:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Opcional: Si quieres que el texto también haga un pequeño fade al oscuro absoluto */
.btn-premium:hover {
    color: #000; 
}
 .btn-nav-slider {
     width: 45px;
     height: 45px;
     border: 1px solid rgba(26, 26, 26, 0.2);
     background-color: transparent;
     color: var(--text-dark);
     transition: all 0.3s ease;
 }

 .btn-nav-slider:hover {
     background-color: var(--text-dark);
     color: white;
     border-color: var(--text-dark);
 }

 /* --- Header y Navbar --- */
 header {
     background-color: rgba(245, 243, 233, 0.95);
     backdrop-filter: blur(10px);
     border-bottom: 1px solid rgba(181, 163, 128, 0.3);
 }

 .logo-main {
     height: 75px;
     width: auto;
 }

 .nav-link-custom {
     font-size: 0.65rem;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     color: var(--text-dark);
     transition: color 0.3s;
     text-decoration: none;
     padding: 0.5rem .3rem;
 }

 .nav-link-custom:hover {
     color: var(--accent-gold);
 }

 /* --- Iconos Sociales Premium --- */
 .premium-social-link {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 35px;
     height: 35px;
     border: 1px solid rgba(26, 26, 26, 0.15);
     border-radius: 50%;
     color: var(--text-dark);
     text-decoration: none;
     transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
     background-color: transparent;
 }

 .premium-social-link svg {
     width: 20px;
     height: 20px;
     transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
 }

 .premium-social-link:hover {
     border-color: var(--accent-gold);
     background-color: var(--accent-gold);
     color: #ffffff;
     transform: translateY(-4px);
     box-shadow: 0 8px 15px rgba(181, 163, 128, 0.3);
 }

 .premium-social-link:hover svg {
     transform: scale(1.15);
 }

 /* --- Hero Slider GSAP (Auto-Altura a la Imagen) --- */
 .hero-slider-container {}

 /* 1. Grid Overlay: Apila los slides uno sobre otro sin sacarlos del flujo del DOM */
 .slides-wrapper {
     display: grid;
     width: 100%;
 }

 /* 2. Todos los slides se renderizan en la celda 1x1 del Grid */
 .hero-slide {
     grid-area: 1 / 1;
     visibility: hidden;
     z-index: 1;
     /* Reemplaza tu 'top: 130px' absoluto por un padding real */
     padding-top: 120px;
 }

 .hero-slide.active {
     visibility: visible;
     z-index: 2;
 }

 /* 3. La imagen dicta la altura física de la celda y de toda la sección */
 .slide-bg {
     width: 100%;
     height: auto;
     /* Permite que la altura fluya orgánicamente */
     object-fit: cover;
     transform: scale(1);
     transition: transform 10s linear;
 }

 /* Mantenemos el efecto cinemático de crecimiento */
 .hero-slide.active .slide-bg {
     transform: scale(1.03);
 }

 /* Animaciones y tipografías (Sin cambios) */
 .hero-title {
     font-size: clamp(3rem, 6vw, 6rem);
     line-height: 1.1;
     text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
 }

 .hero-title em {
     font-style: italic;
     font-weight: 300;
 }

 .slide-content {
     opacity: 0;
     transform: translateY(30px);
 }

 .custom-progress-track {
     height: 2px;
     background: rgba(255, 255, 255, 0.2);
     cursor: pointer;
 }

 .custom-progress-fill {
     width: 0%;
     background: #fff;
 }

 /* --- Slider Carrusel (Introducción) --- */
 .tracking-widest {}

 .intro-title {
     font-size: clamp(1.8rem, 3vw, 2.5rem);
     line-height: 1.3;
     color: var(--text-dark);
 }

 .intro-text {
     font-size: 0.95rem;
     line-height: 1.6;
     color: #4a4a4a;
 }

 .custom-slider-container {
     width: 100%;
     overflow-x: auto;
     overflow-y: hidden;
     scroll-snap-type: x mandatory;
     -webkit-overflow-scrolling: touch;
     padding-bottom: 20px;
     scrollbar-width: none;
     -ms-overflow-style: none;
     cursor: grab;
 }

 .custom-slider-container:active {
     cursor: grabbing;
 }

 .custom-slider-container::-webkit-scrollbar {
     display: none;
 }

 .slider-track {
     display: flex;
     align-items: center;
     gap: 2rem;
     padding: 0 5vw;
     width: max-content;
 }

 .slide-item {
     scroll-snap-align: center;
     border-radius: 4px;
     overflow: hidden;
     position: relative;
     flex-shrink: 0;
     user-select: none;
 }

 .slide-item:nth-child(1) {
     width: 433px;
     height: 100%;
 }

 .slide-item:nth-child(2) {
     width: 433px;
     height: 100%;
 }

 .slide-item:nth-child(3) {
     width: 433px;
     height: 100%;
 }

 .slide-item:nth-child(4) {
     width: 433px;
     height: 100%;
 }

 .slide-item:nth-child(5) {
     width: 433px;
     height: 100%;
 }

 .slide-item:nth-child(6) {
     width: 433px;
     height: 100%;
 }

 .slide-item:nth-child(7) {
     width: 433px;
     height: 100%;
 }

 .slide-item:nth-child(8) {
     width: 433px;
     height: 100%;
 }

 .slide-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
     pointer-events: none;
 }

 .slide-item:hover img {
     transform: scale(1.03);
 }

 .custom-scrollbar {
     width: 100%;
     max-width: 400px;
     height: 12px;
     display: flex;
     align-items: center;
     margin: 0 auto;
     position: relative;
     cursor: pointer;
 }

 .scrollbar-track-line {
     width: 100%;
     height: 1px;
     background-color: rgba(26, 26, 26, 0.2);
     position: absolute;
     pointer-events: none;
 }

 .progress-dot {
     width: 14px;
     height: 14px;
     background-color: var(--text-dark);
     border-radius: 50%;
     position: absolute;
     left: 0;
     transform: translateX(-50%);
     cursor: grab;
     box-shadow: 0 0 0 4px rgba(245, 243, 233, 0.8);
     z-index: 2;
     transition: transform 0.1s;
 }

 .progress-dot:active {
     cursor: grabbing;
     transform: translateX(-50%) scale(1.2);
 }

 /* --- Amenidades & Bullets --- */
 .amenity-title {
     font-size: clamp(1.4rem, 2.5vw, 2rem);
     line-height: 1.4;
     font-style: italic;
     color: var(--text-dark);
     font-weight: 400;
 }

 .custom-bullets li {
     position: relative;
     padding-left: 1.2rem;
     margin-bottom: 0.6rem;
     font-size: 1rem;
     color: #4a4a4a;
     font-family: var(--font-body);
 }

 .custom-bullets li::before {
    content: '•';
position: absolute;
left: 0;
top: 0;
color: #6e6e6e;
font-size: .9rem;
line-height: 1;
 }

 /* --- Habitaciones Slider --- */
 .rooms-slider-container {
     width: 100%;
 }

 .rooms-track {
     will-change: transform;
 }

 .room-img {
     transform: scale(1);
     transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
 }

 .room-card-title {
     font-size: 1.8rem;
     line-height: 1.2;
 }

 /* --- Experiencias Grid --- */
 .experience-card {
     display: flex;
     flex-direction: column;
 }

 .experience-card .exp-img {
     transform: scale(1);
     transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
 }

 .experience-card:hover .exp-img {
     transform: scale(1.08);
 }

 .exp-card-title {
     font-size: 1.4rem;
 }

 .divider-line {
     width: 1px;
     height: 60px;
     background-color: var(--accent-gold);
     margin: 0 auto;
 }

 /* --- Sección Ubicación --- */
 .loc-card-title {
     font-size: 1.4rem;
 }

 .map-wrapper {
     width: 100%;
     aspect-ratio: 16 / 9;
     background-color: #EAE8E3;
     position: relative;
     z-index: 1;
 }

 .map-wrapper iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     border: none;
     filter: grayscale(100%) contrast(1.1) opacity(0.85);
     transition: filter 0.6s cubic-bezier(0.25, 1, 0.5, 1);
 }

 .map-wrapper:hover iframe {
     filter: grayscale(0%) contrast(1) opacity(1);
 }

 /* Offset premium para la tarjeta blanca en escritorio */
 .location-card-offset {
     position: relative;
     z-index: 2;
 }

 @media (min-width: 992px) {
     .location-card-offset {
         margin-left: -4rem;
         margin-top: 3rem;
     }
 }

 /* Botón Moderno con Flecha Animada (Corrección Anti-Salto) */
 .btn-arrow-modern {
     display: inline-flex;
     align-items: center;
     justify-content: space-between;
     padding: 12px 28px;
     border: 1px solid var(--text-dark);
     color: var(--text-dark);
     text-decoration: none;
     background: transparent;
     font-size: 0.9rem;
     letter-spacing: 0.5px;
     position: relative;
     overflow: hidden;
     width: max-content;
     gap: 2rem;
     transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
     z-index: 1;
     -webkit-backface-visibility: hidden;
     backface-visibility: hidden;
     transform: translateZ(0);
 }

 .btn-arrow-modern::before {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: var(--text-dark);
     transform: scaleY(0);
     transform-origin: bottom;
     transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
     z-index: -1;
 }

 .btn-arrow-modern .btn-icon {
     display: flex;
     transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
 }

 .btn-arrow-modern .btn-icon svg {
     transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
 }

 .btn-arrow-modern:hover {
     color: #ffffff;
 }

 .btn-arrow-modern:hover::before {
     transform: scaleY(1);
 }

 .btn-arrow-modern:hover .btn-icon {
     transform: translateX(3px);
 }

 /* --- Footer Premium --- */
 .footer-premium {
     background-color: #ffffff;
     color: #000000;
     padding-top: 5rem;
     padding-bottom: 2rem;
     position: relative;
     z-index: 10;
 }

 /* Filtro para convertir tu logo negro/dorado a blanco puro si es necesario */
 .footer-logo {
     max-height: 70px;
     width: auto;

 }

 .footer-top-border {
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .footer-link {
     color: #000000;
     font-size: .6rem;
     text-transform: uppercase;
     text-decoration: none;
     transition: color 0.3s ease;
     /* Evita saltos de texto en hover */
     -webkit-backface-visibility: hidden;
     backface-visibility: hidden;
 }

 .footer-link:hover {
     color: var(--accent-gold);
 }

 /* Adaptación de redes sociales para fondo oscuro */
 .footer-social-link {
     border-color: rgba(255, 255, 255, 0.2);
     color: #000000;
 }

 .footer-social-link:hover {
     background-color: var(--accent-gold);
     border-color: var(--accent-gold);
     color: #000000;
 }

 /* --- Paginación Slider Habitaciones --- */
 .room-pagination {
     margin-left: 0.5rem;
 }

 .room-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background-color: rgba(33, 37, 41, 0.2);
     /* Gris sutil por defecto */
     cursor: pointer;
     transition: background-color 0.4s ease, transform 0.4s ease;
     /* Evita parpadeos en renderizado GPU */
     -webkit-backface-visibility: hidden;
     backface-visibility: hidden;
     transform: translateZ(0);
 }

 .room-dot:hover {
     background-color: rgba(33, 37, 41, 0.5);
 }

 /* Estado Activo del Bullet */
 .room-dot.active {
     background-color: var(--text-dark);
     transform: scale(1.6);
     /* Crece sutilmente */
     pointer-events: none;
     /* Evita que el usuario haga clic en el slide actual */
 }

 /* --- Slider Experiencias --- */
 .experiences-slider-container {
     width: 100%;
 }

 .experiences-track {
     will-change: transform;
 }

 .exp-pagination {
     margin-left: 0.5rem;
 }

 .exp-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background-color: rgba(33, 37, 41, 0.2);
     cursor: pointer;
     transition: background-color 0.4s ease, transform 0.4s ease;
     -webkit-backface-visibility: hidden;
     backface-visibility: hidden;
     transform: translateZ(0);
 }

 .exp-dot:hover {
     background-color: rgba(33, 37, 41, 0.5);
 }

 .exp-dot.active {
     background-color: var(--text-dark);
     transform: scale(1.6);
     pointer-events: none;
 }

 /* --- Switch de Mapa de Ubicación --- */
 /* Solo necesitas esto para el contenedor, el HTML hace el resto */
 /* Configuración base del contenedor */
 .map-switch-container {
     cursor: pointer;
     background-color: transparent;
     /* Salvavidas para versión móvil: da cuerpo al contenedor cuando las columnas se apilan */
     min-height: 350px;
 }



 .map-switch-container img {
     user-select: none;
     -webkit-user-drag: none;
 }

 .map-img-back {
     opacity: 0;
     visibility: hidden;
 }

 .map-click-hint {
     background-color: rgba(33, 37, 41, 0.7);
     backdrop-filter: blur(5px);
     opacity: 0.8;
     transition: opacity 0.3s ease;
     z-index: 10;
 }

 .map-switch-container:hover .map-click-hint {
     opacity: 1;
 }

 .h4,
 h4 {
     font-size: 0.8125rem;
     /* Equivalente exacto a 13px */
 }

 .display-4 {
     font-size: 1.5rem;
     /* Equivalente exacto a 24px */
     font-weight: 600;
 }

 /* --- Micro-interacción: Header Shrink --- */
 .gs-header {
     transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
         box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
 }

 .gs-header .logo-main {
     transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
 }

 /* El estado cuando se hace scroll hacia abajo */
 .gs-header.scrolled {
     /* Forzamos la reducción del padding que trae Bootstrap (py-3) */
     background-color: rgba(245, 243, 233, 0.98);
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
     /* Sombra sutil para separar del contenido */
 }

 .gs-header.scrolled .container-fluid {
     padding-top: 0.5rem !important;
     padding-bottom: 0.5rem !important;
     transition: padding 0.4s cubic-bezier(0.25, 1, 0.5, 1);
 }

 /* Reducción del logo (Móvil) */
 .gs-header.scrolled .logo-main {
     height: 40px;
 }

 /* Limpiamos la altura fija del contenedor */
 #nizuc-slider {
     height: auto;
     /* El contenedor se ajusta al contenido más alto */
     width: 100%;
 }

 /* Limitamos la altura de los slides al espacio disponible del viewport */
 #nizuc-slider .slide-item {
     height: auto;
     /* Evita que el slide supere el alto de la pantalla menos el margen */
     max-height: calc(100vh - 260px);
 }

 /* Aseguramos que la imagen viva dentro de esa limitación */
 #nizuc-slider .slide-item img {
     height: 100%;
     width: auto;
     /* Mantiene la proporción original */
     object-fit: contain;
     /* Ajusta la imagen completa sin deformarla */
     display: block;
 }

 /* Asegura que el contenedor de navegación no rompa el diseño del texto */
 .room-navigation {
     display: flex;
     justify-content: flex-start;
     /* Alineado a la izquierda bajo el botón */
     margin-top: 1rem;
 }

 /* Ocultar los botones de navegación generales que tenías antes al fondo */
 /* Si ya no los vas a usar en la posición original, elimínalos o usa: */




 .room-dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background-color: rgba(33, 37, 41, 0.2);
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .room-dot.active {
     background-color: var(--text-dark);
     transform: scale(1.5);
 }

 /* COMPORTAMIENTO GLOBAL DE SCROLL */
 html {
     scroll-behavior: smooth;
     /* Ajusta este valor sumando la altura de tu header global + tu submenú local */
     scroll-padding-top: 220px;
 }

 /* SUBMENÚ STICKY */
 .local-section-nav {
     position: sticky;
     /* Ajusta este "top" para que quede justo debajo de tu header fixed-top. 
       Si tu header mide 110px, pon 110px aquí. */
     top: 60px;
     z-index: 1020;
     background-color: rgba(245, 243, 234, 0.95);
     /* Usa tu color #f5f3ea con transparencia */
     backdrop-filter: blur(8px);
     transition: box-shadow 0.3s ease;
 }

 .local-section-nav .nav-link-custom {
     font-size: 0.95rem;
     padding-bottom: 4px;

     opacity: 0.7;
     transition: all 0.2s ease;
 }

 .local-section-nav .nav-link-custom:hover,
 .local-section-nav .nav-link-custom.active {
     opacity: 1;

     /* O el color dorado/premium de tu marca */
 }

 /* Ocultar barra de desplazamiento en móviles pero mantenerlo "swipeable" */
 .local-section-nav .flex-nowrap::-webkit-scrollbar {
     display: none;
 }

 .local-section-nav .flex-nowrap {
     -ms-overflow-style: none;
     /* IE y Edge */
     scrollbar-width: none;
     /* Firefox */
 }

 /* Estilos base del enlace */
 .local-section-nav .nav-link-custom {
     font-size: 0.7rem;
     padding-bottom: 8px;
     /* Un poco de espacio para el subrayado */
     opacity: 0.7;
     transition: all 0.2s ease;
     position: relative;
     /* Necesario para contener el pseudo-elemento */
     text-decoration: none;
 }

 /* El estado activo o hover cambia el color a tu variable */
 .local-section-nav .nav-link-custom:hover,
 .local-section-nav .nav-link-custom.active {
     opacity: 1;
     color: var(--accent-gold) !important;
 }

 /* Construcción del subrayado animado */
 .local-section-nav .nav-link-custom::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: 0;
     left: 50%;
     background-color: var(--accent-gold);
     transition: width 0.3s ease;
     transform: translateX(-50%);
 }

 /* Expansión del subrayado cuando está activo o en hover */
 .local-section-nav .nav-link-custom.active::after,
 .local-section-nav .nav-link-custom:hover::after {
     width: 100%;
 }

 /* --- ESTILOS MODERNOS PARA FORMULARIO PREMIUM --- */
 .form-premium-input {
     background-color: transparent !important;
     border: none !important;
     border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
     border-radius: 0 !important;
     padding-left: 0 !important;
     padding-right: 0 !important;
     box-shadow: none !important;
     transition: border-color 0.3s ease;
 }

 .form-premium-input:focus {
     border-bottom-color: #111 !important;
 }

 .form-floating>label {
     padding-left: 0;
 }

 .custom-radio .form-check-input:checked {
     background-color: #111;
     border-color: #111;
 }

 .w-75 {
     width: 100% !important;
 }

 .gsap-image-reveal {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block; 
    cursor: pointer;
}

.gsap-image-reveal .reveal-base {
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
}

.gsap-image-reveal .reveal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 2;
    
    /* Variables de inicio. Radio negativo para que empiece 100% invisible */
    --x: 50%;
    --y: 50%;
    --r: -20%; 
    
    /* Máscara radial que crea un agujero visible que se difumina hacia los bordes */
    -webkit-mask-image: radial-gradient(circle at var(--x) var(--y), black var(--r), transparent calc(var(--r) + 15%));
    mask-image: radial-gradient(circle at var(--x) var(--y), black var(--r), transparent calc(var(--r) + 15%));
    
    will-change: mask-image, -webkit-mask-image;
}

.btn-sm{
padding: 6px 20px !important;
font-size: 0.65rem !important;
}
.h-35-logos{
    height: 35px;
}
 /* Reducción del logo (Escritorio) */
 @media (min-width: 992px) {
     .gs-header.scrolled .logo-main {
         height: 50px;
         /* Exactamente la mitad de los 100px originales */
     }
 }

 /* En escritorio dejamos que Flexbox controle todo anulando el min-height */
 @media (min-width: 992px) {
     .map-switch-container {
         min-height: auto;
     }

     .hero-slide {
         padding-top: 170px;
     }

     .h4,
     h4 {
         font-size: 1.2rem;
     }

     .display-4 {
         font-size: 2.1rem;
         font-weight: 400;
     }

     p {
         font-size: .95rem !important;
         font-family: var(--font-body);
     }

     .map-switch-container {
         cursor: pointer;
         background-color: transparent;
         /* Salvavidas para versión móvil: da cuerpo al contenedor cuando las columnas se apilan */
         min-height: 450px;
     }

     .custom-bullets li {
         font-size: .85rem;
     }

     .footer-link {
         font-size: .8rem;
     }

     .logo-main {
         height: 100px;
         width: auto;
     }

     .w-lg-50 {
         width: 50% !important;
     }

     .display-3 {
         font-size: 3rem;
     }

     .w-75 {
         width: 75% !important;
     }

     .local-section-nav {
         top: 105px;

     }

     .nav-link-custom {

         padding: 0.5rem 1.5rem;
     }
 }

 @media (min-width: 1200px) {
     .modal-xl {
         --bs-modal-width: 75vw;
     }
 }