@import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&display=swap');
*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

header{
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #004239;
}

body{
    background-color: #006354;
    justify-content: center;
    height: 100vh;
}

.content{
    width: 60%;
    display: flex;
    align-items: center;
}

.header-navigation{
    width: 50%;
    display: flex;
    justify-content: space-between;
}

.header-list{
    display: flex;
    width: 100%;
    justify-content: center;
       
}

.header-list li a {
    list-style: none;
    color: aliceblue;
    cursor: pointer;
    font-size: 19px;
    transition: .5s;
    font-family: 'Kdam Thmor Pro', sans-serif;
    justify-content: space-between;
    margin-inline: 35px;
    letter-spacing: 1px;
}

.header-list li a:hover{
    color: #01c248;
    transform: scale(0.95);
}

#logo{
    width: 50px;
    height: auto;
    border-radius: 10px;
}

footer {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #004239;
}

.footer-navigation{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    
}

.footer-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
}

.footer-list li a{
    font-family: 'Kdam Thmor Pro', sans-serif;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 1px;
    list-style: none;
    font-size: 18px;
    transition: .5s;
}

.footer-list li a:hover{
    color: #01c248;
    transform: scale(0.95);
}

.midias-sociais{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.midias-sociais img{
    width: 40px;
    height: 100%;   
}

#frasesFooter1{
    color: #fff;
    font-family: 'Kdam Thmor Pro', sans-serif;
    margin-top: 15px;
    letter-spacing: 1px;
}

#frasesFooter2{
    color: #fff;
    font-family: 'Kdam Thmor Pro', sans-serif;
    margin-top: 5px;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

title{
    font-family: 'Kdam Thmor Pro', sans-serif;
}

#voltaProTopo {
    display: none; 
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    z-index: 99; /* Fica sobre outros elementos */
    border: none; 
    outline: none; /* Remove borda de foco */
    background-color: #004239; 
    color: white; 
    cursor: pointer; 
    padding: 15px; 
    border-radius: 10px; 
    font-size: 18px; 
    transition: opacity 0.3s; 
}

#voltaProTopo:hover {
    background-color: #01c248; 
}

/*Início do style da página Contato*/
#form-contato{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    color: #fff;
    font-family: 'Kdam Thmor Pro', sans-serif;
    letter-spacing: 1px;
    align-items: center;
    margin-top: 50px;
}

.form-control{
    font-family: 'Kdam Thmor Pro', sans-serif;
    border-radius: 5px;
    border-style: none;
}

.button{
    font-family: 'Kdam Thmor Pro', sans-serif;
    letter-spacing: 1px;
    border-radius: 3px;
    height: 30px;
    width: 95px;
    color: #fff;
    background-color: #006354; 
    border-style: none;
    align-items: center;
    cursor: pointer;
    font-style: bold;
    font-size: 17px;
}