@font-face {
    font-family: 'santello';
    src: url('../fonts/SANTELLO.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'canavar';
    src: url('../fonts/SHUTTLE-X.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --max-tela-header: 1000px; /* Cinza */
    --cor-primaria: #c4faf5; /* Azul */
    --cor-secundaria: #009337; /* Cinza */
    --cor-terciaria: #E6E100; /* Cinza */
    --cor-quaternaria: #004796; /* Cinza */
}

body {
    font-family: 'santello';
    font-size: 12px;
    margin: 0;
    padding: 0;
}

*{
    font-family: 'santello', sans-serif;
    font-size: 16px;
}

ul, li{
    list-style: none;
    list-style-type: none;
    margin:0;
    padding: 0;
}

#box-logo{
    display: flex;
    align-items: center;
    /* line-height: 120px; */
}

#box-logo li a:last-child{
    font-family: 'santello', sans-serif;
    font-size: 24px;
}

.itens-header a:hover {
    border-bottom: 1px solid;
    color: var(--cor-terciaria);
}

a{
    text-decoration: none;
    color: var(--cor-secundaria);
    font-size: 12px;
}

#header-deslogado{
    width: 100%;
    background-color: var(--cor-primaria);
    display: flex;
    justify-content: center;
    align-items: center;
}

#box-header{
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-tela-header);
}

#box-logo li a img{
    max-width: 80px;
    width: 100%; /* Ajuste o tamanho conforme necessário */
    height: auto;
    animation: rotate 5s linear infinite;
}

/*.rotating-image {*/
    /*width: 100%; /* Ajuste o tamanho conforme necessário 
/*    height: auto;*/
/*    animation: rotate 5s linear infinite;*/
/*}*/

/*@keyframes rotate {*/
/*    from {*/
/*        transform: rotate(0deg);*/
/*    }*/
/*    to {*/
/*        transform: rotate(360deg);*/
/*    }*/
/*}*/

#box-pag-header{
    display: flex;
}

#box-pag-header li {
    padding-left: 10px;
    line-height: 80px;
}

#box-pag-header li button{
    margin-left: 10px;
    background-color: transparent;
    border: 3px var(--cor-terciaria) solid;
    color: var(--cor-secundaria);
    padding: 5px;
    padding: 5px 20px 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease; /* Transição suave */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); Sombra para efeito 3D */
}

#box-pag-header li button:hover{
    color: white;
    background-color: var(--cor-terciaria);;
    border: 3px var(--cor-primaria) solid;
}