*{
    font-family: sans-serif, Arial, Helvetica;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

html,
body{

    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

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

button{
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-sem-estilo{
    background: none;
    border: none;
}

.btn-sem-estilo:focus {
    outline: none;
}

ul,
li,
label{
    padding: 0;
    margin: 0;
    list-style-type: none;
}

ul{
    list-style: none;
}

button, a, input, textarea {
    outline: none;
}

button:focus, a:focus, input:focus, textarea:focus {
    outline: none;
}

button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: auto; /* Mantém o contorno acessível ao usar teclado */
}

.btn-titulo-pagina {
    display: inline-block;
    background: linear-gradient(135deg, #0891b2 0%, #017286 100%);
    color: white;
    padding: 12px 24px;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.5);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    user-select: none;
    text-align: center;
    margin-bottom: 20px;
    max-width: 100%;
    white-space: nowrap;

}

.btn-titulo-pagina:hover,
.btn-titulo-pagina:focus {
    background: linear-gradient(135deg, #003e49 0%, #007f92 100%);
    box-shadow: 0 6px 18px rgba(8, 145, 178, 0.7);
    outline: none;
    transform: translateY(-2px);
}

.linha-hidden {
    display: none;
}

.titulo-diferente {
    color: white;
    margin: 0 auto;
}

/* #pessoal {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: #cce7ff;
    max-width: 100%;
    overflow-y: auto;
    max-height: 70vh;
} */

footer {
    position: relative;
    bottom: 0;
    width: 100%;
}

@media (max-width: 830px) {
    header {
        display: flex;
            flex-direction: row;
        font-size: 12px;
    }

    header ul {
        display: flex;
            flex-direction: column;
    }

    header ul li {
        margin: 5px;
    }

    header .logo {
        margin-top: 0;
    }

    header .logo img {
        width: 60px;
    }

    header .links {
        width: 150px;
        margin-bottom: 25px;
        /* background-color: #002c53; */
    }

    header .acesso {
        margin-top: 0;
        display: block;
    }

    header .acesso a{
        display: none;
    }

    .links li,
    #acesso-media {
        display: none;
    }

    header .acesso #hamburguer{
        height: 20px;
        display: flex;
        margin-top: 15px;
    }

    .btn-titulo-pagina {
        font-size: 1rem;
        padding: 10px 18px;
        width: 100%;
        white-space: normal;
    }
}