* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: black;
    margin-top: 15px;
}

body {
    background-color: #f2f4e7;
    color: black;
}


/* Cabeçalho*/


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
    height: 7vh;
    color: #0000;

}


header>ul {
    list-style: none;
    width: 40%;
    display: flex;
    justify-content: space-evenly;
}




#logo_WL {
    width: 350px;
    transition: 0.4s ease-in-out;
}



a {
    text-decoration: none;
    color: #003366;
    transition: 0.4s ease-in-out;

}


li>a:hover {
    color: #cda75e;
    font-size: 16.5px;
    text-decoration: underline;

}


#pag_principal {
    color: #cda75e;
    text-decoration: underline;
}



header>li {
    transition: 0.2s;

}






#insta svg {
    fill: #003366;
    transition: 0.5s;
    width: 60px;
    border-radius: 50px;
}

#insta svg:hover {

    transform: scale(1.05);
}

#drop {
    position: relative;
}

#dropmenu {
    position: absolute;
    width: 150px;
    opacity: 0%;
    z-index: -99;
    background-color: rgb(236, 234, 234);
    text-align: center;
    transition: 1s;
    list-style: none;
    text-align: center;
    margin-top: 30px;
    border-top: #003366 solid 2px;
}

#dropmenu>li {
    color: gray;
    height: 30px;
    padding-top: 1vh;
    text-align: left;
}

#drop:hover #dropmenu {
    opacity: 100%;
    z-index: 99;
    transition: 1s;
}

#dropmenu li:hover {
    background-color: lightgray;
    transition: 0.6s;
}



/* Início do Body */


#container {
    margin-top: 80px;
    height: 95vh;
    width: 100%;
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.card_insta_num {
    margin: 50px;
    height: 90vh;
    width: 60%;
    border-radius: 30px;
    text-align: center;

}

.card_loc {
 
    height: 90vh;
    border-radius: 30px;
    text-align: center;
}

#h1_loc {
    color: #003366;
    font-size: 50px;
    margin-left: 38%;
}

iframe {
    width: 700px;
    height: 60vh;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    transition: .5s ease-in;
    margin-left: 15%;
}


iframe:hover {
    transform: scale(1.02);
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.6);
}


#tit_card_insta {
    font-size: 35px;
    color: #003366;
    margin-bottom: 50px;
    height: 100px;
    width: 100%;

}





#img_insta_ctt {
    width: 400px;
}

#link_i {
    font-size: 17px;
    transition: .3s ease-out;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}


#link_i:hover {
    font-size: 18px;
    text-decoration: underline;
}



#p_gmail {
    font-size: 17px;
    transition: .3s ease-out;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #003366;
    margin-top: -75px;

}


#wpp_card_insta {
    width: 400px;
}


#gmail_card_insta {
    width: 450px;
    margin-top: -25px;

}



/*footer*/

#volte_topo {
    width: 100%;
    height: 8vh;
    background-color: #F4E1A1;
    padding-top: 0.5vh;
    margin: 0%;
}



#btn_voltar {
    text-align: center;
    width: 300px;
    height: 5vh;
    background-color: #2C3E50;
    border-radius: 15px;
    margin-left: 40%;
    transition: .3s ease-in-out;
}

#btn_voltar:hover {
    transform: scale(1.06);
}

#click_back {
    color: #f2f4e7;
    font-size: 16px;

}



#click_back:hover {
    color: #F4E1A1;
}


.rodape {
    margin: 0%;
    background: linear-gradient(to bottom, #2C3E50, #000000);
    width: 100%;
    height: 40vh;
    text-align: center;
    display: grid;
    column-gap: 10px;
    justify-items: center;
    grid-template-columns: 1fr 0.3fr 1fr;

}



.rodape div {
    margin: 10px;
    width: 100%;


}



/* card 1 */

#card1_footer img {
    margin-top: 50px;
    width: 400px;
}




/* card 2 */

#card2_footer {
    text-align: left;

}


.lista_footer {
    text-decoration: none;
    list-style: none;
    text-align: left;
}




#card2_footer h5 {
    margin-top: 90px;
    color: #F4E1A1;
    font-size: 23px;
    text-decoration: underline;
}


.lista_footer li a {
    color: #f2f4e7;
    font-size: 18px;
    text-align: left;
}


/* card 3 */


#card3_footer h1 {
    color: #f2f4e7;
    font-size: 28px;
    margin-top: 80px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#card3_footer img {
    margin-top: 10px;
    border-radius: 30px;
    transition: 0.5s ease-in-out;
}


#card3_footer img:hover {
    transform: scale(1.02);
    box-shadow: 5px 5px 15px rgba(192, 42, 112, 0.8);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}





@media (max-width: 768px) {


    * {
        font-size: 11px;
    }

    header {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        column-gap: 15px;
        height: 7vh;
        color: #0000;
     
    }
    #ul_escolha{
        column-gap: 4%;
    }


    #logo_WL {
        width: 150px;
    }


    #insta{
        transform: scale(0.7);
        margin-left: 20px;
    }




    #container {
        margin-top: 40px;
        height: 150vh;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-items: center;
        gap: 20px;
    }




    .card_insta_num {

        height: 90vh;
        width: 100%;
        margin: 0px;
        border-radius: 30px;
        text-align: center;

    }


    #gmail_card_insta{
       
        width: 400px;
    }

    .card_loc {

        height: 90vh;
        border-radius: 30px;
        text-align: center;
        margin-left: 5%;
    }


    iframe{
        margin: 0%;
        width: 400px;
        height: 30vh;
    }


    
/*Footer*/

    footer {
        width: 100%;
    }

    #card1_footer img {
        width: 150px;
    }


    #btn_voltar {
        margin-left: 33%;
        width: 150px;
    }


    #card2_footer h5 {
        font-size: 12px;
    }

    .lista_footer li a {
        color: #f2f4e7;
        font-size: 11px;
        text-align: left;
    }

    #card3_footer h1 {
        font-size: 13px;
    }

    #card3_footer img {
        width: 100px;
    }
}



/* media do notebook */


@media (max-width: 1366px){

    #logo_WL {
        width: 300px;
    }


    #container {
        margin-top: 40px;
        height: 150vh;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-items: center;
        gap: 20px;
    }



    section{
        height: 200vh;
    }


    .card_insta_num {

        height: 50vh;
        width: 100%;
        border-radius: 30px;
        text-align: center;

    }

    .card_loc {
        margin-top: 25%;
        margin-left: 25%;
        height: 80vh;
        border-radius: 30px;
        text-align: center;

    }

    footer {
        width: 100%;
    }


    #card1_footer img {
        width: 200px;
    }


    #btn_voltar {
        margin-left: 32%;
    }

    #card3_footer h1 {
        font-size: 18px;
    }

    #card3_footer img {
        width: 250px;
    }
}




@media (max-width: 430px) {


    * {
        font-size: 11px;
    }

    header {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        column-gap: 15px;
        height: 7vh;
        color: #0000;
     
    }

    #logo_WL {
        width: 150px;
    }


    #insta{
        transform: scale(0.7);
        margin-left: 20px;
    }


    #ul_escolha{
        column-gap: 4%;
    }

    #container {
        margin-top: 40px;
        height: 220vh;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-items: center;
        gap: 20px;
    }




    .card_insta_num {

        height: 90vh;
        width: 100%;
        margin: 0px;
        border-radius: 30px;
        text-align: center;

    }


    #gmail_card_insta{
       
        width: 400px;
    }

    .card_loc {

        height: 90vh;
        border-radius: 30px;
        text-align: center;
        margin-left: 5%;
    }


    iframe{
        margin: 0%;
        width: 400px;
        height: 30vh;
    }


    
/*Footer*/

    footer {
        width: 100%;
    }

    #card1_footer img {
        width: 150px;
    }


    #btn_voltar {
        margin-left: 33%;
        width: 150px;
    }


    #card2_footer h5 {
        font-size: 12px;
    }

    .lista_footer li a {
        color: #f2f4e7;
        font-size: 11px;
        text-align: left;
    }

    #card3_footer h1 {
        font-size: 13px;
    }

    #card3_footer img {
        width: 100px;

    }
}




