@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { background-color: #eff6ff; }

/* Efectos de Hover y Galería */
.gallery-engine:hover .main-view {
    filter: brightness(0.8);
    transform: scale(1.02);
    cursor: zoom-in;
}

.main-view {
    transition: all 0.4s ease-in-out;
}

/* Modal Activo */
#modal-galeria.active {
    display: flex;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile Nav Overlay Siempre visible */
@media (max-width: 768px) {
    .nav-overlay { opacity: 1 !important; }
}
@media (max-width: 767px) {
    #mobile-menu.flex {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        border-top: 1px solid #f0f0f0;
        animation: slideDown 0.3s ease-out;
    }
}

@keyframes slideDown {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}