@import url("default.css");
@import url("home.css");
@import url("login.css");
@import url("videos.css");
@import url("animations.css");

header {
    background-color: var(--background-primary);
}

header .header-area {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .header-area .logo {
    height: 60px;
}

header .header-area .logo img{
    height: 100%;
    width: 100%;
}

header .header-area nav ul {
    list-style: none;
    display: flex;
}

header .header-area nav ul li {
    margin-left: 30px; 
}

header .header-area nav ul li a {
    text-decoration: none;
    display: flex;
    align-items: center;   
}

header .header-area nav ul li a img{
    width: 30px;
    height: 30px;
}

header .header-area nav ul li a span{
    color: var(--color-secondary);
}

header .header-area nav ul li a.active {
    border-bottom: 1px solid var(--color-primary);
}

header .header-area nav ul li a span:hover {
    color: var(--color-primary);
}

footer {
    background-color: var(--background-primary);
}

footer .footer-area {
    display: flex;
    height: 60px;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

footer .footer-area span {
    color: var(--text-secondary);
}

footer .footer-area .rede-logo img {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

@media (max-width: 600px) {
    header .header-area {
        height: 100px;
        flex-direction: column;
        padding: 10px 0;
    }
    header .header-area nav {
        /* margin-top: 10px; */
    }

    header .header-area nav ul li {
        margin-left: 25px;
        font-size: 16px;
    }

    header .header-area .logo img {
        height: 50px;
    }

    footer .footer-area {
        height: 70px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        padding-top: 20px;
    }

    footer .footer-area .rede-logo {
        margin: 10px 0;
    }

    footer .footer-area .rede-logo img {
        width: 30px;
        height: 30px;
    }
}

