@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Karla:ital,wght@0,200..800;1,200..800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Blinker:wght@100;200;300;400;600;700;800;900&family=Jost:ital,wght@0,100..900;1,100..900&family=Karla:ital,wght@0,200..800;1,200..800&display=swap');


/* INDEX.HTML ABERTURA */

/* MENU-HAMBURGUER ABERTURA */
    .menu-mobile{
        background-color: rgb(255, 255, 255);
        box-shadow: 2px 2px 15px rgb(78, 78, 78);
        height: 100vh;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 999999999;
        width: 0%;
        overflow: hidden;
        transition: .3s;
    }
    .menu-mobile.abrir-menu{
         width: 70%;
    }
    .menu-mobile.abrir-menu ~ .overlay-menu{
         display: block;
    }
    .menu-mobile .ul-mobile{
        margin-left: 20px;
        text-align: left;
        display: flex;
        flex-direction: column;
        margin-top: 40px;
        gap: 20px;
    }
    .menu-mobile .ul-mobile a{
        color: rgb(0, 0, 0);
        font-family: "Inter",sans-serif;
        font-weight: 600;
        padding: 10px 20px;
    }
    .menu-mobile .ul-mobile a:hover{
        background-color: #3f7481;
        color: white;
        transition: 0.2s;
    }
    .sub-menu-mobile{
        display: flex;
        justify-content: space-between;
    }
    .sub-menu-mobile a{
        border-radius: 5px;
    }
    .icons-menu-mobile{
        width: 14%;
        background-color: #3f7481;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        border-radius: 5px;
    }
    .icons-menu-mobile i{
        font-size: 40px;
        padding: 5px;
        color: #81a0a8;
    }
    .icons-menu-mobile a:hover{
        background-color: #3f7481;
        border-radius: 5px;
    }
    .btn-abrir-menu i{
        font-size: 40px;
        padding-right: 10px;
    }
    .btn-abrir-menu{
        display: none;
    }
    .btn-fechar{
        font-size: 40px;
        padding: 10px 20px;
    }
    .btn-fechar i{
        padding: 2px 5px;
        border-radius: 5px;
    }
    .btn-fechar i:hover{
        background-color: rgb(52, 52, 52);
        color: white;
        transition: 0.2s;
    }
    .overlay-menu{
        background-color: rgba(0, 0, 0, 0.707);
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 8888;
        display: none;
    }

/* MENU-HAMBURGUER ABERTURA */

/* MEDIA 834PX ABERTURA */

@media screen and (max-width: 834px) {
    header .nav .ul-desktop, header .contato{
        display: none;
    }
    header .nav{
        justify-content: space-between;
    }
    header .btn-abrir-menu{
        display: block;
    }
    header .cabecalho img{
       margin-left: 30px;
    }
    header .btn-abrir-menu{
        margin-right: 30px;
    }
}

/* MEDIA 834PX FECHAMENTO */

/* MEDIA 430PX ABERTURA */

@media screen and (max-width: 430px) {
    header .topo p{
        font-size: 12px;
    }
    header .icons-menu-mobile{
        width: 20%;
    }
    header .icons-menu-mobile a{
        padding: 0;
    }
}

/* MEDIA 430PX FECHAMENTO */


*{
    margin: 0;
    padding: 0;
}

header{
    width: 100%;
    overflow: hidden;
}

.topo{
    width: 100%;
    height: 30px;
    background-color: #545454;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: "Inter", sans-serif;
}
.topo p,.nav ul,.contato p {
    margin: 0;
}
.cabecalho{
    flex-wrap: nowrap;
    width: 100%;
    height: 100px;
    display: flex;
    position: fixed;
    align-items: center;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgb(131, 130, 130);
    z-index: 10000;
}
.nav{
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    align-items: center;
    overflow: hidden;
}

.cabecalho img{
    width: 100px;
    margin-top: 2px;
    
}
.cabecalho ul{
    list-style: none;
    display: flex;
    gap: 5px;
    padding: 0;
}
.cabecalho a{
    text-decoration: none;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    padding: 10px 15px;
    font-family: "Blinker",sans-serif;
    font-size: 20px;
}
.ul-desktop a:hover{
    /* border-radius: 7px; */
    background-color: #81a0a8;
    color: white;
    transition: 0.2s;
}
.contato{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 25px;
    font-family: "Jost",sans-serif;
    font-weight: 600;
    color: rgb(0, 103, 15);
}

/* INDEX.HTML FECHAMENTO */

/* DESTINOS.HTML ABERTURA */


/* DESTINOS.HTML FECHAMENTO */