/* ===================================================
   PENSIÓN ETXEALE - DISEÑO MOBILE-FIRST 2025
   Casa Rural Premium - Optimizado para móvil primero
   =================================================== */

:root {
    --color-primary: #5a7358;
    --color-primary-dark: #3d5a3b;
    --color-accent: #c89b5f;
    --color-white: #ffffff;
    --color-shadow: rgba(0, 0, 0, 0.1);
    --transition: 0.3s ease;
}

/* ===================================================
   RESET Y BASE - MOBILE FIRST
   =================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Eliminar espacios innecesarios */
.bloque {
    margin: 0;
    padding: 0;
}

/* ===================================================
   ANIMACIONES BÁSICAS
   =================================================== */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* ===================================================
   MENÚ DE NAVEGACIÓN PRINCIPAL - STICKY
   =================================================== */

.menu.bg-1 {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
    background-color: #d6d6d6 !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
}

.bloque {
    position: relative !important;
    z-index: auto !important;
}

/* ===================================================
   BOTONES NAVEGACIÓN - MOBILE FIRST
   =================================================== */

.tabs-nav-wrapper {
    background: #8d2216;
    padding: 10px 0;
    box-shadow: 0 3px 15px var(--color-shadow);
    position: relative;
    z-index: 100;
    animation: slideDown 0.4s ease;
    margin: 0;
}

.modern-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.modern-tabs li {
    margin: 0;
}

.modern-tabs a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.modern-tabs a i {
    font-size: 16px;
}

.modern-tabs a:active {
    transform: scale(0.95);
}

.modern-tabs a.active {
    color: var(--color-primary-dark);
    background: var(--color-white);
    border-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===================================================
   CARRUSEL - MOBILE FIRST
   =================================================== */

.tab-content {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 10;
    margin-bottom: 0;
}

.tab-content > .tab-pane {
    display: none !important;
}

.tab-content > .tab-pane.active.show {
    display: block !important;
    animation: fadeIn 0.4s ease;
}

/* Contenedor de la visita virtual con z-index alto */
#vvdiv {
    position: relative;
    z-index: 10;
    background: white;
    margin-bottom: 0;
    padding-bottom: 2rem;
}

#rdVvirtual-container,
.rdVvirtual {
    position: relative;
    z-index: 10;
    background: transparent;
    min-height: 520px;
}

/* Contenedor de fotos también con fondo */
#fotosdiv {
    position: relative;
    z-index: 10;
    background: white;
    margin-bottom: 0;
}

/* Carruseles: Principal (#topgal), Gastronomía (#xgal), Eventos (#egal) */
#topgal.carousel,
#xgal.carousel,
#egal.carousel {
    position: relative;
    height: 50vh;
    min-height: 300px;
    max-height: 450px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#topgal .carousel-inner,
#xgal .carousel-inner,
#egal .carousel-inner {
    height: 100%;
}

#topgal .carousel-item,
#xgal .carousel-item,
#egal .carousel-item {
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Indicadores - Mobile */
#topgal .carousel-indicators,
#xgal .carousel-indicators,
#egal .carousel-indicators {
    bottom: 15px;
    margin: 0;
    gap: 6px;
}

#topgal .carousel-indicators li,
#xgal .carousel-indicators li,
#egal .carousel-indicators li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid white;
    margin: 0;
    transition: all var(--transition);
}

#topgal .carousel-indicators li.active,
#xgal .carousel-indicators li.active,
#egal .carousel-indicators li.active {
    width: 24px;
    border-radius: 4px;
    background: white;
}

/* Controles - Mobile */
#topgal .carousel-control-prev,
#topgal .carousel-control-next,
#xgal .carousel-control-prev,
#xgal .carousel-control-next,
#egal .carousel-control-prev,
#egal .carousel-control-next {
    width: 45px;
    height: 45px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(90, 115, 88, 0.85);
    border-radius: 50%;
    opacity: 0.9;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all var(--transition);
}

#topgal .carousel-control-prev,
#xgal .carousel-control-prev,
#egal .carousel-control-prev { 
    left: 10px; 
}

#topgal .carousel-control-next,
#xgal .carousel-control-next,
#egal .carousel-control-next { 
    right: 10px; 
}

#topgal .carousel-control-prev:active,
#topgal .carousel-control-next:active,
#xgal .carousel-control-prev:active,
#xgal .carousel-control-next:active,
#egal .carousel-control-prev:active,
#egal .carousel-control-next:active {
    transform: translateY(-50%) scale(0.9);
}

/* ===================================================
   VISITA VIRTUAL - MOBILE
   =================================================== */

#rdVvirtual-container {
    min-height: 400px !important;
    height: 50vh !important;
}

.rdVvirtual {
    height: 400px !important;
}

.rdVV_panorama {
    height: 350px !important;
}

/* ===================================================
   ANIMACIONES GENERALES
   =================================================== */

.punto, .evento {
    transition: transform var(--transition);
}

.punto:active, .evento:active {
    transform: scale(0.98);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================================
   TABLET (min-width: 768px)
   =================================================== */

@media (min-width: 768px) {
    .modern-tabs a {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .modern-tabs a i {
        font-size: 18px;
    }
    
    #topgal.carousel,
    #xgal.carousel,
    #egal.carousel {
        height: 55vh;
        min-height: 400px;
        max-height: 550px;
    }
    
    #topgal .carousel-indicators li,
    #xgal .carousel-indicators li,
    #egal .carousel-indicators li {
        width: 10px;
        height: 10px;
    }
    
    #topgal .carousel-indicators li.active,
    #xgal .carousel-indicators li.active,
    #egal .carousel-indicators li.active {
        width: 30px;
    }
    
    #topgal .carousel-control-prev,
    #topgal .carousel-control-next,
    #xgal .carousel-control-prev,
    #xgal .carousel-control-next,
    #egal .carousel-control-prev,
    #egal .carousel-control-next {
        width: 50px;
        height: 50px;
        opacity: 0;
    }
    
    #topgal:hover .carousel-control-prev,
    #topgal:hover .carousel-control-next,
    #xgal:hover .carousel-control-prev,
    #xgal:hover .carousel-control-next,
    #egal:hover .carousel-control-prev,
    #egal:hover .carousel-control-next {
        opacity: 1;
    }
    
    #topgal .carousel-control-prev,
    #xgal .carousel-control-prev,
    #egal .carousel-control-prev { 
        left: 20px; 
    }
    
    #topgal .carousel-control-next,
    #xgal .carousel-control-next,
    #egal .carousel-control-next { 
        right: 20px; 
    }
    
    #rdVvirtual-container {
        min-height: 500px !important;
        height: 55vh !important;
    }
    
    .rdVvirtual {
        height: 500px !important;
    }
    
    .rdVV_panorama {
        height: 450px !important;
    }
    
    .punto:hover, .evento:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px var(--color-shadow);
    }
}

/* ===================================================
   DESKTOP (min-width: 992px)
   =================================================== */

@media (min-width: 992px) {
    .tabs-nav-wrapper {
        padding: 15px 0;
    }
    
    .modern-tabs {
        gap: 12px;
    }
    
    .modern-tabs a {
        padding: 14px 35px;
        font-size: 14px;
    }
    
    .modern-tabs a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }
    
    .modern-tabs a {
        position: relative;
        overflow: hidden;
    }
    
    .modern-tabs a:hover::before {
        left: 100%;
    }
    
    .modern-tabs a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    #topgal.carousel,
    #xgal.carousel,
    #egal.carousel {
        height: 65vh;
        min-height: 500px;
        max-height: 650px;
        box-shadow: 0 10px 40px var(--color-shadow);
    }
    
    #topgal .carousel-item.active,
    #xgal .carousel-item.active,
    #egal .carousel-item.active {
        animation: subtleZoom 15s ease-in-out infinite alternate;
    }
    
    @keyframes subtleZoom {
        0% { transform: scale(1); }
        100% { transform: scale(1.05); }
    }
    
    #topgal .carousel-control-prev:hover,
    #topgal .carousel-control-next:hover,
    #xgal .carousel-control-prev:hover,
    #xgal .carousel-control-next:hover,
    #egal .carousel-control-prev:hover,
    #egal .carousel-control-next:hover {
        background: var(--color-primary-dark);
        transform: translateY(-50%) scale(1.1);
    }
    
    #rdVvirtual-container {
        min-height: 520px !important;
        height: 65vh !important;
    }
    
    .rdVvirtual {
        height: 520px !important;
    }
}

/* ===================================================
   LARGE DESKTOP (min-width: 1200px)
   =================================================== */

@media (min-width: 1200px) {
    #topgal.carousel,
    #xgal.carousel,
    #egal.carousel {
        height: 70vh;
        max-height: 700px;
    }
}

/* ===================================================
   SECCIÓN QUÉ VER - MOBILE FIRST PROFESIONAL
   =================================================== */

/* Swiper Container - Responsive */
.swiper-container {
    width: 100%;
    padding: 30px 0;
    overflow: hidden; /* Oculta el overflow en móvil */
    position: relative;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

/* Mobile first - ancho automático para centeredSlides */
.swiper-slide {
    width: 90% !important; /* 90% del ancho para que no se salga */
    max-width: 400px; /* Máximo ancho en móviles grandes */
    height: auto;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 0 8px; /* Padding interno para separación */
}

/* Tarjetas optimizadas para móvil */
.punto {
    margin: 0;
    width: 100%;
}

/* Tarjetas de Puntos Turísticos - Mobile First */
.punto {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(200, 155, 95, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(200, 155, 95, 0.15);
    width: 100%;
}

/* Efecto para slides no centrados en móvil */
.swiper-slide:not(.swiper-slide-active) .punto {
    opacity: 0.5;
    transform: scale(0.9);
}

.swiper-slide-active .punto {
    opacity: 1;
    transform: scale(1);
}

/* Borde superior animado con gradiente */
.punto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8d2216 0%, #c89b5f 50%, #8d2216 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.punto:hover::before,
.swiper-slide-active .punto::before {
    opacity: 1;
    animation: shimmerBorder 2s ease infinite;
}

@keyframes shimmerBorder {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.punto:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(141, 34, 22, 0.2),
        0 15px 30px rgba(141, 34, 22, 0.1),
        0 0 0 1px rgba(141, 34, 22, 0.15);
    border-color: rgba(200, 155, 95, 0.35);
}

.punto:active {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 15px 35px rgba(141, 34, 22, 0.18),
        0 8px 20px rgba(141, 34, 22, 0.08);
}

.punto .foto {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gradiente de overlay mejorado */
.punto .foto::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.3) 50%,
        transparent 100%);
    transition: opacity 0.4s ease;
}

.punto:hover .foto {
    transform: scale(1.15);
    filter: brightness(1.05) contrast(1.1) saturate(1.15);
}

.punto:hover .foto::after {
    opacity: 0.7;
}

.punto .titulo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    padding: 20px 16px 8px;
    margin: 0;
    line-height: 1.3;
    position: relative;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.punto .titulo::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #8d2216, #c89b5f);
    margin: 12px auto 0;
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.punto:hover .titulo {
    color: #8d2216;
    transform: translateY(-2px);
}

.punto:hover .titulo::after {
    width: 80px;
}

.punto .distancia {
    text-align: center;
    font-size: 0.9rem;
    color: #8d2216;
    font-weight: 700;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(90deg, transparent 0%, rgba(141, 34, 22, 0.05) 50%, transparent 100%);
    transition: all 0.3s ease;
}

.punto .distancia i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.punto:hover .distancia {
    background: linear-gradient(90deg, transparent 0%, rgba(141, 34, 22, 0.1) 50%, transparent 100%);
}

.punto:hover .distancia i {
    transform: scale(1.2);
}

.punto .subtitulo {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 0 20px 24px;
    text-align: left;
    flex-grow: 1;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Swiper Navigation Buttons - Mobile Visible */
.swiper-button-next,
.swiper-button-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8d2216 0%, #a32818 100%);
    border-radius: 50%;
    color: white !important;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 6px 20px rgba(141, 34, 22, 0.35),
        0 3px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0.95;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.swiper-button-prev {
    left: -10px;
}

.swiper-button-next {
    right: -10px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
    background: linear-gradient(135deg, #a32818 0%, #c89b5f 100%);
    box-shadow: 
        0 10px 30px rgba(141, 34, 22, 0.45),
        0 5px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.15);
    border-color: rgba(200, 155, 95, 0.4);
}

.swiper-button-next:active,
.swiper-button-prev:active {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 
        0 4px 15px rgba(141, 34, 22, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Deshabilitado */
.swiper-button-disabled {
    opacity: 0.3 !important;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===================================================
   ANIMACIONES PARA BOTONES GLOBALES - PROFESIONAL
   =================================================== */

/* Botón Reservar - Hero Section */
.btn.btn-lg.btn-warning.bg-1 {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    background: linear-gradient(135deg, #d6d6d6 0%, #c4c4c4 100%) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn.btn-lg.btn-warning.bg-1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn.btn-lg.btn-warning.bg-1:hover::before {
    width: 300px;
    height: 300px;
}

.btn.btn-lg.btn-warning.bg-1:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border-color: #8d2216;
}

.btn.btn-lg.btn-warning.bg-1:active {
    transform: translateY(0) scale(0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Botones del Menú - Navegación Principal */
.menu a {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #8d2216;
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu a:hover::before {
    width: 80%;
}

.menu a:hover {
    color: #8d2216 !important;
    transform: translateY(-1px);
}

.menu a:active {
    transform: translateY(0) scale(0.98);
}

/* Botones de Modal y Genéricos */
.btn,
button,
a.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::after,
button::after,
a.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::after,
button:hover::after,
a.btn:hover::after {
    width: 200px;
    height: 200px;
}

.btn:hover,
button:hover,
a.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn:active,
button:active,
a.btn:active {
    transform: translateY(0) scale(0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===================================================
   TABLET (min-width: 768px) - QUÉ VER
   =================================================== */

@media (min-width: 768px) {
    .swiper-container {
        padding: 30px 15px;
        overflow: visible; /* Permite ver flechas en tablet+ */
    }
    
    .swiper-slide {
        width: 50% !important; /* Ancho fijo en tablet */
        max-width: none; /* Sin límite en tablet+ */
        padding: 0 8px;
    }
    
    /* Remover efecto de opacidad en tablet+ */
    .swiper-slide:not(.swiper-slide-active) .punto {
        opacity: 1;
        transform: scale(1);
    }
    
    /* Flechas más grandes en tablet */
    .swiper-button-next,
    .swiper-button-prev {
        width: 56px;
        height: 56px;
    }
    
    .swiper-button-prev {
        left: 5px;
    }
    
    .swiper-button-next {
        right: 5px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 22px;
    }
    
    .punto {
        border-radius: 22px;
    }
    
    .punto .foto {
        height: 260px;
    }
    
    .punto .titulo {
        font-size: 1.4rem;
        padding: 22px 18px 10px;
    }
    
    .punto .subtitulo {
        font-size: 1rem;
        padding: 0 22px 26px;
    }
}

/* ===================================================
   DESKTOP (min-width: 992px) - QUÉ VER
   =================================================== */

@media (min-width: 992px) {
    .swiper-container {
        padding: 40px 25px;
    }
    
    .swiper-slide {
        width: 33.333% !important;
        padding: 0 10px;
    }
    
    /* Flechas más grandes en desktop */
    .swiper-button-next,
    .swiper-button-prev {
        width: 62px;
        height: 62px;
    }
    
    .swiper-button-prev {
        left: 10px;
    }
    
    .swiper-button-next {
        right: 10px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 26px;
    }
    
    .punto {
        border-radius: 24px;
    }
    
    .punto .foto {
        height: 280px;
    }
    
    .punto .titulo {
        font-size: 1.5rem;
        padding: 24px 20px 12px;
    }
    
    .punto .subtitulo {
        font-size: 1.02rem;
        padding: 0 24px 28px;
    }
}

/* ===================================================
   LARGE DESKTOP (min-width: 1200px) - QUÉ VER
   =================================================== */

@media (min-width: 1200px) {
    .swiper-slide {
        width: 25% !important;
        padding: 0 10px;
    }
    
    .punto {
        border-radius: 24px;
    }
    
    .punto .foto {
        height: 300px;
    }
    
    .punto .titulo {
        font-size: 1.6rem;
    }
    
    .punto .subtitulo {
        font-size: 1.05rem;
    }
}

/* ===================================================
   ANIMACIONES Y EFECTOS PREMIUM - QUÉ VER
   =================================================== */

/* Animación de entrada progresiva para las tarjetas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-slide {
    animation: fadeInUp 0.6s ease-out backwards;
}

.swiper-slide:nth-child(1) { animation-delay: 0.1s; }
.swiper-slide:nth-child(2) { animation-delay: 0.2s; }
.swiper-slide:nth-child(3) { animation-delay: 0.3s; }
.swiper-slide:nth-child(4) { animation-delay: 0.4s; }

/* Efecto de brillo sutil en las flechas */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(141, 34, 22, 0.35), 0 3px 8px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(141, 34, 22, 0.5), 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Efecto parallax suave en las imágenes */
@media (prefers-reduced-motion: no-preference) {
    .punto:hover .foto {
        transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}

/* Mejora de transición para usuarios que prefieren animaciones reducidas */
@media (prefers-reduced-motion: reduce) {
    .punto,
    .punto .foto,
    .punto .titulo,
    .swiper-button-next,
    .swiper-button-prev {
        transition: none;
        animation: none;
    }
    
    .punto:hover {
        transform: none;
    }
}

/* Sombra dinámica premium */
@keyframes shadowPulse {
    0%, 100% {
        box-shadow: 
            0 25px 50px rgba(141, 34, 22, 0.2),
            0 15px 30px rgba(141, 34, 22, 0.1),
            0 0 0 1px rgba(141, 34, 22, 0.15);
    }
    50% {
        box-shadow: 
            0 30px 60px rgba(141, 34, 22, 0.25),
            0 18px 35px rgba(141, 34, 22, 0.15),
            0 0 0 1px rgba(141, 34, 22, 0.2);
    }
}

.punto:hover {
    animation: shadowPulse 3s ease-in-out infinite;
}

/* ================================================
   LOCATION SECTION STYLES
   ================================================ */

.location-info {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 1.8;
}

.location-info i {
    color: #8d2216;
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Premium "CÓMO LLEGAR" Button */
.btn-location {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 38px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: linear-gradient(135deg, #8d2216 0%, #a32818 50%, #8d2216 100%);
    background-size: 200% 100%;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 
        0 8px 20px rgba(141, 34, 22, 0.3),
        0 3px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-location::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-location:hover::before {
    left: 100%;
}

.btn-location .btn-icon {
    font-size: 1rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-location:hover {
    transform: translateY(-3px) scale(1.03);
    background-position: 100% 0;
    box-shadow: 
        0 14px 32px rgba(141, 34, 22, 0.4),
        0 6px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 30px rgba(141, 34, 22, 0.3);
    color: #fff;
}

.btn-location:hover .btn-icon {
    transform: translateX(6px);
}

.btn-location:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 
        0 6px 16px rgba(141, 34, 22, 0.35),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Ripple Effect on Click */
/* Booking-related styles removed (booking buttons and CTA) */

.reviews-section h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.reviews-section p.text-muted {
    font-size: 1.1rem;
    color: #777 !important;
}

/* Reviews Summary Card */
.reviews-summary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 
        0 10px 40px rgba(141, 34, 22, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.reviews-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8d2216, #c89b5f, #8d2216);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.rating-score {
    font-size: 4rem;
    font-weight: 800;
    color: #8d2216;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(141, 34, 22, 0.1);
}

.rating-stars {
    font-size: 1.8rem;
    color: #fbbf24;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.rating-stars i {
    filter: drop-shadow(0 2px 3px rgba(251, 191, 36, 0.3));
}

.rating-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.google-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4285f4;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    background: white;
    transition: all 0.3s ease;
}

.google-link:hover {
    background: #4285f4;
    color: white;
    border-color: #4285f4;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(66, 133, 244, 0.3);
}

.google-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.google-link:hover i {
    transform: rotate(360deg);
}

/* Individual Review Cards */
.review-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #8d2216, #c89b5f);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 35px rgba(141, 34, 22, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.08);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8d2216, #c89b5f);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(141, 34, 22, 0.2);
}

.review-author {
    flex: 1;
}

.author-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 4px;
}

.review-stars {
    font-size: 0.9rem;
    color: #fbbf24;
    letter-spacing: 2px;
}

.review-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 400;
}

.review-date {
    color: #999;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-date i {
    color: #c89b5f;
}

/* Reviews Button Styling */
.btn-reviews {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 38px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 
        0 8px 20px rgba(66, 133, 244, 0.3),
        0 3px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-reviews:hover::before {
    left: 100%;
}

.btn-reviews i {
    font-size: 1.3rem;
    transition: transform 0.4s ease;
}

.btn-reviews:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 14px 32px rgba(66, 133, 244, 0.4),
        0 6px 12px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(66, 133, 244, 0.3);
    color: #ffffff;
}

.btn-reviews:hover i {
    transform: rotate(360deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-section h2 {
        font-size: 1.8rem;
    }
    
    .reviews-section p.text-muted {
        font-size: 0.95rem;
    }
    
    .reviews-summary {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .rating-score {
        font-size: 3rem;
    }
    
    .rating-stars {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .review-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .review-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    .btn-reviews {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* Animation for Cards on Scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
.review-card:nth-child(4) { animation-delay: 0.4s; }
.review-card:nth-child(5) { animation-delay: 0.5s; }
.review-card:nth-child(6) { animation-delay: 0.6s; }


/* ===================================================
   ESTILOS PREMIUM PENSIÓN ETXEALE
   =================================================== */

/* Botón "Leer más" mejorado */
.btn-leer-mas {
	background: linear-gradient(135deg, #8d2216 0%, #b32a1b 100%);
	color: white;
	padding: 15px 40px;
	font-size: 1.1rem;
	font-weight: 600;
	border: none;
	border-radius: 50px;
	box-shadow: 0 4px 15px rgba(141, 34, 22, 0.25);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	display: inline-block;
}

.btn-leer-mas:hover {
	color: white;
	background: linear-gradient(135deg, #a02819 0%, #c93020 100%);
	box-shadow: 0 4px 15px rgba(141, 34, 22, 0.35);
}

.btn-leer-mas:active {
	box-shadow: 0 2px 8px rgba(141, 34, 22, 0.3);
}

.btn-leer-mas i {
	transition: transform 0.3s ease;
}

.btn-leer-mas:hover i {
	transform: translateX(5px);
}

/* ===== SECCIÓN PREMIUM "LA CASA" ===== */
.bloque-premium-lacasa {
	background-image: url(../images/6/textura.jpg);
	background-position: center center;
	position: relative;
	overflow: visible;
	z-index: auto;
	margin-top: 0 !important;
	padding-top: 3rem !important;
	clear: both;
}

.overlay-premium {
	display: none;
}

.contenido-premium {
	text-align: center;
}

.badge-exclusivo {
	display: inline-block;
	background: linear-gradient(135deg, #8d2216 0%, #b32a1b 100%);
	color: white;
	padding: 8px 24px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	box-shadow: 0 4px 15px rgba(141, 34, 22, 0.2);
}

.titulo-premium {
	font-size: 3.5rem;
	font-weight: 800;
	color: #1a1a1a;
	letter-spacing: -1px;
	margin: 0;
	line-height: 1.2;
}

.linea-dorada {
	width: 100px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #8d2216, transparent);
	margin: 0 auto;
}

.subtitulo-premium {
	font-size: 1.3rem;
	color: #6c757d;
	font-weight: 400;
	letter-spacing: 0.5px;
}

.lead-premium {
	font-size: 1.25rem;
	color: #495057;
	line-height: 1.8;
	max-width: 700px;
	margin: 0 auto 2rem;
}

.feature-premium {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	text-align: left;
	padding: 20px;
	background: white;
	border-radius: 12px;
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
	height: 100%;
}

.feature-premium:hover {
	border-color: #8d2216;
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.feature-premium i {
	font-size: 1.8rem;
	color: #8d2216;
	min-width: 40px;
	margin-top: 5px;
}

.feature-premium strong {
	display: block;
	font-size: 1.1rem;
	color: #1a1a1a;
	margin-bottom: 5px;
}

.feature-premium p {
	margin: 0;
	font-size: 0.95rem;
	color: #6c757d;
	line-height: 1.5;
}

/* Botón Premium Principal */
.btn-premium-main {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	background: #1a1a1a;
	color: white;
	padding: 18px 45px;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	border: 2px solid #1a1a1a;
}

.btn-premium-main::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #8d2216 0%, #b32a1b 100%);
	transition: left 0.5s ease;
	z-index: 0;
}

.btn-premium-main:hover::before {
	left: 0;
}

.btn-premium-main:hover {
	border-color: #8d2216;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(141, 34, 22, 0.3);
}

.btn-premium-text,
.btn-premium-icon {
	position: relative;
	z-index: 1;
}

.btn-premium-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.btn-premium-main:hover .btn-premium-icon {
	background: rgba(255,255,255,0.2);
	transform: translateX(5px);
}

/* ===== SECCIÓN EQUIPAMIENTO PREMIUM ===== */
.bloque-equipamiento-premium {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.badge-seccion {
	display: inline-block;
	background: linear-gradient(135deg, #8d2216 0%, #b32a1b 100%);
	color: white;
	padding: 8px 24px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	box-shadow: 0 4px 15px rgba(141, 34, 22, 0.2);
}

.titulo-equipamiento {
	font-size: 2.5rem;
	font-weight: 800;
	color: #1a1a1a;
	letter-spacing: -0.5px;
}

.linea-decorativa {
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, transparent, #8d2216, transparent);
}

.descripcion-equipamiento {
	max-width: 800px;
	margin: 0 auto 40px;
	padding: 25px 30px;
	background: white;
	border-left: 4px solid #8d2216;
	border-radius: 8px;
	box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.descripcion-equipamiento p {
	font-size: 1.05rem;
	color: #495057;
	line-height: 1.8;
	margin: 0;
	text-align: left;
}

.categoria-equipamiento {
	background: white;
	border-radius: 16px;
	padding: 35px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.06);
	border: 1px solid #e9ecef;
	height: 100%;
	transition: all 0.3s ease;
}

.categoria-equipamiento:hover {
	box-shadow: 0 8px 30px rgba(0,0,0,0.1);
	transform: translateY(-3px);
}

.header-categoria {
	display: flex;
	align-items: center;
	gap: 15px;
	padding-bottom: 20px;
	margin-bottom: 25px;
	border-bottom: 2px solid #f1f3f5;
}

.header-categoria i {
	font-size: 1.8rem;
	color: #8d2216;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(141, 34, 22, 0.1), rgba(179, 42, 27, 0.1));
	border-radius: 12px;
}

.header-categoria h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.lista-equipamiento-simple {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.lista-equipamiento-simple li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 15px;
	background: #f8f9fa;
	border-radius: 8px;
	font-size: 1.05rem;
	color: #495057;
	font-weight: 500;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
}

.lista-equipamiento-simple li:hover {
	background: white;
	border-left-color: #8d2216;
	transform: translateX(5px);
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.lista-equipamiento-simple li i {
	color: #8d2216;
	font-size: 1.1rem;
	min-width: 20px;
}

.texto-equipamiento-sutil {
	font-size: 1rem;
	color: #6c757d;
	line-height: 1.6;
	max-width: 700px;
	margin: 0 auto;
	font-style: italic;
	opacity: 0.85;
}

/* Responsive Premium */
@media (max-width: 992px) {
	.categoria-equipamiento {
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.titulo-premium {
		font-size: 2.5rem;
	}
	
	.subtitulo-premium {
		font-size: 1.1rem;
	}
	
	.lead-premium {
		font-size: 1.1rem;
	}
	
	.feature-premium {
		padding: 15px;
	}
	
	.feature-premium i {
		font-size: 1.5rem;
	}
	
	.btn-premium-main {
		padding: 15px 35px;
		font-size: 1rem;
	}
	
	.titulo-equipamiento {
		font-size: 2rem;
	}
	
	.header-categoria h3 {
		font-size: 1.3rem;
	}
	
	.categoria-equipamiento {
		padding: 25px;
	}
	
	.lista-equipamiento-simple li {
		font-size: 0.95rem;
		padding: 10px 12px;
	}
	
	.descripcion-equipamiento {
		padding: 20px;
	}
	
	.descripcion-equipamiento p {
		font-size: 0.95rem;
	}
}

@media (max-width: 576px) {
	.titulo-premium {
		font-size: 2rem;
	}
	
	.badge-exclusivo {
		font-size: 0.75rem;
		padding: 6px 18px;
	}
}

/* ===================================================
   SECCIÓN GASTRONOMÍA PREMIUM
   =================================================== */

.bloque-gastronomia-premium {
	background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.badge-gastronomia {
	display: inline-block;
	background: linear-gradient(135deg, #8d2216 0%, #b32a1b 100%);
	color: white;
	padding: 10px 28px;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	box-shadow: 0 4px 20px rgba(141, 34, 22, 0.25);
}

.titulo-gastronomia {
	font-size: 3rem;
	font-weight: 800;
	color: #1a1a1a;
	letter-spacing: -1px;
	line-height: 1.2;
}

.linea-dorada-gastro {
	width: 120px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #8d2216, transparent);
	margin: 0 auto;
}

/* Contenedor de descripción en dos columnas */
.contenedor-descripcion-gastro {
	max-width: 1100px;
	margin: 0 auto;
}

/* COLUMNA IZQUIERDA - Destacados laterales */
.destacados-gastro-lateral {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.item-destacado-lateral {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 25px;
	background: white;
	border-radius: 16px;
	border-left: 4px solid transparent;
	box-shadow: 0 5px 20px rgba(0,0,0,0.06);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.item-destacado-lateral::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(141, 34, 22, 0.03), rgba(179, 42, 27, 0.05));
	transition: left 0.5s ease;
	z-index: 0;
}

.item-destacado-lateral:hover::before {
	left: 0;
}

.item-destacado-lateral:hover {
	border-left-color: #8d2216;
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(141, 34, 22, 0.15);
}

.icono-destacado {
	width: 70px;
	height: 70px;
	min-width: 70px;
	background: linear-gradient(135deg, rgba(141, 34, 22, 0.1), rgba(179, 42, 27, 0.15));
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	transition: all 0.4s ease;
}

.item-destacado-lateral:hover .icono-destacado {
	background: linear-gradient(135deg, #8d2216, #b32a1b);
	transform: rotate(5deg) scale(1.05);
}

.icono-destacado i {
	font-size: 2rem;
	color: #8d2216;
	transition: all 0.3s ease;
}

.item-destacado-lateral:hover .icono-destacado i {
	color: white;
}

.texto-destacado {
	position: relative;
	z-index: 1;
}

.texto-destacado h4 {
	font-size: 1.2rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 5px 0;
	transition: color 0.3s ease;
}

.item-destacado-lateral:hover .texto-destacado h4 {
	color: #8d2216;
}

.texto-destacado p {
	font-size: 0.9rem;
	color: #6c757d;
	margin: 0;
	line-height: 1.4;
}

/* COLUMNA DERECHA - Card de texto */
.card-texto-gastro {
	background: white;
	border-radius: 20px;
	padding: 45px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.08);
	border: 1px solid #f0f0f0;
	position: relative;
	transition: all 0.4s ease;
}

.card-texto-gastro:hover {
	box-shadow: 0 15px 50px rgba(0,0,0,0.12);
	transform: translateY(-5px);
}

.icono-chef-flotante {
	position: absolute;
	top: -25px;
	right: 40px;
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #8d2216, #b32a1b);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 25px rgba(141, 34, 22, 0.3);
	animation: float-chef 3s ease-in-out infinite;
}

.icono-chef-flotante i {
	font-size: 1.8rem;
	color: white;
}

@keyframes float-chef {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.subtitulo-gastro {
	font-size: 1.6rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 20px;
	line-height: 1.3;
}

.texto-gastro-principal {
	font-size: 1.1rem;
	line-height: 1.9;
	color: #495057;
	margin: 0 0 25px 0;
	text-align: left;
}

.texto-gastro-principal strong {
	color: #8d2216;
	font-weight: 600;
}

.firma-chef {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 30px;
	padding-top: 25px;
	border-top: 2px solid #f8f9fa;
}

.linea-firma {
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, #8d2216, transparent);
}

.firma-chef span {
	font-size: 0.95rem;
	color: #8d2216;
	font-weight: 600;
	font-style: italic;
	letter-spacing: 0.5px;
}

/* Destacados antiguos - mantener por compatibilidad */
.destacados-gastro {
	padding-top: 30px;
	border-top: 2px solid #f8f9fa;
	display: none;
}

.item-destacado {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 20px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.item-destacado:hover {
	background: linear-gradient(135deg, #8d2216 0%, #b32a1b 100%);
	transform: translateY(-3px);
	box-shadow: 0 5px 20px rgba(141, 34, 22, 0.2);
}

.item-destacado i {
	font-size: 1.8rem;
	color: #8d2216;
	transition: all 0.3s ease;
}

.item-destacado:hover i {
	color: white;
	transform: scale(1.1);
}

.item-destacado span {
	font-size: 0.95rem;
	font-weight: 600;
	color: #1a1a1a;
	text-align: center;
	transition: color 0.3s ease;
}

.item-destacado:hover span {
	color: white;
}

/* Galería en Grid Moderno */
.galeria-gastro-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 50px;
}

.grid-item {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	aspect-ratio: 1;
	min-height: 250px;
}

.grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	display: block;
}

.grid-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.grid-item:hover img {
	transform: scale(1.1);
}

.overlay-grid {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(141, 34, 22, 0.85), rgba(179, 42, 27, 0.85));
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.grid-item:hover .overlay-grid {
	opacity: 1;
}

.overlay-grid i {
	font-size: 2.5rem;
	color: white;
	transform: scale(0.5);
	transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.grid-item:hover .overlay-grid i {
	transform: scale(1);
}

/* Efecto de entrada escalonada - Las imágenes empiezan visibles */
.grid-item {
	animation: fadeInUp 0.6s ease;
}

.grid-item-1 { animation-delay: 0.1s; }
.grid-item-2 { animation-delay: 0.2s; }
.grid-item-3 { animation-delay: 0.3s; }
.grid-item-4 { animation-delay: 0.4s; }
.grid-item-5 { animation-delay: 0.5s; }
.grid-item-6 { animation-delay: 0.6s; }

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Botón Ver Todas las Fotos */
.btn-ver-todas-fotos {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	background: #1a1a1a;
	color: white;
	padding: 18px 40px;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	border: 2px solid #1a1a1a;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.btn-ver-todas-fotos::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #8d2216 0%, #b32a1b 100%);
	transition: left 0.5s ease;
	z-index: 0;
}

.btn-ver-todas-fotos:hover::before {
	left: 0;
}

.btn-ver-todas-fotos:hover {
	border-color: #8d2216;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(141, 34, 22, 0.3);
}

.btn-texto,
.btn-icono-galeria {
	position: relative;
	z-index: 1;
}

.btn-icono-galeria {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background: rgba(255,255,255,0.15);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.btn-ver-todas-fotos:hover .btn-icono-galeria {
	background: rgba(255,255,255,0.25);
	transform: rotate(15deg);
}

/* Modal de galería */
.modal-galeria-content {
	background: #1a1a1a;
	border-radius: 20px;
	overflow: hidden;
	border: none;
}

.modal-galeria-content .modal-header {
	background: transparent;
	padding: 20px;
}

.modal-galeria-content .carousel-item img {
	border-radius: 12px;
	max-height: 80vh;
	object-fit: contain;
}

.modal-galeria-content .carousel-control-prev,
.modal-galeria-content .carousel-control-next {
	width: 60px;
	opacity: 1;
}

.modal-galeria-content .carousel-control-prev-icon,
.modal-galeria-content .carousel-control-next-icon {
	background-color: rgba(141, 34, 22, 0.9);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	transition: all 0.3s ease;
}

.modal-galeria-content .carousel-control-prev:hover .carousel-control-prev-icon,
.modal-galeria-content .carousel-control-next:hover .carousel-control-next-icon {
	background-color: #8d2216;
	transform: scale(1.1);
}

.modal-galeria-content .carousel-indicators {
	margin-bottom: 15px;
}

.modal-galeria-content .carousel-indicators button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.5);
	border: none;
	margin: 0 5px;
	transition: all 0.3s ease;
}

.modal-galeria-content .carousel-indicators button.active {
	background-color: #8d2216;
	transform: scale(1.3);
}

/* Responsive Gastronomía */
@media (max-width: 992px) {
	.galeria-gastro-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	
	.titulo-gastronomia {
		font-size: 2.5rem;
	}
	
	.destacados-gastro-lateral {
		margin-bottom: 30px;
	}
	
	.item-destacado-lateral {
		padding: 20px;
	}
	
	.icono-destacado {
		width: 60px;
		height: 60px;
		min-width: 60px;
	}
	
	.icono-destacado i {
		font-size: 1.7rem;
	}
	
	.texto-destacado h4 {
		font-size: 1.1rem;
	}
	
	.card-texto-gastro {
		padding: 35px;
	}
	
	.subtitulo-gastro {
		font-size: 1.4rem;
	}
}

@media (max-width: 768px) {
	.titulo-gastronomia {
		font-size: 2rem;
	}
	
	.texto-gastro-principal {
		font-size: 1.05rem;
	}
	
	.card-texto-gastro {
		padding: 30px 25px;
	}
	
	.icono-chef-flotante {
		top: -20px;
		right: 25px;
		width: 60px;
		height: 60px;
	}
	
	.icono-chef-flotante i {
		font-size: 1.5rem;
	}
	
	.subtitulo-gastro {
		font-size: 1.3rem;
	}
	
	.item-destacado-lateral {
		padding: 18px;
	}
	
	.btn-ver-todas-fotos {
		padding: 15px 35px;
		font-size: 1rem;
	}
}

@media (max-width: 576px) {
	.galeria-gastro-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	
	.titulo-gastronomia {
		font-size: 1.75rem;
	}
	
	.badge-gastronomia {
		font-size: 0.75rem;
		padding: 8px 20px;
	}
	
	.card-texto-gastro {
		padding: 25px 20px;
	}
	
	.texto-gastro-principal {
		font-size: 0.95rem;
	}
	
	.item-destacado-lateral {
		padding: 15px;
		gap: 15px;
	}
	
	.icono-destacado {
		width: 50px;
		height: 50px;
		min-width: 50px;
	}
	
	.icono-destacado i {
		font-size: 1.4rem;
	}
	
	.texto-destacado h4 {
		font-size: 1rem;
	}
	
	.texto-destacado p {
		font-size: 0.85rem;
	}
	
	.subtitulo-gastro {
		font-size: 1.2rem;
	}
	
	.icono-chef-flotante {
		width: 50px;
		height: 50px;
		top: -15px;
		right: 20px;
	}
	
	.icono-chef-flotante i {
		font-size: 1.3rem;
	}
	
	.firma-chef span {
		font-size: 0.85rem;
	}
}


@media (max-width: 768px) {
	.titulo-gastronomia {
		font-size: 2rem;
	}
	
	.texto-gastro-principal {
		font-size: 1.05rem;
	}
	
	.card-descripcion-gastro {
		padding: 30px 25px;
	}
	
	.btn-ver-todas-fotos {
		padding: 15px 35px;
		font-size: 1rem;
	}
}

@media (max-width: 576px) {
	.galeria-gastro-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	
	.titulo-gastronomia {
		font-size: 1.75rem;
	}
	
	.badge-gastronomia {
		font-size: 0.75rem;
		padding: 8px 20px;
	}
	
	.card-descripcion-gastro {
		padding: 25px 20px;
	}
	
	.texto-gastro-principal {
		font-size: 0.95rem;
	}
	
	.item-destacado {
		padding: 15px;
	}
	
	.item-destacado i {
		font-size: 1.5rem;
	}
	
	.item-destacado span {
		font-size: 0.85rem;
	}
}

/* ===================================================
   SECCIÓN RESERVAS PREMIUM COMPACTA
   =================================================== */

.bloque-reservas-premium {
	background: rgba(0,0,0,0.12);
	position: relative;
	padding: 70px 0;
	border-top: 1px solid rgba(0,0,0,0.05);
	border-bottom: 1px solid rgba(0,0,0,0.05);
}

.bloque-reservas-premium::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, #8d2216, transparent);
	opacity: 0.3;
}

.titulo-reservas-compacto {
	font-size: 2.8rem;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0 0 10px 0;
	letter-spacing: -1px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.subtitulo-reservas-compacto {
	font-size: 1.15rem;
	color: #666;
	margin: 0 0 35px 0;
	font-weight: 500;
}

.card-reservas-compacta {
	background: white;
	border-radius: 24px;
	padding: 50px;
	box-shadow: 0 15px 60px rgba(0,0,0,0.1), 0 5px 20px rgba(141,34,22,0.05);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(0,0,0,0.05);
	position: relative;
	overflow: hidden;
}

.card-reservas-compacta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #8d2216, #b32a1b, #8d2216);
	background-size: 200% 100%;
	animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

.card-reservas-compacta:hover {
	box-shadow: 0 20px 70px rgba(0,0,0,0.15), 0 8px 30px rgba(141,34,22,0.1);
	transform: translateY(-5px);
}

/* Grid horizontal de contactos */
.contactos-grid-horizontal {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-bottom: 30px;
}

.contacto-horizontal-item {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 25px;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border: 2px solid #e9ecef;
	border-radius: 16px;
	text-decoration: none;
	color: #1a1a1a;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.contacto-horizontal-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(141,34,22,0.05), transparent);
	transition: left 0.6s;
}

.contacto-horizontal-item:hover::before {
	left: 100%;
}

.contacto-horizontal-item:hover {
	border-color: #8d2216;
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(141, 34, 22, 0.2);
	text-decoration: none;
	color: #1a1a1a;
	background: linear-gradient(135deg, #ffffff 0%, #fff5f3 100%);
}

.contacto-horizontal-item.whatsapp:hover {
	border-color: #25D366;
	box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
	background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.contacto-horizontal-item.whatsapp:hover::before {
	background: linear-gradient(90deg, transparent, rgba(37,211,102,0.05), transparent);
}

.contacto-horizontal-item i {
	font-size: 2.2rem;
	color: #8d2216;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.contacto-horizontal-item:hover i {
	transform: scale(1.1);
}

.contacto-horizontal-item.whatsapp i {
	color: #25D366;
}

.contacto-horizontal-item div {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.contacto-horizontal-item strong {
	font-size: 0.9rem;
	font-weight: 700;
	color: #1a1a1a;
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.contacto-horizontal-item span {
	font-size: 1rem;
	color: #666;
	font-weight: 500;
}

/* Info compacta grid */
.info-compacta-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 30px;
	background: linear-gradient(135deg, rgba(141,34,22,0.04) 0%, rgba(141,34,22,0.02) 100%);
	border-radius: 16px;
	border: 2px solid rgba(141,34,22,0.12);
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
}

.info-compacta-grid::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%238d2216" opacity="0.05"/></svg>');
	pointer-events: none;
}

.info-compacta-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1rem;
	color: #495057;
	position: relative;
	padding: 8px 0;
}

.info-compacta-item i {
	font-size: 1.5rem;
	color: #8d2216;
	flex-shrink: 0;
	opacity: 0.9;
}

.info-compacta-item strong {
	color: #8d2216;
	font-weight: 700;
}

/* Acciones de reserva */
.acciones-reserva {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
}

.btn-reservar-premium {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 20px 45px;
	background: linear-gradient(135deg, #8d2216 0%, #b32a1b 100%);
	color: white;
	border: none;
	border-radius: 14px;
	font-size: 1.15rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 25px rgba(141, 34, 22, 0.3);
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.btn-reservar-premium::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.6s;
}

.btn-reservar-premium:hover::before {
	left: 100%;
}

.btn-reservar-premium:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 35px rgba(141, 34, 22, 0.4);
	background: linear-gradient(135deg, #b32a1b 0%, #c93d2a 100%);
	color: white !important;
	text-decoration: none;
}

.btn-reservar-premium:hover span,
.btn-reservar-premium:hover i {
	color: white !important;
}

.btn-booking-externo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 20px 45px;
	background: linear-gradient(135deg, #003580 0%, #0057b8 100%);
	color: white;
	border: none;
	border-radius: 14px;
	font-size: 1.15rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 25px rgba(0, 53, 128, 0.3);
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.btn-booking-externo::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.6s;
}

.btn-booking-externo:hover::before {
	left: 100%;
}

.btn-booking-externo:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 35px rgba(0, 53, 128, 0.4);
	background: linear-gradient(135deg, #0057b8 0%, #006dcc 100%);
	color: white;
	text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
	.bloque-reservas-premium {
		padding: 60px 0;
	}
	
	.titulo-reservas-compacto {
		font-size: 2.3rem;
	}
	
	.card-reservas-compacta {
		padding: 40px;
	}
	
	.contactos-grid-horizontal {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.info-compacta-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
		padding: 25px;
	}
}

@media (max-width: 768px) {
	.bloque-reservas-premium {
		padding: 50px 0;
	}
	
	.titulo-reservas-compacto {
		font-size: 2rem;
		letter-spacing: -0.5px;
	}
	
	.subtitulo-reservas-compacto {
		font-size: 1.05rem;
		margin-bottom: 25px;
	}
	
	.card-reservas-compacta {
		padding: 35px 25px;
		border-radius: 20px;
	}
	
	.contactos-grid-horizontal {
		gap: 15px;
	}
	
	.contacto-horizontal-item {
		padding: 20px;
	}
	
	.info-compacta-grid {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 20px;
	}
	
	.acciones-reserva {
		flex-direction: column;
		width: 100%;
		gap: 15px;
	}
	
	.btn-reservar-premium,
	.btn-booking-externo {
		width: 100%;
		padding: 18px 35px;
		font-size: 1.05rem;
	}
}

@media (max-width: 576px) {
	.bloque-reservas-premium {
		padding: 40px 0;
	}
	
	.titulo-reservas-compacto {
		font-size: 1.75rem;
	}
	
	.subtitulo-reservas-compacto {
		font-size: 1rem;
		margin-bottom: 20px;
	}
	
	.card-reservas-compacta {
		padding: 25px 20px;
		border-radius: 16px;
	}
	
	.contacto-horizontal-item {
		padding: 18px;
		gap: 15px;
	}
	
	.contacto-horizontal-item i {
		font-size: 1.8rem;
	}
	
	.contacto-horizontal-item strong {
		font-size: 0.85rem;
	}
	
	.contacto-horizontal-item span {
		font-size: 0.95rem;
	}
	
	.info-compacta-grid {
		padding: 18px;
	}
	
	.btn-reservar-premium,
	.btn-booking-externo {
		padding: 16px 30px;
		font-size: 1rem;
	}
}

/* ===================================================
   SECCIÓN ENTORNO PREMIUM
   =================================================== */

.bloque-entorno-premium {
	background: rgba(0,0,0,0.12);
	padding: 80px 0 70px 0;
	position: relative;
	border-top: 1px solid rgba(0,0,0,0.08);
	border-bottom: 1px solid rgba(0,0,0,0.08);
	overflow: hidden;
}

.bloque-entorno-premium::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, #8d2216, #b32a1b, #8d2216, transparent);
	opacity: 0.5;
	box-shadow: 0 2px 8px rgba(141,34,22,0.3);
}

.bloque-entorno-premium::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="50" height="50" xmlns="http://www.w3.org/2000/svg"><circle cx="25" cy="25" r="1" fill="%23000000" opacity="0.02"/></svg>');
	pointer-events: none;
}

.titulo-entorno-premium {
	font-size: 3.2rem;
	font-weight: 900;
	color: #2c2c2c;
	margin: 0 0 20px 0;
	letter-spacing: -1.5px;
	text-shadow: 0 3px 8px rgba(0,0,0,0.08);
	position: relative;
}

.linea-decorativa-entorno {
	width: 120px;
	height: 5px;
	background: linear-gradient(90deg, 
		rgba(141,34,22,0.2) 0%, 
		#8d2216 25%, 
		#b32a1b 50%, 
		#8d2216 75%, 
		rgba(141,34,22,0.2) 100%
	);
	margin: 0 auto 25px auto;
	border-radius: 3px;
	box-shadow: 0 3px 10px rgba(141,34,22,0.35);
	position: relative;
}

.linea-decorativa-entorno::before {
	content: '◆';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #8d2216;
	font-size: 0.9rem;
	text-shadow: 0 0 8px rgba(141,34,22,0.5);
}

.subtitulo-entorno-premium {
	font-size: 1.35rem;
	color: #555;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.descripcion-entorno-premium {
	max-width: 950px;
	margin: 80px auto 0 auto;
	background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
	padding: 50px 55px 45px 55px;
	border-radius: 24px;
	box-shadow: 
		0 15px 50px rgba(0,0,0,0.12), 
		0 5px 20px rgba(141,34,22,0.08),
		inset 0 1px 0 rgba(255,255,255,0.8);
	position: relative;
	border: 2px solid rgba(141,34,22,0.1);
	overflow: visible;
}

.descripcion-entorno-premium::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, transparent, #8d2216, #b32a1b, #8d2216, transparent);
}

.descripcion-entorno-premium::after {
	content: '';
	position: absolute;
	top: -30px;
	right: -30px;
	width: 150px;
	height: 150px;
	background: radial-gradient(circle, rgba(141,34,22,0.06) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.icono-location-entorno {
	position: absolute;
	top: -32px;
	left: 50%;
	transform: translateX(-50%);
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #8d2216 0%, #b32a1b 50%, #c93d2a 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.8rem;
	box-shadow: 
		0 6px 20px rgba(141, 34, 22, 0.4), 
		0 0 0 5px white, 
		0 0 0 7px rgba(141,34,22,0.2);
	animation: pulse-location 3s ease-in-out infinite;
}

@keyframes pulse-location {
	0%, 100% { 
		transform: translateX(-50%) scale(1); 
		box-shadow: 
			0 6px 20px rgba(141, 34, 22, 0.4), 
			0 0 0 5px white, 
			0 0 0 7px rgba(141,34,22,0.2);
	}
	50% { 
		transform: translateX(-50%) scale(1.05); 
		box-shadow: 
			0 8px 25px rgba(141, 34, 22, 0.5), 
			0 0 0 5px white, 
			0 0 0 9px rgba(141,34,22,0.3);
	}
}

.descripcion-entorno-premium p {
	font-size: 1.1rem;
	line-height: 1.9;
	color: #3d3d3d;
	margin: 0;
	text-align: center;
	font-weight: 500;
	position: relative;
	z-index: 1;
}

/* Carousel Entorno Premium */
.carousel-entorno-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 15px;
}

.carousel-entorno-premium {
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 
		0 25px 70px rgba(0,0,0,0.25), 
		0 10px 35px rgba(141,34,22,0.18),
		0 0 0 1px rgba(0,0,0,0.1);
	position: relative;
	border: 5px solid white;
}

.carousel-entorno-premium::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 23px;
	box-shadow: inset 0 0 50px rgba(0,0,0,0.15);
	pointer-events: none;
	z-index: 12;
}

.carousel-inner-premium .carousel-item {
	height: 720px;
	background-size: cover;
	background-position: center;
	position: relative;
	transition: transform 0.8s ease;
}

.carousel-inner-premium .carousel-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
	pointer-events: none;
	transition: background 0.3s ease;
}

.carousel-inner-premium .carousel-item:hover::before {
	background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.4) 100%);
}

.carousel-indicators-premium {
	bottom: 35px;
	z-index: 15;
	margin: 0;
	padding: 14px 24px;
	background: rgba(0,0,0,0.35);
	backdrop-filter: blur(12px);
	border-radius: 35px;
	display: inline-flex;
	left: 50%;
	transform: translateX(-50%);
	width: auto;
}

.carousel-indicators-premium li {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	margin: 0 8px;
	background: rgba(255,255,255,0.45);
	border: 2px solid rgba(255,255,255,0.7);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.carousel-indicators-premium li:hover {
	background: rgba(255,255,255,0.75);
	border-color: white;
	transform: scale(1.25);
}

.carousel-indicators-premium li.active {
	width: 55px;
	border-radius: 10px;
	background: linear-gradient(90deg, #8d2216, #b32a1b, #c93d2a);
	border-color: white;
	box-shadow: 0 3px 10px rgba(141,34,22,0.6);
	transform: scale(1);
}

.carousel-control-premium {
	width: 75px;
	height: 75px;
	background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.88) 100%);
	border: 3px solid white;
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0.88;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 30px rgba(0,0,0,0.3);
	z-index: 15;
}

.carousel-control-premium:hover {
	opacity: 1;
	background: linear-gradient(135deg, #8d2216 0%, #b32a1b 100%);
	transform: translateY(-50%) scale(1.18);
	box-shadow: 
		0 10px 35px rgba(0,0,0,0.35),
		0 0 0 5px rgba(141,34,22,0.25);
}

.carousel-control-premium i {
	color: #8d2216;
	font-size: 1.8rem;
	transition: all 0.3s;
}

.carousel-control-premium:hover i {
	color: white;
	transform: scale(1.15);
}

.carousel-control-prev.carousel-control-premium {
	left: 38px;
}

.carousel-control-next.carousel-control-premium {
	right: 38px;
}

/* Sección Qué Ver Cerca Premium */
.bloque-que-ver-premium {
	padding: 80px 0;
	background: white;
}

.titulo-que-ver-premium {
	font-size: 2.5rem;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0 0 15px 0;
	letter-spacing: -0.8px;
}

.linea-decorativa-que-ver {
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, #8d2216, #b32a1b);
	margin: 0 auto;
	border-radius: 2px;
}

/* Mejorar las tarjetas de puntos turísticos */
.punto {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 2px solid #f0f0f0;
}

.punto:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.15);
	border-color: #8d2216;
}

.punto .foto {
	height: 250px;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.punto .foto::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
	transition: all 0.3s ease;
}

.punto:hover .foto::before {
	background: linear-gradient(180deg, transparent 0%, rgba(141,34,22,0.4) 100%);
}

.punto .titulo {
	font-size: 1.3rem;
	font-weight: 700;
	color: #1a1a1a;
	padding: 20px 20px 10px 20px;
	margin: 0;
}

.punto .subtitulo {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #666;
	padding: 0 20px 25px 20px;
	flex: 1;
}

.punto .distancia {
	padding: 12px 20px;
	background: linear-gradient(135deg, rgba(141,34,22,0.05) 0%, rgba(141,34,22,0.02) 100%);
	color: #8d2216;
	font-weight: 600;
	font-size: 0.9rem;
	border-top: 1px solid rgba(141,34,22,0.1);
}

.punto .distancia i {
	margin-right: 5px;
}

/* Responsive Entorno */
@media (max-width: 992px) {
	.titulo-entorno-premium {
		font-size: 2.3rem;
	}
	
	.carousel-inner-premium .carousel-item {
		height: 500px;
	}
	
	.descripcion-entorno-premium {
		padding: 30px 35px;
	}
}

@media (max-width: 768px) {
	.bloque-entorno-premium {
		padding: 50px 0 40px 0;
	}
	
	.titulo-entorno-premium {
		font-size: 2rem;
		letter-spacing: -0.5px;
	}
	
	.subtitulo-entorno-premium {
		font-size: 1.1rem;
	}
	
	.descripcion-entorno-premium {
		padding: 25px;
		margin-top: 30px;
	}
	
	.descripcion-entorno-premium p {
		font-size: 1rem;
	}
	
	.carousel-inner-premium .carousel-item {
		height: 400px;
	}
	
	.carousel-control-premium {
		width: 50px;
		height: 50px;
	}
	
	.carousel-control-prev.carousel-control-premium {
		left: 15px;
	}
	
	.carousel-control-next.carousel-control-premium {
		right: 15px;
	}
	
	.bloque-que-ver-premium {
		padding: 60px 0;
	}
	
	.titulo-que-ver-premium {
		font-size: 2rem;
	}
	
	.punto .foto {
		height: 220px;
	}
}

@media (max-width: 576px) {
	.bloque-entorno-premium {
		padding: 40px 0 30px 0;
	}
	
	.titulo-entorno-premium {
		font-size: 1.75rem;
	}
	
	.subtitulo-entorno-premium {
		font-size: 1rem;
	}
	
	.descripcion-entorno-premium {
		padding: 20px;
		border-radius: 16px;
	}
	
	.icono-location-entorno {
		width: 45px;
		height: 45px;
		font-size: 1.3rem;
		top: -22px;
	}
	
	.descripcion-entorno-premium p {
		font-size: 0.95rem;
		line-height: 1.7;
	}
	
	.carousel-inner-premium .carousel-item {
		height: 300px;
	}
	
	.carousel-control-premium {
		width: 45px;
		height: 45px;
	}
	
	.titulo-que-ver-premium {
		font-size: 1.75rem;
	}
	
	.punto .foto {
		height: 200px;
	}
	
	.punto .titulo {
		font-size: 1.15rem;
		padding: 15px 15px 8px 15px;
	}
	
	.punto .subtitulo {
		font-size: 0.9rem;
		padding: 0 15px 20px 15px;
	}
}

/* Calendario wrapper */
.calendario-wrapper {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-radius: 16px;
	padding: 25px;
	border: 2px solid #e9ecef;
	height: 100%;
}

.header-calendario {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #e9ecef;
}

.header-calendario i {
	font-size: 1.8rem;
	color: #8d2216;
}

.header-calendario h4 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0;
}

/* Calendario container */
.calendario-container {
	margin: 20px 0;
}

/* Booking.com CTA Section */
.booking-cta-container {
	margin-top: 30px;
	text-align: center;
}

.booking-cta-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #00a651 0%, #008a43 100%);
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 15px;
	box-shadow: 0 2px 8px rgba(0, 166, 81, 0.3);
}

.booking-cta-badge i {
	font-size: 1rem;
}

.btn-booking-premium {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 18px 24px;
	background: linear-gradient(135deg, #003580 0%, #0057b8 100%);
	color: white;
	text-decoration: none;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 6px 20px rgba(0, 53, 128, 0.25);
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.btn-booking-premium::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s;
}

.btn-booking-premium:hover::before {
	left: 100%;
}

.btn-booking-premium:hover {
	background: linear-gradient(135deg, #0057b8 0%, #006dcc 100%);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 53, 128, 0.4);
	color: white;
	text-decoration: none;
	border-color: rgba(255,255,255,0.2);
}

.booking-logo-text {
	display: flex;
	align-items: center;
	gap: 12px;
}

.booking-logo-text i {
	font-size: 1.5rem;
}

.booking-arrow {
	display: flex;
	align-items: center;
	transition: transform 0.3s ease;
}

.btn-booking-premium:hover .booking-arrow {
	transform: translateX(5px);
}

.booking-info-text {
	margin-top: 12px;
	font-size: 0.85rem;
	color: #666;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.booking-info-text i {
	color: #00a651;
	font-size: 0.9rem;
}

/* Contacto para reservas */
.contacto-reserva-wrapper {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	padding: 25px;
	border-radius: 16px;
	border: 2px solid #e9ecef;
}

.header-contacto {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #e9ecef;
}

.header-contacto i {
	font-size: 1.8rem;
	color: #8d2216;
}

.header-contacto h4 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0;
}

.opciones-contacto {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 20px;
}

.opcion-contacto-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background: white;
	border-radius: 12px;
	border: 2px solid #e9ecef;
	text-decoration: none;
	color: #1a1a1a;
	transition: all 0.3s ease;
}

.opcion-contacto-item:hover {
	border-color: #8d2216;
	transform: translateX(5px);
	box-shadow: 0 4px 15px rgba(141, 34, 22, 0.1);
	text-decoration: none;
	color: #1a1a1a;
}

.icono-opcion {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #8d2216 0%, #b32a1b 100%);
	border-radius: 12px;
	color: white;
	font-size: 1.3rem;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.opcion-contacto-item:hover .icono-opcion {
	transform: scale(1.1) rotate(5deg);
}

.texto-opcion {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.texto-opcion strong {
	font-size: 1rem;
	font-weight: 700;
	color: #1a1a1a;
}

.texto-opcion span {
	font-size: 0.9rem;
	color: #666;
}

.nota-calendario {
	display: flex;
	align-items: center;
	gap: 10px;
	background: white;
	padding: 12px 15px;
	border-radius: 8px;
	border-left: 3px solid #8d2216;
	margin-top: 15px;
}

.nota-calendario i {
	color: #8d2216;
	font-size: 1.1rem;
}

.nota-calendario span {
	font-size: 0.9rem;
	color: #495057;
	line-height: 1.4;
}

/* Info reservas wrapper */
.info-reservas-wrapper {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.header-info-reservas {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid #f1f3f5;
}

.header-info-reservas i {
	font-size: 1.8rem;
	color: #8d2216;
}

.header-info-reservas h4 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0;
}

/* Características de reserva */
.caracteristicas-reserva {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-radius: 12px;
	padding: 20px;
}

.item-caracteristica {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background: white;
	border-radius: 10px;
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
}

.item-caracteristica:hover {
	border-color: #8d2216;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(141, 34, 22, 0.1);
}

.item-caracteristica i {
	font-size: 1.8rem;
	color: #8d2216;
	min-width: 35px;
}

.item-caracteristica div {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.item-caracteristica strong {
	font-size: 0.95rem;
	color: #1a1a1a;
	font-weight: 700;
}

.item-caracteristica span {
	font-size: 0.85rem;
	color: #6c757d;
	line-height: 1.3;
}

/* Contenedor de tarifas */
.tarifas-container {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 25px;
	min-height: 150px;
}

/* Ventajas de reservar */
.ventajas-reserva {
	background: linear-gradient(135deg, rgba(141, 34, 22, 0.05), rgba(179, 42, 27, 0.08));
	border-radius: 12px;
	padding: 25px;
	border-left: 4px solid #8d2216;
}

.ventajas-reserva h5 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.ventajas-reserva h5 i {
	color: #8d2216;
}

.ventajas-reserva ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.ventajas-reserva li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
	color: #495057;
	font-weight: 500;
}

.ventajas-reserva li i {
	color: #8d2216;
	font-size: 1rem;
}

/* Botón reservar premium */
.btn-reservar-premium {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	background: linear-gradient(135deg, #8d2216 0%, #b32a1b 100%);
	color: white !important;
	padding: 20px 50px;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 25px rgba(141, 34, 22, 0.3);
	position: relative;
	overflow: hidden;
}

.btn-reservar-premium span,
.btn-reservar-premium i {
	color: white !important;
	position: relative;
	z-index: 2;
}

.btn-reservar-premium::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #a02819 0%, #c93020 100%);
	transition: left 0.5s ease;
	z-index: 0;
}

.btn-reservar-premium:hover::before {
	left: 0;
}

.btn-reservar-premium:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 35px rgba(141, 34, 22, 0.4);
	color: white !important;
}

.btn-reservar-premium:hover span,
.btn-reservar-premium:hover i {
	color: white !important;
}

.btn-texto-reserva,
.btn-icono-reserva {
	position: relative;
	z-index: 1;
	color: white;
}

.btn-icono-reserva {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	background: rgba(255,255,255,0.2);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.btn-reservar-premium:hover .btn-icono-reserva {
	background: rgba(255,255,255,0.3);
	transform: translateX(5px);
}

.texto-ayuda-reserva {
	font-size: 0.95rem;
	color: #6c757d;
	margin: 0;
}

.texto-ayuda-reserva i {
	color: #8d2216;
	margin-right: 5px;
}

/* Responsive Reservas */
@media (max-width: 992px) {
	.titulo-reservas {
		font-size: 2.5rem;
	}
	
	.card-reservas-premium {
		padding: 35px;
	}
	
	.calendario-wrapper {
		margin-bottom: 30px;
	}
	
	.ventajas-reserva ul {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.titulo-reservas {
		font-size: 2rem;
	}
	
	.subtitulo-reservas {
		font-size: 1.05rem;
	}
	
	.card-reservas-premium {
		padding: 25px;
	}
	
	.calendario-wrapper {
		padding: 20px;
	}
	
	.caracteristicas-reserva {
		padding: 15px;
	}
	
	.item-caracteristica {
		padding: 12px;
	}
	
	.ventajas-reserva {
		padding: 20px;
	}
	
	.btn-reservar-premium {
		padding: 18px 40px;
		font-size: 1.1rem;
	}
}

@media (max-width: 576px) {
	.titulo-reservas {
		font-size: 1.75rem;
	}
	
	.badge-reservas {
		font-size: 0.75rem;
		padding: 8px 20px;
	}
	
	.card-reservas-premium {
		padding: 20px;
	}
	
	.header-calendario h4,
	.header-info-reservas h4 {
		font-size: 1.1rem;
	}
	
	.item-caracteristica {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	
	.btn-reservar-premium {
		padding: 16px 35px;
		font-size: 1rem;
	}
	
	.texto-ayuda-reserva {
		font-size: 0.85rem;
	}
}

/* ===================================================
   MODAL RESERVA PREMIUM
   =================================================== */

.modal-reserva-content {
	border: none;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-reserva-header {
	background: linear-gradient(135deg, #8d2216 0%, #b32a1b 100%);
	color: white;
	padding: 30px;
	border: none;
}

.modal-reserva-header .modal-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: white;
	margin: 0;
}

.modal-reserva-header p {
	font-size: 0.95rem;
	margin: 0;
}

.modal-reserva-body {
	background: #f8f9fa;
}

.contacto-modal-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.contacto-modal-card {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px;
	background: white;
	border-radius: 12px;
	border: 2px solid #e9ecef;
	text-decoration: none;
	color: #1a1a1a;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.contacto-modal-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(141,34,22,0.05), transparent);
	transition: left 0.5s;
}

.contacto-modal-card:hover::before {
	left: 100%;
}

.contacto-modal-card:hover {
	border-color: #8d2216;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(141, 34, 22, 0.15);
	text-decoration: none;
	color: #1a1a1a;
}

.contacto-modal-card.booking {
	background: linear-gradient(135deg, #003580 0%, #0057b8 100%);
	border-color: #003580;
	color: white;
}

.contacto-modal-card.booking:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 53, 128, 0.3);
	color: white;
}

.contacto-modal-icono {
	width: 55px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #8d2216 0%, #b32a1b 100%);
	border-radius: 12px;
	color: white;
	font-size: 1.5rem;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.contacto-modal-icono.whatsapp {
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contacto-modal-icono.booking-icono {
	background: white;
	color: #003580;
}

.contacto-modal-card:hover .contacto-modal-icono {
	transform: scale(1.1) rotate(5deg);
}

.contacto-modal-texto {
	display: flex;
	flex-direction: column;
	gap: 3px;
	flex: 1;
}

.contacto-modal-texto strong {
	font-size: 1.05rem;
	font-weight: 700;
}

.contacto-modal-texto span {
	font-size: 0.9rem;
	opacity: 0.8;
}

.contacto-modal-card.booking .contacto-modal-texto strong,
.contacto-modal-card.booking .contacto-modal-texto span {
	color: white;
}

.contacto-modal-flecha {
	font-size: 1.2rem;
	opacity: 0.5;
	transition: all 0.3s ease;
}

.contacto-modal-card:hover .contacto-modal-flecha {
	opacity: 1;
	transform: translateX(5px);
}

.contacto-modal-card.booking .contacto-modal-flecha {
	color: white;
}

.info-adicional-modal {
	background: white;
	padding: 20px;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 20px;
}

.info-item-modal {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.95rem;
	color: #495057;
}

.info-item-modal i {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #8d2216 0%, #b32a1b 100%);
	border-radius: 8px;
	color: white;
	font-size: 0.9rem;
	flex-shrink: 0;
}

.nota-importante-modal {
	background: linear-gradient(135deg, #fff3cd 0%, #fff9e6 100%);
	border-left: 4px solid #ffc107;
	padding: 20px;
	border-radius: 12px;
	display: flex;
	gap: 15px;
	align-items: flex-start;
}

.nota-importante-modal i {
	font-size: 1.5rem;
	color: #856404;
	flex-shrink: 0;
	margin-top: 2px;
}

.nota-importante-modal strong {
	color: #856404;
	font-size: 1rem;
}

.nota-importante-modal p {
	font-size: 0.9rem;
	color: #856404;
	line-height: 1.6;
	margin-top: 5px;
}

/* Responsive Modal */
@media (max-width: 768px) {
	.contacto-modal-grid {
		grid-template-columns: 1fr;
	}
	
	.modal-reserva-header {
		padding: 25px 20px;
	}
	
	.modal-reserva-header .modal-title {
		font-size: 1.5rem;
	}
	
	.contacto-modal-card {
		padding: 15px;
	}
	
	.contacto-modal-icono {
		width: 50px;
		height: 50px;
		font-size: 1.3rem;
	}
}

@media (max-width: 576px) {
	.modal-reserva-header .modal-title {
		font-size: 1.3rem;
	}
	
	.contacto-modal-texto strong {
		font-size: 0.95rem;
	}
	
	.contacto-modal-texto span {
		font-size: 0.85rem;
	}
}

/* ===================================================
   OCULTAR SPINNERS Y LOADERS
   =================================================== */

/* Ocultar todos los spinners de carga */
.spinner,
.loader,
.loading,
[class*="spinner"],
[class*="loader"],
[class*="loading"],
[id*="spinner"],
[id*="loader"],
[id*="loading"] {
	display: none !important;
	opacity: 0 !important;
	visibility: hidden !important;
}

/* Ocultar spinners específicos de la visita virtual */
.rdVvirtual .spinner,
.rdVvirtual .loader,
.rdVV_panorama .spinner,
.rdVV_panorama .loader,
#rdVvirtual-container .spinner,
#rdVvirtual-container .loader {
	display: none !important;
}

/* ===================================================
   BOTONES DE VISITA VIRTUAL - RESPONSIVE
   =================================================== */

/* Contenedor de botones de la visita virtual */
.rdVV_botones,
.rdVV_nav,
[class*="rdVV"] button,
[class*="rdVV"] .button,
.rdVvirtual .botones,
.rdVvirtual .nav-buttons {
	display: flex !important;
	flex-wrap: nowrap !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	-webkit-overflow-scrolling: touch !important;
	gap: 8px !important;
	padding: 10px !important;
	white-space: nowrap !important;
	position: relative !important;
	z-index: 50 !important;
	background: white !important;
}

/* Scroll horizontal suave */
.rdVV_botones::-webkit-scrollbar,
.rdVV_nav::-webkit-scrollbar {
	height: 6px;
}

.rdVV_botones::-webkit-scrollbar-track,
.rdVV_nav::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

.rdVV_botones::-webkit-scrollbar-thumb,
.rdVV_nav::-webkit-scrollbar-thumb {
	background: #8d2216;
	border-radius: 10px;
}

/* Botones individuales de la visita virtual */
.rdVV_botones button,
.rdVV_nav button,
[class*="rdVV"] button {
	min-width: 120px !important;
	flex-shrink: 0 !important;
	padding: 10px 16px !important;
	font-size: 13px !important;
	white-space: nowrap !important;
	border-radius: 8px !important;
	background: linear-gradient(135deg, #8d2216, #b32a1b) !important;
	color: white !important;
	border: none !important;
	box-shadow: 0 2px 8px rgba(141, 34, 22, 0.3) !important;
	transition: all 0.3s ease !important;
}

.rdVV_botones button:hover,
.rdVV_nav button:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 4px 12px rgba(141, 34, 22, 0.4) !important;
}

@media (max-width: 768px) {
	/* En móvil, hacer scroll horizontal */
	.rdVV_botones,
	.rdVV_nav {
		justify-content: flex-start !important;
		padding: 10px 15px !important;
	}
	
	.rdVV_botones button,
	.rdVV_nav button {
		min-width: 100px !important;
		font-size: 12px !important;
		padding: 8px 12px !important;
	}
}






