/* Estilos gerais */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 4rem 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #90320f;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #eee809;
    margin: 0.5rem auto;
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #90320f;
}

/* Banner responsivo */
#banner {
    padding: 0;
    overflow: hidden;
}

.banner-container {
    width: 100%;
    position: relative;
}

.banner-placeholder {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 40%; /* Proporção do banner */
    overflow: hidden;
}

.banner-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    width: 80%;
    z-index: 2;
}

.banner-text h1 {
    font-size: 3.5vw;
    margin-bottom: 1rem;
    color: #fff;
}

.banner-text p {
    font-size: 1.8vw;
    margin-bottom: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

/* Sobre */
#sobre {
    background-color: #fff;
}

#sobre p {
    margin-bottom: 1rem;
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Programação */
#programacao {
    background-color: #f8f9fa;
}

.programacao-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.dia {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.dia:hover {
    transform: translateY(-5px);
}

.dia h3 {
    color: #90320f;
    border-bottom: 2px solid #eee809;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.dia ul {
    list-style: none;
}

.dia li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.horario {
    display: block;
    font-weight: bold;
    color: #f58220;
    font-size: 0.9rem;
}

.atividade {
    display: block;
    margin-top: 0.3rem;
}

/* Contatos */
#contatos {
    background-color: #fff;
}

.contatos-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contato-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contato-info h3 {
    color: #90320f;
    margin-bottom: 1rem;
    border-bottom: 2px solid #eee809;
    padding-bottom: 0.5rem;
}

.contato-info p {
    margin-bottom: 0.5rem;
}

/* Localização */
#localizacao {
    background-color: #f8f9fa;
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.endereco {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.endereco h3 {
    border-bottom: 2px solid #eee809;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.endereco p {
    margin-bottom: 0.5rem;
}

.mapa-placeholder {
    background-color: #ecf0f1;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #7f8c8d;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
    background-color: #90320f;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .localizacao-content {
        grid-template-columns: 1fr;
    }
    
    .banner-text h1 {
        font-size: 2rem;
    }
    
    .banner-text p {
        font-size: 1.2rem;
    }
    
    .banner-placeholder {
        padding-top: 60%; /* Proporção mais alta para mobile */
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .banner-text h1 {
        font-size: 1.8rem;
    }
    
    .banner-text p {
        font-size: 1rem;
    }
    
    .banner-placeholder {
        padding-top: 70%; /* Proporção ainda mais alta para telas muito pequenas */
    }
    
    .programacao-content {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
}