.iconw{
color: green;
}
a{
    text-decoration: none;
    color: #111;
}
.galeria-mamparas{
    padding: 80px 20px;
    background: #f5f7fa;
    font-family: Arial, sans-serif;
}

.contenedor{
    max-width: 1200px;
    margin: auto;
}

.titulo-section{
    text-align: center;
    margin-bottom: 50px;
}

.titulo-section h2{
    font-size: 40px;
    color: #111;
    margin-bottom: 15px;
}

.titulo-section p{
    font-size: 18px;
    color: #555;
    max-width: 850px;
    margin: auto;
    line-height: 1.7;
}

.grid-galeria{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 25px;
}

.card{
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.card:hover{
    transform: translateY(-8px);
}

.card img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.contenido{
    padding: 25px;
}

.contenido h3{
    font-size: 24px;
    margin-bottom: 12px;
    color: #111;
}

.contenido p{
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .titulo-section h2{
        font-size: 30px;
    }

    .titulo-section p{
        font-size: 16px;
    }

    .card img{
        height: 220px;
    }

}