/* ===========================
   CONFIGURAÇÃO GERAL
=========================== */

main {
    padding-bottom: 60px;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* Mantém o estilo do banner igual à outra página */
main .ferramentas {
    background: linear-gradient(#1f1f2ea6, #1f1f2eac), 
                url(../img/banner/capabanner2.png) center no-repeat;
    background-size: cover;
    color: #ee9c50;
    padding: 70px 20px;
    font-size: 35px;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px #0000005a;
}


/* ===========================
   CONTAINER DAS EQUIPES
=========================== */

.listequipe {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 92%;
    margin: 30px auto;
}


/* ===========================
   CARD DE CADA EQUIPE
=========================== */

.equipe {
    background: #1f1f2ee6;            /* igual ao estilo .produto */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px #00000055; /* igual aos cards de produtos */
    transition: transform .3s, box-shadow .3s, border-left-color .3s;
    border-left: 4px solid #ef7a1f;   /* laranja padrão */
}

.equipe:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px #00000080;
    border-left-color: #c9640a;        /* hover igual aos botões */
}

/* Título da equipe */
.equipe h3,
.equipe .titulo-equipe {
    text-align: center;
    font-size: 23px;
    margin-bottom: 15px;
    color: #ee9c50;     /* mesma cor principal */
    font-weight: bold;
}


/* ===========================
   SEÇÕES INTERNAS
=========================== */

.secao {
    margin-top: 20px;
    padding-left: 10px;
    border-left: 2px solid #ef7a1f66; /* laranja suave */
}

.secao h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ef7a1f; /* subtítulo laranja */
    font-weight: bold;
}

/* Texto */
.secao p {
    margin: 10px 0;
    line-height: 1.6;
    color: #e8e8e8;
}


/* ===========================
   LISTAS
=========================== */

.secao ul {
    margin: 10px 0 10px 20px;
    padding-left: 20px;
}

.secao ul li {
    margin-bottom: 6px;
    line-height: 1.4;
    color: #fff;
}

/* Sublistas */
.secao ul ul {
    margin-top: 5px;
}

.secao ul ul li {
    font-size: 14px;
    color: #d4d4d4;
}


/* ===========================
   RESPONSIVIDADE
=========================== */

@media (max-width: 700px) {
    .equipe {
        padding: 18px;
    }
    .equipe h3 {
        font-size: 19px;
    }
    .secao h4 {
        font-size: 16px;
    }
}

/* ===========================
   ACCORDION DAS EQUIPES
=========================== */

/* Esconde o conteúdo interno inicialmente */
.equipe .conteudo {
    display: none;
    padding-top: 15px;
    animation: fadeIn 0.3s ease;
}

/* Animação suave ao abrir */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Título clicável */
.equipe h3 {
    cursor: pointer;
    position: relative;
    padding-right: 25px;
}

/* Seta de abrir/fechar */
.equipe h3::after {
    content: "▼";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    transition: 0.3s;
}

/* Rotaciona quando aberto */
.equipe.ativo h3::after {
    transform: translateY(-50%) rotate(180deg);
}
