/* ============================
   ABOUT.CSS - Página Sobre
   ============================ */

/* ==== HERO COM IMAGEM DE FUNDO NO TOPO ==== */
.about-hero-title {
    background-size: cover; /* Cobre todo o espaço do container */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repetição da imagem */
    color: white; /* Cor do texto */
    min-height: 240px; /* Altura mínima visível */
    display: flex; /* Habilita centralização com Flexbox */
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7); /* Sombra para melhor leitura */
}

/* ==== ESPAÇAMENTO DO CONTEÚDO PRINCIPAL ==== */
main.about-page {
    padding-top: 3rem;
}

/* ==== CARROSSEL DE IMAGENS - ABOUT (ISOLADO) ==== */
.owl-about.owl-carousel {
    position: relative;
}

.owl-about .owl-stage-outer {
    height: 400px !important;
    overflow: hidden;
}

.owl-about .owl-stage {
    height: 100% !important;
    display: flex;
}

.owl-about .owl-item {
    height: 100% !important;
}

.owl-about .slider-item {
    height: 100% !important;
    width: 100%;
    background-size: cover !important;
    background-position: center center !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-about .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* ==== TÍTULOS E TEXTOS ==== */
.about-page h1,
.about-page h2 {
    color: #084f80;
    font-weight: bold;
}

.about-page p,
.about-page ul li {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
}

/* ==== IMAGENS INTERNAS ==== */
.about-page img.img-fluid {
    border: 2px solid #ebf6fa;
    border-radius: 8px;
}

/* ==== MISSÃO / VISÃO / VALORES ==== */
.about-page ul {
    padding-left: 1.2rem;
}

.about-page ul li {
    margin-bottom: 0.5rem;
}

/* ==== RESPONSIVO ==== */
@media (max-width: 767.98px) {
    .owl-about .owl-stage-outer {
        height: 240px !important;
    }

    .about-hero-title {
        min-height: 180px;
        padding: 2rem 1rem;
        text-align: center;
    }

    .about-page h1 {
        font-size: 1.5rem;
    }
}
