/* ========== BANNER ========== */
.page-banner-estrutura {
    background: linear-gradient(135deg, #F3E6D8 0%, #e8d5c0 50%, #fef9e7 100%);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner-estrutura::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 106, 61, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-banner-estrutura::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 106, 61, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.banner-etiqueta-estrutura {
    display: inline-block;
    background: white;
    color: #C96A3D;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-banner-estrutura h1 {
    font-size: 3.5rem;
    color: #C96A3D;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-banner-estrutura p {
    font-size: 1.2rem;
    color: #8b5a3c;
    position: relative;
    z-index: 1;
}

/* ========== GALERIA ========== */
.galeria-estrutura {
    padding: 60px 0;
    background: #ffffff;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.galeria-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.galeria-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.galeria-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.galeria-item:hover img {
    transform: scale(1.08);
}

/* Destaque - ocupa 2 colunas */
.galeria-item.destaque {
    grid-column: span 2;
}

.galeria-item.destaque img {
    height: 350px;
}

/* Efeito de zoom ao passar o mouse */
.galeria-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(201, 106, 61, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-item:hover::after {
    opacity: 1;
}

/* ========== RESPONSIVO ========== */
@media (max-width: 1024px) {
    .page-banner-estrutura h1 {
        font-size: 2.5rem;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .galeria-item.destaque {
        grid-column: span 2;
    }
    
    .galeria-item img {
        height: 250px;
    }
    
    .galeria-item.destaque img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .page-banner-estrutura {
        padding: 70px 0 50px;
    }
    
    .page-banner-estrutura h1 {
        font-size: 2rem;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .galeria-item.destaque {
        grid-column: span 1;
    }
    
    .galeria-item img,
    .galeria-item.destaque img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .page-banner-estrutura h1 {
        font-size: 1.8rem;
    }
    
    .galeria-grid {
        gap: 12px;
    }
    
    .galeria-item img,
    .galeria-item.destaque img {
        height: 250px;
    }
}