/* ========================================
   VARIÁVEIS
   ======================================== */
:root {
    --primary-color: #3d7f3f;
    --secondary-color: #2d5f2e;
    --text-dark: #1a1a1a;
    --text-gray: #767676;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --font-lato: 'Lato', sans-serif;
}

/* ========================================
   HERO SECTION - QUEM SOMOS
   ======================================== */
.hero-sobre {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 368px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-sobre .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-lato);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    text-align: center;
}

/* ========================================
   SEÇÃO SOBRE CONTEÚDO
   ======================================== */
#sobre-conteudo {
    background-color: var(--white);
    padding: 80px 0;
}

.sobre-image-wrapper {
    position: relative;
}

/* Badge 10 Anos - Sobre */
.badge-anos-sobre {
    position: absolute;
    bottom: -30px;
    left: -30px;
    z-index: 10;
    background-color: #f4e03c;
    padding: 0;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.badge-icon-sobre {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 11;
}

.globo-icon-sobre {
    width: 50px;
    height: 50px;
}

.badge-text-sobre {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.badge-label-sobre {
    font-family: var(--font-lato);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.badge-number-sobre {
    font-family: var(--font-lato);
    font-size: 72px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin: 5px 0;
}

.badge-subtitle-sobre {
    font-family: var(--font-lato);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-top: 5px;
}

.sobre-image {
    border-radius: 0;
    overflow: hidden;
}

.sobre-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Conteúdo de Texto */
.sobre-content {
    padding-left: 40px;
}

.sobre-title {
    font-family: var(--font-lato);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
}

.sobre-description {
    font-family: var(--font-lato);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.6;
}

.sobre-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sobre-list-item {
    font-family: var(--font-lato);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.sobre-list-item .check-icon {
    background-color: var(--primary-color);
    color: var(--white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 14px;
}

/* ========================================
   SEÇÃO VISÃO, MISSÃO E VALORES
   ======================================== */
#visao-missao-valores {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.vmv-card {
    background-color: var(--white);
    padding: 40px 30px;
    height: 100%;
    border-left: 3px solid #ddd;
    transition: all 0.3s ease;
}

.vmv-card:hover {
    border-left-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vmv-title {
    font-family: var(--font-lato);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.vmv-description {
    font-family: var(--font-lato);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .hero-sobre {
        min-height: 300px;
    }

    .hero-title {
        font-size: 36px;
    }

    #sobre-conteudo {
        padding: 60px 0;
    }

    .sobre-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .sobre-title {
        font-size: 28px;
    }

    .badge-anos-sobre {
        width: 160px;
        height: 160px;
        bottom: -20px;
        left: -20px;
    }

    .badge-icon-sobre {
        width: 70px;
        height: 70px;
        top: -35px;
        right: -35px;
    }

    .globo-icon-sobre {
        width: 45px;
        height: 45px;
    }

    .badge-number-sobre {
        font-size: 60px;
    }

    .badge-label-sobre,
    .badge-subtitle-sobre {
        font-size: 12px;
    }

    #visao-missao-valores {
        padding: 60px 0;
    }

    .vmv-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .hero-sobre {
        min-height: 250px;
    }

    .hero-title {
        font-size: 28px;
    }

    #sobre-conteudo {
        padding: 40px 0;
    }

    .sobre-title {
        font-size: 24px;
    }

    .sobre-description {
        font-size: 15px;
    }

    .badge-anos-sobre {
        width: 140px;
        height: 140px;
        bottom: -15px;
        left: -15px;
    }

    .badge-icon-sobre {
        width: 60px;
        height: 60px;
        top: -30px;
        right: -30px;
    }

    .globo-icon-sobre {
        width: 35px;
        height: 35px;
    }

    .badge-number-sobre {
        font-size: 48px;
    }

    .badge-label-sobre,
    .badge-subtitle-sobre {
        font-size: 11px;
    }

    #visao-missao-valores {
        padding: 40px 0;
    }

    .vmv-title {
        font-size: 20px;
    }

    .vmv-description {
        font-size: 14px;
    }
}
