@import url('home.css'); /* Se o nome do seu arquivo principal for home.css */


/* Estilos Gerais da Página */
.section-heading {
    margin-bottom: 1rem;
    color: var(--cor-primaria);
    font-weight: 700;
}

/* Seção Banner Superior */
.page-banner {
    position: relative;
    background-image: url('../img/SobreNos/SobreNosBanner.png?v=4') !important; 
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 16rem; 
    text-align: center;
}

/* CORREÇÃO — overlay transparente */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent !important; /* impede que tampe a imagem */
    pointer-events: none; /* permite clique passar e evita conflito */
}

.page-banner .container {
    position: relative; 
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.2rem;
}


/* Seção Missão, Visão e Valores */
.mvv-card {
    background-color: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mvv-icon {
    font-size: 3rem;
    color: var(--cor-destaque);
    margin-bottom: 1.5rem;
}

.mvv-title {
    color: var(--cor-primaria);
    margin-bottom: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
}
