/*Fontes*/
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sansita+Swashed:wght@300..900&display=swap');
:root{
    /*Declaração das fontes*/
    --titulo: "Sansita Swashed", system-ui;
    --subtitulo: "Poppins", sans-serif;
    --texto: "Merriweather", serif;
    /*Declaração das cores da página*/
    --cor-fundo: #f3f8f6;
    --cor-texto: #0d0d0d;
    --laranja: #f29057;
    --azul-claro: #1ed3d3;
    --azul-escuro: #19647e;
}

h1{
    font-family: var(--titulo);
    color: var(--cor-texto);
    font-size: 5em;
    margin: 10px;
}

h2, h3, a{
    font-family: var(--subtitulo);
    color: var(--cor-texto);
    margin: 10px;
}

p, label{
    font-family: var(--texto);
    color: var(--cor-texto);
    margin: 10px;
}

/*Configurações básicas de elementos estruturais*/

*{
    margin: 0;
}
body{
    height: 100vh;
    background-color: var(--cor-fundo);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

nav{
    background-color: var(--azul-escuro);
    width: 100%; 
   
}
li > a{
   color: var(--cor-fundo);
}

ul{
    display: flex;
    justify-content: right;
    position: relative;
} 

nav > ul > li{
    display: inline-block;
    margin-right: 16px;
    padding: 3vh;
    vertical-align: middle;
}

nav > ul > li > a, button > a{
    display: inline-block; 
    text-decoration: none; 
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 1em;

}

a:hover {
    transform: translateY(-5px);
    text-decoration: underline;
    
}

#logonav{
    float: left;
    transition: transform 0.3s ease, color 0.3s ease; 
    width: 3vw;
    height: 6vh;
    margin: 14px 14px 14px 40px;
}

#logonav:hover {
    transform: translateY(-2px);   
}


button{
    border-radius: 12px;
    margin: 10px;
    padding: 10px;
    font-family: var(--texto);
    font-size: 1em;
    border: none;
    text-shadow:10px #19647e;
   
}


input, select{
    border-radius: 12px;
    border: none;
    padding: 10px;
    font-family: var(--subtitulo);
    color: var(--cor-texto);
    box-shadow: 0px 3px 3px 2px rgba(0, 0, 0, 0.151);
    width: 24vw;
}

#btn-comecar{
    width: 14vw;
    background-color: var(--laranja);
    box-shadow: 0px 3px 3px 5px rgba(0, 0, 0, 0.192);
    font-weight: 500;
    background-image: linear-gradient(to bottom, #e95f3de0, #f8a363);
}

button > a:hover{
    text-shadow:10px  10px 10px #ff7e5f;
}

#login{
    display: inline-block; 
    background-color: var(--azul-claro);
    border-radius: 8px;
    justify-content: center;
    padding: 3px;
    margin: 6px;
}
#login > a{
    text-decoration: none;
   
 
}
#login > img{
 vertical-align:sub;


}
main > ul{
    list-style-type: none;
}

#login:hover {
    transform: translateY(-5px);
    box-shadow: 0px 3px 3px  rgba(0, 0, 0, 0.192);
    
}

#rodape {
    display: flex; /* Ativa o Flexbox */
    justify-content: space-between; /* Espaçamento entre os itens */
    align-items: flex-start; /* Alinha os itens no topo */
    background-color: var(--azul-escuro); /* Fundo do rodapé, opcional */
    padding: 10px;
    
}

.lista-rodape, .lista-rodape1, .lista-rodape2 {
    list-style: none;
    display: inline-block;
    width: 420px;
    height: 140px;
    padding: 10px;
    margin: 0; /* Remove margens externas para alinhamento perfeito */
    box-sizing: border-box; /* Inclui padding no cálculo de largura/altura */
}

.lista-rodape2 {
    margin-top: 0; /* Garante alinhamento com os outros elementos */
    padding-left: 100px;
}

.lista-rodape > li, .lista-rodape1 > li, .lista-rodape2 > li {
    color: var(--cor-fundo);
    font-size: 0.9em;
}

.footer-h3 {
    color: var(--cor-fundo);
    font-family: var(--titulo);
    margin-bottom: 10px;
}

.footer-p {
    color: var(--cor-fundo);
    font-family: var(--subtitulo);
    font-size: 0.9em;
}


