* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Arial Black', 'Arial', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}


/* =========================================================
   HERO
========================================================= */

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    background-color: #c4c4c4;

    padding: 40px;

    border-radius: 0 0 40px 40px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

    overflow: hidden;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: #000;

    border: 2px solid #2ecc71;
    border-radius: 50px;

    padding: 15px 40px;

    transition: 0.3s ease;
}

.navbar a {
    color: #fff;
    text-decoration: none;

    font-size: 1.2rem;
    font-weight: bold;

    transition: 0.3s ease;
}

.navbar a:hover {
    color: #2ecc71;
}

.navbar .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .logo img {
    width: 67px;
    height: auto;

    display: block;

    transition: 0.3s ease;
}

.navbar .logo img:hover {
    transform: scale(1.08);
}


/* =========================================================
   HERO - TEXTO
========================================================= */

.hero-content {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;
}

.hero-text {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.tagline {
    color: #000;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.main-title {
    color: #000;
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    margin-bottom: 25px;
}

.main-title span {
    color: #cb0606;
}

.description {
    max-width: 750px;
    margin: 0 auto;
    color: #222;
    font-family: Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.6;
}

/* =========================================================
   CONTEÚDO DA EQUIPE
========================================================= */

.equipe-main {
    width: 100%;

    background-color: #000;

    padding: 80px 40px 100px;
}


/* =========================================================
   CARDS DAS EQUIPES
========================================================= */

.equipe-ano {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto 80px;
    background-color: #c4c4c4;

    border-radius: 30px;

    padding: 35px;

    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

.equipe-ano:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TÍTULO DA EQUIPE
========================================================= */

.titulo-equipe {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    margin-bottom: 25px;
}

.titulo-equipe h1,
.titulo-equipe h2 {
    color: #000;

    font-family: Impact, 'Arial Black', sans-serif;

    font-size: 2.2rem;

    white-space: nowrap;
}

.titulo-equipe span {
    width: 100%;
    max-width: 350px;
    height: 3px;

    background-color: #c2c2c2;

    border-radius: 10px;
}


/* =========================================================
   CONTEÚDO DA EQUIPE
========================================================= */

.equipe-conteudo {
    width: 100%;

    display: flex;

    gap: 28px;

    align-items: stretch;
}


/* =========================================================
   FOTO
========================================================= */

.foto-equipe {
    width: 40%;
    height: 390px;

    background-color: #000;

    border-radius: 18px;

    overflow: hidden;

    flex-shrink: 0;
}

.foto-equipe img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   LISTA DE MEMBROS
========================================================= */

.lista-membros {
    width: 60%;
    height: 390px;

    padding-right: 8px;

    display: flex;
    flex-direction: column;

    gap: 16px;

    overflow-y: auto;
}


/* =========================================================
   SCROLLBAR
========================================================= */

.lista-membros::-webkit-scrollbar {
    width: 8px;
}

.lista-membros::-webkit-scrollbar-track {
    background-color: #e5e5e5;

    border-radius: 10px;
}

.lista-membros::-webkit-scrollbar-thumb {
    background-color: #000;

    border-radius: 10px;
}

.lista-membros::-webkit-scrollbar-thumb:hover {
    background-color: #2ecc71;
}


/* =========================================================
   MEMBRO
========================================================= */

.membro {
    width: 100%;
    min-height: 66px;

    padding: 10px 18px;

    background-color: #000;

    border-radius: 13px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    flex-shrink: 0;

    transition: 0.3s ease;
}

.membro:hover {
    transform: translateX(4px);

    box-shadow: 0 0 0 2px #cb0606;
}


/* =========================================================
   NOME + CARGO
========================================================= */

.membro strong {
    min-width: 0;
    flex: 1;

    color: #fff;

    font-family: Impact, 'Arial Black', sans-serif;

    font-size: 1.2rem;
    font-weight: 550;

    line-height: 1.25;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cargo {
    color: #ff0000;
}


/* =========================================================
   REDES SOCIAIS DOS MEMBROS
========================================================= */

.redes {
    display: flex;
    align-items: center;

    gap: 8px;

    flex-shrink: 0;
}

.redes a {
    width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #2ecc71;

    color: #000;

    border-radius: 50%;

    text-decoration: none;

    transition: 0.3s ease;
}

.redes a:hover {
    background-color: #fff;

    transform: translateY(-3px);
}

.redes svg {
    width: 17px;
    height: 17px;

    fill: currentColor;
}

/* =========================================================
   RESPONSIVIDADE - EQUIPE - MOBILE
========================================================= */

@media (max-width: 768px) {

    /* =====================================================
       HERO
    ===================================================== */

    .hero-container {
        width: 94%;
        padding: 20px 15px 35px;
        border-radius: 0 0 30px 30px;
    }


    /* =====================================================
       NAVBAR
    ===================================================== */

    .navbar {
        padding: 10px 18px;
        border-radius: 35px;
    }

    .navbar a {
        font-size: 0.8rem;
    }

    .navbar .logo img {
        width: 48px;
    }

    .navbar .logo img:hover {
        transform: none;
    }


    /* =====================================================
       HERO - TEXTO
    ===================================================== */

    .hero-content {
        min-height: auto;
        padding: 40px 10px 10px;
    }

    .hero-text {
        max-width: 100%;
    }

    .tagline {
        font-size: 0.65rem;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .main-title {
        font-size: clamp(2.8rem, 12vw, 4rem);
        line-height: 0.95;
        margin-bottom: 20px;
    }

    .description {
        font-size: 0.9rem;
        line-height: 1.5;
    }


    /* =====================================================
       CONTEÚDO DA EQUIPE
    ===================================================== */

    .equipe-main {
        padding: 45px 15px 60px;
    }


    /* =====================================================
       CARDS DAS EQUIPES
    ===================================================== */

    .equipe-ano {
        width: 100%;
        padding: 25px 18px 30px;
        margin-bottom: 40px;
        border-radius: 25px;
    }


    /* =====================================================
       TÍTULO DA EQUIPE
    ===================================================== */

    .titulo-equipe {
        gap: 10px;
        margin-bottom: 20px;
    }

    .titulo-equipe h1,
    .titulo-equipe h2 {
        font-size: 1.6rem;
        white-space: nowrap;
    }

    .titulo-equipe span {
        max-width: 100px;
        height: 2px;
    }


    /* =====================================================
       CONTEÚDO DA EQUIPE
    ===================================================== */

    .equipe-conteudo {
        flex-direction: column;
        gap: 25px;
    }


    /* =====================================================
       FOTO
    ===================================================== */

    .foto-equipe {
        width: 100%;
        height: 230px;
        border-radius: 18px;
    }


    /* =====================================================
       LISTA DE MEMBROS
    ===================================================== */

    .lista-membros {
        width: 100%;
        height: 350px;
        padding-right: 5px;
        gap: 12px;
    }


    /* =====================================================
       MEMBRO
    ===================================================== */

    .membro {
        min-height: 62px;
        padding: 9px 12px;
        gap: 8px;
        border-radius: 11px;
    }

    .membro:hover {
        transform: none;
    }


    /* =====================================================
       NOME + CARGO
    ===================================================== */

    .membro strong {
        font-size: 0.9rem;
        line-height: 1.2;
    }


    /* =====================================================
       REDES SOCIAIS
    ===================================================== */

    .redes {
        gap: 5px;
    }

    .redes a {
        width: 28px;
        height: 28px;
    }

    .redes svg {
        width: 15px;
        height: 15px;
    }

}