/* --------------------
   ABOUT US PAGE STYLES
   -------------------- */
#page-header {
    background-image: url('../img/page.webp');
    min-height: 40vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 90px;
}

#page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

#page-header .container {
    position: relative;
    z-index: 2;
}

#page-header h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Slider Customization */
.about-img {
    height: 700px; /* Altura ideal para desktop */
    object-fit: cover; /* Garante que a imagem preencha o espaço sem esticar */
}

@media (max-width: 768px) {
    .about-img {
        height: 500px; /* Altura ajustada para mobile */
    }
}

#who-we-are .rounded {
    border-radius: 10px !important;
}

#who-we-are .list-unstyled li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

#who-we-are .list-unstyled .fa {
    color: var(--color-blue-dark);
}

/* Mission, Vision & Values Section */
#mvv-section {
    background-color: #f8f9fa;
}

.mvv-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.mvv-card h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.mvv-card ul {
    text-align: left;
    width: 100%;
    margin-top: 10px;
    list-style-type: none;
    padding-left: 0;
}

.mvv-card ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 8px;
}

.mvv-card ul li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: var(--color-blue-dark);
}