.glass-nav {
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
}

.hero-bg {
    background-image: linear-gradient(rgba(44, 74, 62, 0.7), rgba(44, 74, 62, 0.5)), url('../assets/img/banner-principal.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
/* Fallback para la vista previa */
@supports not (background-image: url('../assets/img/banner-principal.jpg')) {
    .hero-bg {
        background-image: linear-gradient(rgba(44, 74, 62, 0.7), rgba(44, 74, 62, 0.5)), url('../assets/img/portada-alternativa.jpg');
    }
}

.hide-scrollbar::-webkit-scrollbar { display: none; }
.gallery-item { transition: all 0.3s ease; }
.gallery-item.hidden { display: none; }

/* Botones flotantes */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.fab:hover { transform: scale(1.1); }
.fab-wsp { background-color: #25D366; }
.fab-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.fab-fb { background-color: #1877F2; }

/* Links del navbar activos */
.nav-link.active {
    color: #d4a373;
    font-weight: 600;
}
.nav-link.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #d4a373;
    position: absolute;
    bottom: -4px;
}

