:root {
    --navy: #0b1f3a;
    --gold: #c7a97a;
    --gold2: #a88a5a;
    --bg: #f8f8f6;
    --white: #ffffff;
    --text: #1a1a2e;
    --muted: #6b7280;
    --border: #e0ddd8;
    --red: #c62828;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ─── HERO ─── */
.hero {
    height: 90vh;
    position: relative;
    background: linear-gradient(rgba(10,25,55,.72) 0%, rgba(10,25,55,.72) 100%), url('../../images/bulgarelli/homeadv.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
}
.backblue {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(11, 36, 60, 0.46);
}
.texto-central {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 20px;
    color: #fff;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
}

    .hero-title span {
        color: var(--gold);
    }

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--white);
    border-radius: 8px;
    padding: 12px 32px;
    font-size: .95rem;
    font-weight: 600;
    transition: background .2s, color .2s, transform .15s;
    font-family: 'Poppins', sans-serif;
}

    .btn-hero:hover {
        background: transparent;
        color: var(--white);
        transform: translateY(-2px);
    }

/* ─── SECTION SHARED ─── */
.section {
    padding: 80px 0;
}

.section-bar {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--muted);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.75;
}

/* ─── PRESENÇA NACIONAL — CARDS ─── */
.presenca-section {
    background: var(--bg);
}

.pres-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
}

    .pres-card:hover {
        box-shadow: 0 10px 28px rgba(0,0,0,.08);
        transform: translateY(-3px);
    }

.pres-icon {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.pres-card-title {
    font-size: .97rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.pres-card-text {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.65;
}

.presenca-footer {
    text-align: center;
    font-size: 1rem;
    color: var(--muted);
    max-width: 620px;
    margin: 40px auto 0;
    line-height: 1.7;
}

/* ─── ÁREAS DE ATUAÇÃO ─── */
.areas-section {
    background: var(--white);
}

.area-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 20px 24px;
    text-align: center;
    height: 100%;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}

    .area-card:hover,
    .area-card.active {
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
        transform: translateY(-3px);
        border-color: var(--gold);
    }
.icon-wrapper {
    display: flex;
    justify-content: center;
}
.area-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.area-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: -0.5rem;
}

.btn-outline-adv {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    border-radius: 8px;
    padding: 12px 36px;
    font-size: .93rem;
    font-weight: 600;
    transition: background .2s, color .2s, transform .15s;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    margin-top: 40px;
}

    .btn-outline-adv:hover {
        background: var(--navy);
        color: var(--white);
        transform: translateY(-2px);
    }

/* ─── HEADER INSTITUCIONAL ─── */
.page-header-institucional {
    padding: 120px 0 60px;
    background: var(--white);
    text-align: center;
}

.section-bar-institucional {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.page-title-institucional {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 16px;
}

.page-subtitle-institucional {
    font-size: 1rem;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.75;
}
/* ─── NOSSA HISTÓRIA ─── */
.historia-section {
    padding: 20px 0 80px;
    background: var(--white);
}

.historia-title {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 24px;
}

.historia-text {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

/* ─── MISSÃO / VISÃO / VALORES ─── */
.mvv-section {
    padding: 70px 0;
    background: var(--bg);
}

.mvv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 28px 36px;
    text-align: center;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
    border: 1px solid var(--gold);
}

    .mvv-card:hover {
        box-shadow: 0 12px 32px rgba(0,0,0,.07);
        transform: translateY(-3px);
    }

.mvv-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 18px;
    display: block;
}

.mvv-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 14px;
}

.mvv-text {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── SÓCIOS FUNDADORES ─── */
.socios-section {
    padding: 80px 0;
    background: var(--white);
}

.socios-title {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 40px;
}

.socio-photo {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 380px;
}

.socio-nome {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 4px;
}

.socio-sub {
    font-size: 1rem;
    color: var(--gold2);
    font-weight: 400;
    margin-bottom: 12px;
}

.socio-texto {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.75;
}

.socio-item + .socio-item {
    margin-top: 36px;
}

/* ─── AREAS SECTION ─── */
.areas-section {
    padding: 20px 0 90px;
    background: var(--bg);
}

.area-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
}

.area-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.area-icon {
    font-size: 1.6rem;
    color: var(--gold);
    flex-shrink: 0;
}

.area-card-desc {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 45px;
    text-align:left
}

.area-services-title {
    font-size: .88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

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

    .area-services-list li {
        font-size: .86rem;
        color: var(--muted);
        line-height: 1.6;
        padding: 5px 0;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

        .area-services-list li::before {
            content: "·";
            color: var(--gold2);
            font-size: 1.2rem;
            line-height: 1.2;
            flex-shrink: 0;
        }