.consorcio-content{
    max-width: 960px;
    margin: 40px auto;
    background-color: white;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.consorcio-content .header p{
    color: #5f181e;
}

.consorcio-content .content p {
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.consorcio-content .gallery {
    margin-top: 40px;
}

.consorcio-content .photo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.consorcio-content .photo-grid div {
    flex: 0 0 120px;
}

.consorcio-content .photo-grid img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.consorcio-content .photo-grid img:hover {
    transform: scale(1.05);
    cursor: pointer;
}
