 /* Custom Font Setup */

        h1, h2, h3, h4, h5, h6, .serif {
            font-family: 'Cormorant Garamond', serif;
        }
        
 /* Custom scrollbar for a sleeker look */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #fafafa;
        }
        ::-webkit-scrollbar-thumb {
            background: #d4d4d8;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #a1a1aa;
        }
        /* Parallax effect base */
        /* Video Parallax Background */
        .parallax-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            background-color: #050505;
        }

        .parallax-bg video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
        }

        /* Overlay para asegurar legibilidad */
        .parallax-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.8) 100%);
            z-index: -1;
        }

        /* Capa de contenido para ocultar el video al scrollear */
        .content-layer {
            position: relative;
            z-index: 10;
            background-color: #050505;
        }
        /* Gallery grid hover effect */
        .group:hover .group-hover\:scale-105 {
            transform: scale(1.05);
        }

        .glass-nav {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

            .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            left: 30px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 1000; /* Para que siempre esté encima de todo */
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: pulse-green 2s infinite;
        }

        .whatsapp-float:hover {
            background-color: #128c7e;
            color: #FFF;
            transform: scale(1.1);
        }

        /* Animación de latido suave */
        @keyframes pulse-green {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Ajuste para móviles: un poco más pequeño y pegado al borde */
        @media (max-width: 767px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                left: 20px;
                font-size: 25px;
            }
    }  

    .back-top-btn {
        position: fixed;
        bottom: 30px;
        right: -36px;
        background-color: #d4af37;
        color: #f4efeb;
        padding: 10px;
        border-radius: 50%;
        opacity: 0;
        visibility: hidden;
        transition: 0.25s ease;
        animation: pulse-yellow 2s infinite;
    }

    /* Animación de latido suave */
        @keyframes pulse-yellow {
            0% {
                box-shadow: 0 0 0 0 #d4af37b3;
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

    .back-top-btn.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(-51px);
    }
