/* Regras já existentes */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html{
    height: 100%;
}

body{
    font-family: Arial, Helvetica, sans-serif;
}

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

header{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    background: #ffc700;
    margin: 30px;
    padding: 10px 30px;
    border-radius: 20px;
}

header .right{
    list-style: none;
    display: flex;
    gap: 40px;
    font-size: 1.2em;
}

header .right li{
    display: inline-block;
    color: #9c7105;
    border-bottom: 2px solid;
}

.logo a{
    font-size: 2.4em;
    font-family: initial;
}

.logo img{
    width: 80px;
    vertical-align: middle;
    margin-right: 10px;
}

footer {
    margin: 30px 0;
    border-radius: 20px;
    width: calc(100% - 60px);
    border: 3px solid #f9c747;
    padding: 40px;
    margin-left: 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    text-decoration: none;
    transition: color 0.3s;
    color: #787878;
    font-size: 0.9em;
}

.footer-section ul li a:hover {
    color: #4273da;
}

.footer-section p {
    font-size: 14px;
    margin-top: 10px;
}

.footer-section .social-icons a {
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-section .social-icons a:hover {
    color: #4273da;
}

.footer-bottom {
    text-align: center;
    margin-top: 35px;
    font-size: 12px;
}

.container{
    margin-left: 30px;
    width: calc(100% - 60px);
    background: white;
    padding: 50px;
    border: 3px solid #e7e7e7;
    border-radius: 20px;
}

.container h1{
    margin-bottom: 20px;
}

.container h2, .container h3, .container h4 {
    margin-bottom: 10px;
}

.container p{
    margin: 10px 0;
}

.container li {
    margin-left: 20px;
}

.mb-10{
    margin-bottom: 10px;
}

.mb-2{
    margin-bottom: 2px;
}

.mb-4{
    margin-bottom: 2px;
}

.login-module button{
    border: 0;
    padding: 10px;
    background: #f9c747;
    font-size: 1.5em;
    border-radius: 40px;
}

.footer-bottom{
    font-size: 2.5em;
}

@media screen and (max-width: 800px){
    
    header{
        flex-direction: column;
        gap: 10px;
        padding-bottom: 30px;
    }
    
    .footer-bottom {
        font-size: 1em;
    }

}






