

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Tres columnas */
    gap: 1rem;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lined {
    display: flex;
    align-items: center;
    text-align: center;
    color: #2F4F2F;
    font-size: 24px;
    font-weight: bold;
}

.lined::before, .lined::after {
    /* width: 7rem; */
    margin: 0 15px;
    content: '';
    flex-grow: 1;
    height: 2px;
    background-color: currentColor;
}




.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    /* border-radius: 10px; */
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Asegura que sea responsive */
@media (max-width: 900px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr); /* Dos columnas en pantallas medianas */
    }
}

@media (max-width: 600px) {
    .gallery {
        grid-template-columns: 1fr; /* Una columna en pantallas pequeñas */
    }
}
