/* CONFIGS */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

:root {
    --color01: #4D7198;
    --color02: #3A6187;
    --color03: #275276;
    --color04: #134265;
    --color05: #003254;
    --font01: 16px;
    --font02: 20px;
    --font03: 24px;
}

body {
    background-color: rgb(233, 233, 233);
}

/* HEADER */
header {
    display: block;
    width: 100%;
}

/* first header */
#email_tel {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: var(--color04);
    color: white;
    padding: 10px;
    font-size: var(--font01);
}

#tel {
    margin-right: 5px;
}

/* second header */
#header_nav {
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: var(--color03);
    padding: 15px;
    align-items: center;
}

#logo,
#img_logo {
    width: 180px;
    border-radius: 5px;
}

#nav {
    width: 75%;
    display: flex;
    justify-content: space-evenly;
    gap: 8;
    list-style: none;
    font-size: var(--font02);
}

#nav li {
    padding: 10px;
    border-radius: 3px;
}

#nav ul.extended_nav a:last-child li {
    border-radius: 0px 0px 10px 10px;
}

#nav ul.extended_nav a:first-child li {
    border-radius: 0px 10px 0px 0px;
}

#nav li:hover {
    background-color: var(--color02);
}

#nav li a, #nav li {
    text-decoration: none;
    color: white;
}

#fy_content, #fc_content {
    display: none;
}

#for_you:hover #fy_content, #for_company:hover #fc_content {
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: var(--color05);
    list-style: none;
    z-index: 100;
    width: 200px;
    margin-top: 11px;
    border-radius: 0px 10px 10px 10px;
}

.highlighted {
    border-bottom: 1px solid white;
}

#icon_menu {
    display: none;
}

#header_mobile {
    display: none;
}

/* RESPONSIVIDADE */
/* Tablet */
@media (min-width: 601px) and (max-width: 1200px) {
    /* botão do menu */
    #nav {
        display: none;
    }

    #icon_menu {
        display: block;
        color: white;
    }

    #icon_menu button {
        background-color: transparent;
        border: none;
        width: 50px;
        height: 50px;
    }

    #icon_menu button .material-symbols-outlined {
        transform: scale(1.5);
    }

    /* menu que vai aparecer */
    #header_mobile {
        display: none;
        position: fixed;
        width: 45%;
        right: 0;
        background-color: var(--color01);
        padding: 5px;
        height: 100vh;
        z-index: 120;
    }

    /* menu principal */
    #nav_mobile .material-symbols-outlined {
        transform: scale(1.5);
        margin: 20px 0 0 20px;
        color: white;
    }

    #list_nav_mobile {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
        margin-top: 25px;
    }

    #list_nav_mobile a, #list_nav_mobile li{
        font-size: var(--font03);
        text-decoration: none;
        color: white;
        display: flex;
        width: 90%;
        /* margin: 0 auto 0 auto; */
        /* justify-content: center; */
    }

    #list_nav_mobile li {
        padding-left: 20px;
    }

    #list_nav_mobile li .material-symbols-outlined {
        transform: scale(0.7) rotate(90deg);
        margin: 0 0 0 10px;
    }

    /* para você */
    #fy_mobile .material-symbols-outlined {
        transform: scale(1.5);
        margin: 20px 0 0 20px;
        color: white;
    }

    #list_fy_mobile {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
        margin-top: 25px;
    }

    #list_fy_mobile a {
        font-size: var(--font03);
        text-decoration: none;
        color: white;
        display: flex;
        width: 90%;
        padding-left: 20px;
        /* margin: 0 auto 0 auto; */
        /* justify-content: center; */
    }

    /* para empresa */
    #fc_mobile .material-symbols-outlined {
        transform: scale(1.5);
        margin: 20px 0 0 20px;
        color: white;
    }

    #list_fc_mobile {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
        margin-top: 25px;
    }

    #list_fc_mobile a {
        font-size: var(--font03);
        text-decoration: none;
        color: white;
        display: flex;
        width: 90%;
        padding-left: 20px;
        /* margin: 0 auto 0 auto; */
        /* justify-content: center; */
    }
}

/* Celular */
@media (max-width: 600px) {
    /* botão do menu */
    #nav {
        display: none;
    }

    #icon_menu {
        display: block;
        color: white;
    }

    #icon_menu button {
        background-color: transparent;
        border: none;
        width: 50px;
        height: 50px;
    }

    #icon_menu button .material-symbols-outlined {
        transform: scale(1.5);
    }

    /* menu que vai aparecer */
    #header_mobile {
        display: none;
        position: fixed;
        width: 65%;
        right: 0;
        background-color: var(--color01);
        padding: 5px;
        height: 100vh;
        z-index: 120;
    }

    /* menu principal */
    #nav_mobile .material-symbols-outlined {
        transform: scale(1.5);
        margin: 20px 0 0 20px;
        color: white;
    }

    #list_nav_mobile {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
        margin-top: 25px;
    }

    #list_nav_mobile a, #list_nav_mobile li{
        font-size: var(--font03);
        text-decoration: none;
        color: white;
        display: flex;
        width: 90%;
        /* margin: 0 auto 0 auto; */
        /* justify-content: center; */
    }

    #list_nav_mobile li {
        padding-left: 20px;
    }

    #list_nav_mobile li .material-symbols-outlined {
        transform: scale(0.7) rotate(90deg);
        margin: 0 0 0 10px;
    }

    /* para você */
    #fy_mobile .material-symbols-outlined {
        transform: scale(1.5);
        margin: 20px 0 0 20px;
        color: white;
    }

    #list_fy_mobile {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
        margin-top: 25px;
    }

    #list_fy_mobile a {
        font-size: var(--font03);
        text-decoration: none;
        color: white;
        display: flex;
        width: 90%;
        padding-left: 20px;
        /* margin: 0 auto 0 auto; */
        /* justify-content: center; */
    }

    /* para empresa */
    #fc_mobile .material-symbols-outlined {
        transform: scale(1.5);
        margin: 20px 0 0 20px;
        color: white;
    }

    #list_fc_mobile {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
        margin-top: 25px;
    }

    #list_fc_mobile a {
        font-size: var(--font03);
        text-decoration: none;
        color: white;
        display: flex;
        width: 90%;
        padding-left: 20px;
        /* margin: 0 auto 0 auto; */
        /* justify-content: center; */
    }
}

/* Celular mini */
@media (max-width: 370px) {
    #email_tel {
        flex-direction: column;
        gap: 8px;
    }

    #header_mobile {
        width: 70%;
    }
}