/* Estilos minimalistas para a página Acontece no Viva */

/* Banner principal - Layout Consistente */
.banner-secundario {
    width: 100%;
    height: 50dvh;
    display: flex;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #D6D6D6;
    background-size: cover;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.banner-secundario::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.banner-secundario .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-secundario h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.banner-secundario p {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
}



/* Cards de eventos */
.acontece .card {
	/* Sem efeitos especiais */
}





/* Responsividade */
@media (max-width: 768px) {
    .banner-secundario {
        height: 40dvh;
    }
    
    .banner-secundario h1 {
        font-size: 2.5rem !important;
    }
    
    .banner-secundario p {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 576px) {
    .banner-secundario {
        height: 35dvh;
    }
    
    .banner-secundario h1 {
        font-size: 2rem !important;
    }
    
    .banner-secundario p {
        font-size: 1rem !important;
    }
}
