/* css/style.css */
* {
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
}

/* ... (Mantén tus estilos existentes de hero, navbar, etc) ... */

/* ESTILOS DE GALERÍA (NUEVO) */
.gallery-preview-img {
    height: 180px; /* Altura fija para uniformidad */
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-preview-img:hover {
    transform: scale(1.03);
    filter: brightness(0.9);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 191, 255, 0.8); /* Azul marca */
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    transition: opacity 0.3s ease;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    font-size: 0.875rem;
    pointer-events: none; /* Dejar pasar el clic a la imagen */
}

.group:hover .gallery-overlay {
    opacity: 1;
}

/* Ajuste del Modal */
.modal-box-gallery {
    max-width: 90vw;
    width: 1200px;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}
