/* Estilos Globais */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Cor de fundo clara */
    color: #333; /* Cor do texto */
    padding-top: 30px; /* Espaço para descolar o conteúdo da navbar */
}

#legal-info {
    max-width: 800px;
    margin: 50px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#legal-info h2 {
    font-size: 28px;
    color: #d32f2f;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

#legal-info h3 {
    font-size: 22px;
    color: #333;
    margin-top: 20px;
}

#legal-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

#legal-info ul {
    margin-top: 10px;
    padding-left: 20px;
}

#legal-info ul li {
    list-style-type: disc;
    margin-bottom: 10px;
}

#legal-info a {
    color: #007bff;
    text-decoration: none;
}

#legal-info a:hover {
    text-decoration: underline;
}

nav {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    font-family: 'Montserrat', sans-serif;
    padding: 0 5%;
    height: 50px;
    background-color: #333;
}
nav .logo {
    float: left;
    width: 15%;
    height: 100%;
    display: flex;
    align-items: center;
    
}
nav .links {
    float: right;
    padding: 0;
    margin: 0;
    width: 10%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
nav .links li {
    list-style: none;
}
nav .links li:hover{

    background-color: #DA0037;
    max-height: 50px;
}
nav .links a {
    display: block;
    padding: 1em;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}
#nav-toggle {
    position: absolute;
    top: -100px;
}
nav .icon-burger {
    display: none;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}
nav .icon-burger .line {
    width: 30px;
    height: 5px;
    background-color: #fff;
    margin: 5px;
    border-radius: 3px;
    transition: all .3s ease-in-out;
}

/* icons */

#legal-info h2 i, #legal-info h3 i {
    margin-right: 10px; /* Espaçamento entre o ícone e o texto */
    color: #d32f2f; /* Cor dos ícones */
}

nav .links a i {
    margin-right: 8px; /* Espaçamento entre o ícone e o texto na navbar */
}

/* Responsivo */
@media (max-width: 768px) {
    nav .logo {
        float: none;
        width: 25%;
        justify-content: center;
        margin-left: 35%;
    }
    nav .links {
        float: none;
        position: fixed;
        z-index: 9;
        left: 0;
        right: 0;
        top: 50px;
        bottom: 100%;
        width: auto;
        height: auto;
        flex-direction: column;
        justify-content: space-evenly;
        background-color: rgba(0,0,0,.8);
        overflow: hidden;
        box-sizing: border-box;
        transition: all .5s ease-in-out;
    }
    nav .links a {
        font-size: 20px;
    }
    nav :checked ~ .links {
        bottom: 0;
    }
    nav .icon-burger {
        display: block;
    }
    nav :checked ~ .icon-burger .line:nth-child(1) {
        transform: translateY(10px) rotate(225deg);
    }
    nav :checked ~ .icon-burger .line:nth-child(3) {
        transform: translateY(-10px) rotate(-225deg);
    }
    nav :checked ~ .icon-burger .line:nth-child(2) {
        opacity: 0;
    }
    
    
    
    img {
      width: 100%;
      height: auto;
    }
}