
body {
    margin: 0;
    background-color: #f0f2f5;
    margin-bottom: 50px;
    font-family: 'manrope';
    font-weight: 150;
    color: #333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: 'manrope';
    src: url(fonts/Manrope-VariableFont_wght.ttf) format('truetype');
}

header h1{
    color: #ffffff;
}

.fonte {
    color: white;
    font-family:'manrope';
    padding-bottom: 5vh;
    font-weight: 150;
    font-size: 25pt;
}

.cabecalho {
    background-color: #3d357e;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.logo {
    width: 180px;
    height: auto;
}

.listas-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 0 20px;
}

.lista-suspensa {
    width: 100%;
    max-width: 750px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.lista-suspensa:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.lista-suspensa summary {
    padding: 18px 25px;
    font-size: 1.3em;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    color: #3d357e;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f8f8;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease-in-out;
}

.lista-suspensa summary:hover {
    background-color: #e9e9e9;
}

.lista-suspensa summary::after {
    content: '+';
    font-size: 1.5em;
    color: #edae0f;
    transition: transform 0.3s ease-in-out;
}

.lista-suspensa[open] > summary::after {
    content: '-';
}

.lista-suspensa[open] > summary {
    background-color: #e9e9e9;
    border-bottom: 1px solid #edae0f;
}

.botoes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 25px;
    background-color: #fdfdfd;
}

.botoes a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out, color 0.2s ease-in-out;
    font-size: 1.1em;
    font-weight: 500;
}

.botoes a:hover {
    background-color: #f0f0f0;
    transform: translateX(5px);
    color: #3d357e;
}

.botao-imagem {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background-color: #3d357e;;
    padding: 5px;
    box-sizing: border-box;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.botoes a:hover .botao-imagem {
    transform: scale(1.1);
}


/* --- PARTE RESPONSIVA ( MATHEUS NÃO MEXER) --- */

@media (max-width: 768px) {
    .cabecalho {
        padding: 25px 15px;
        margin-bottom: 30px;
    }

    .logo {
        width: 160px;
    }

    .listas-container {
        gap: 20px;
        padding: 0 15px;
    }

    .lista-suspensa summary {
        padding: 16px 20px;
        font-size: 1.2em;
    }

    .botoes {
        padding: 15px 20px;
    }

    .botoes a {
        padding: 10px;
        gap: 15px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    body {
        -webkit-tap-highlight-color: transparent;
    }

    .cabecalho {
        padding: 20px 10px;
        margin-bottom: 25px;
    }

    .logo {
        width: 140px;
    }

    .listas-container {
        gap: 15px;
        padding: 0 10px;
    }
    
    .lista-suspensa:hover {
        transform: none;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .lista-suspensa summary {
        padding: 14px 15px;
        font-size: 1.1em;
    }
    
    .botoes {
        padding: 10px 15px;
        gap: 8px;
    }
    
    .botoes a:active {
        background-color: #f0f0f0;
    }

    .botao-imagem {
        width: 45px;
        height: 45px;
    }
}
