/* Grid estático para Acervo em Destaque - 3x3 */

.obras-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.obras-grid-container .section-title {
    text-align: center;
    font-size: 2rem;
    color: #523827;
    margin-bottom: 40px;
    font-weight: bold;
}

.obras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.obra-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.obra-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.obra-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.obra-info {
    padding: 20px;
    text-align: center;
}

.obra-info h4 {
    font-size: 1.2rem;
    color: #523827;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.obra-info p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Responsivo */
@media (max-width: 1024px) {
    .obras-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .obras-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .obra-image {
        height: 250px;
    }
    
    .obras-grid-container {
        padding: 30px 15px;
    }
}
