/* ==================================================
   VARIÁVEIS GLOBAIS E BASE
================================================== */


body {
    background: var(--preto-fundo);
    color: var(--branco);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* ==================================================
   SEÇÃO — SOBRE NÓS
================================================== */

.sobre-container {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
}

.titulo-sobre {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
}

.destaque-verde {
    color: var(--verde);
}

.sobre-conteudo {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.texto-sobre {
    flex: 1 1 500px;
    font-size: 1.05rem;
    color: var(--cinza-texto);
    text-align: justify;
}

.texto-sobre strong {
    color: var(--branco);
}

.imagem-sobre {
    flex: 1 1 350px;
    display: flex;
    justify-content: center;
}

.imagem-sobre img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    object-fit: cover;
}

/* ==================================================
   SEÇÃO — LIDERANÇAS (CARROSSEL)
================================================== */

.adms-container {
    width: 90%;
    max-width: 1200px;
    margin: 80px auto;
}

.titulo-adms {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
}

/* Wrapper do carrossel */

.carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
}

/* Trilho do carrossel */

.carousel {
    display: flex;
    gap: 25px;
    width: 100%;
    padding: 20px 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.carousel::-webkit-scrollbar {
    height: 8px;
}

.carousel::-webkit-scrollbar-thumb {
    background: var(--roxo);
    border-radius: 10px;
}

/* Cards das líderes */

.card-adm {
    min-width: 260px;
    padding: 30px 20px;
    text-align: center;
    border-radius: 22px;
    background: var(--preto-fundo);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.card-adm:hover {
    transform: translateY(-6px);
    border-color: var(--roxo);
    box-shadow: 0 10px 20px rgba(153, 41, 234, 0.25);
}

.foto-adm img {
    width: 110px;
    height: 110px;
    margin-bottom: 18px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--roxo);
}

.nome-adm {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.cargo-adm {
    font-size: 0.95rem;
    color: var(--cinza-texto);
}

/* Ícones sociais */

.social-icons {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icons a img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.social-icons a:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Setas do carrossel */

.arrow {
    padding: 10px;
    font-size: 2rem;
    color: var(--branco);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.arrow:hover {
    color: var(--verde);
}

/* ==================================================
   SEÇÃO — DIVISÓRIA
================================================== */
.divisoria {
    position: relative;
    width: 100%;
    height: 2px;
    margin: 30px 0;
}

.divisoria::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 2px;
    background: linear-gradient(to right, var(--roxo), var(--verde));
}

/* ==================================================
   SEÇÃO — PILARES
================================================== */

.pilares-container {
    width: 100%;
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.titulo-pilares {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
    color: var(--branco);
}

.pilar-card {
    max-width: 650px;
    margin: 25px auto;
    padding: 25px;
    border-radius: 8px;
    background-color: var(--cor-fundo-secundario, #111111);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pilar-card:hover {
    transform: translateY(-5px);
    border-color: var(--roxo);
    box-shadow: 0 10px 20px rgba(153, 41, 234, 0.2);
}

.pilar-titulo {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.pilar-texto {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--cor-texto-suave, #a9a9a9);
}

/* ==================================================
   RESPONSIVIDADE
================================================== */

@media (max-width: 768px) {

    .titulo-sobre {
        font-size: 2rem;
        text-align: center;
    }

    .imagem-sobre img {
        max-width: 100%;
    }

    .titulo-adms {
        font-size: 1.8rem;
    }

    .card-adm {
        min-width: 200px;
    }

    .carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
        padding: 20px 0;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* O Card Individual */
    .card-adm {
        flex: 0 0 90%; 
        min-width: 90%;
        margin: 0 5%; 
        scroll-snap-align: center;
        box-sizing: border-box;
        transition: transform 0.3s ease;
    }

    /* Remove barras de rolagem para um look de app */
    .carousel::-webkit-scrollbar {
        display: none;
    }
}

/* =============================== */
/* AJUSTES SOLICITADOS             */
/* =============================== */

.carousel {
    scrollbar-width: none;
    overflow-x: hidden;
    display: flex;
    gap: 24px;

}

.carousel::-webkit-scrollbar {
    display: none;
}

.arrow {
    color: var(--verde);
}

.arrow:hover {
    color: var(--verde);
}

/* 2. Card das líderes: fundo escuro + destaque apenas na borda */
.card-adm {
    background: var(--preto-fundo);
    border: 1px solid var(--roxo);
    flex: 0 0 calc((100% - 48px) / 3);
}

/* 3. Divisória entre cards e missão */
.divisoria {
    width: 100%;
    height: 2px;
    background: linear-gradient(
    to right,
    transparent,
    var(--roxo),
    var(--verde),
    transparent
    );
    margin: 80px 0;
}
