*{
    font-family: "Poppins", sans-serif ;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #6C1111;
    color: #fff;
    
}

.logo img {
   height: 65px;
   width: auto;
   margin-top: 5px;
    
}

.nav-menu {
    display: none;
    flex-direction: column;
    background-color: #6C1111;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
}

.nav-menu.active {
    display: flex;
}

.menu-mobile { 
    display: flex; /*Lembrar de dar display: none na resolucao desktop*/
    flex-direction: column;
    cursor: pointer;
}

.menu-mobile div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
}

.site-footer {
    background: url('../assets/vectorlandingpag.svg') no-repeat center center/cover;
    background-color: #6C1111;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.site-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
    justify-content: center;
    gap: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.social-icons {
    margin-top: 1rem;
    margin-bottom: 15px;
}

.social-icons a {
    margin: 0 0.5rem;
    display: inline-block;
}

.social-icons img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s, filter 0.3s;
}

.social-icons img:hover {
    filter: brightness(0.8) invert(1);
    transform: scale(1.1);
}
@media (min-width: 1025px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
        position:static;
        background-color: transparent;
        padding: 0;
        box-shadow: none;
    }

    .nav-menu a {
        margin: 0 1rem;
    }

    .menu-mobile {
        display: none;
    }
}
