/* ===============================================
   ESTILOS ADICIONALES PREMIUM PARA EL MODAL
   =============================================== */

/* Efecto shimmer dorado para el borde del contenedor */
@keyframes shimmerEffect {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Borde animado premium */
.espacio-modal-container {
    position: relative;
}

.espacio-modal-container::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        transparent 30%,
        var(--dorado-sutil) 50%,
        transparent 70%);
    background-size: 200% 100%;
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    animation: shimmerEffect 3s linear infinite;
}

.espacio-modal-container:hover::after {
    opacity: 0.3;
}

/* Efecto de partículas doradas flotantes */
@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100px) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

.particle-effect {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--dorado-sutil);
    border-radius: 50%;
    animation: floatParticle 6s linear infinite;
    pointer-events: none;
}

/* Mejoras adicionales para el Swiper */
.espacioSwiper {
    position: relative;
    overflow: visible;
}

.espacioSwiper::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center,
        rgba(201, 169, 97, 0.1) 0%,
        transparent 70%);
    filter: blur(10px);
}

/* Efecto hover elegante para las imágenes */
.espacioSwiper .swiper-slide img:hover {
    transform: scale(1.05);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(201, 169, 97, 0.2);
}

/* Badge premium para el tipo de espacio */
.espacio-type-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--dorado-brillante), var(--dorado-sutil));
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow:
        0 4px 15px rgba(201, 169, 97, 0.3),
        0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 5;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Contador de imágenes elegante */
.image-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--dorado-sutil);
    border-radius: 25px;
    color: var(--marron-elegante);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Efecto de respiración para elementos importantes - DESACTIVADO */
@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Animación breathe removida - el modal ahora se queda quieto */
.espacio-modal-container {
    /* animation: breathe 4s ease-in-out infinite; */
    /* Removido para mantener el modal estático */
}

/* Mejora del botón de cerrar con efecto magnético */
.espacio-modal-close {
    position: fixed;
    top: 30px;
    right: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.espacio-modal-close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.3s, height 0.3s;
}

.espacio-modal-close:hover::before {
    width: 80px;
    height: 80px;
}

/* Textura de fondo elegante para el overlay */
.espacio-modal-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(201, 169, 97, 0.02) 35px,
            rgba(201, 169, 97, 0.02) 70px);
    pointer-events: none;
}

/* Responsive Premium */
@media (max-width: 768px) {
    .espacio-type-badge {
        top: 10px;
        left: 10px;
        padding: 6px 15px;
        font-size: 0.75rem;
    }

    .image-counter {
        bottom: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    /* Animación breathe desactivada también en móviles
    @keyframes breathe {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.01);
        }
    } */
}