*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    list-style: none;
    text-decoration: none;    
}
@import url('https://cdn-uicons.flaticon.com/2.3.0/uicons-brands/css/uicons-brands.css');

body{
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

img{
    width: 100%;
}

header{
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #02913F;
    z-index: 1;
    

    & .grid{
        width: 100%;
        max-width: 1200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; 
    }
}

header .logo-menu{
    width: 100%;
    display: flex;
    justify-content:center ;
    align-items: center;
    margin-bottom: 20px;

    & .log{
        display: flex;
        width: 90px;
        margin-right: 10px;
        border-radius: 30px;
    }

}

header .redes-sociais{
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 20px;
    gap: 20px;
    & .redes{
        display: flex;
        gap: 20px;

        & .facebook, .instagram, .whatsapp{
            display: flex;
            justify-content: center;
            width: 30px;
            padding: 5px;
            border-radius: 50px;
            background-color: white;
        }
    }
}

header nav{
    display: flex;
    justify-content: center;
    align-items: center;
}

header nav ul{
    display: flex;
    justify-content:center;
    align-items: center;
}

header nav ul li a{
    font-size: 18px;
    font-weight: 700;
    color: #F8F105;
    margin-left: 50px;
    transition: all 0.3s ease-in;
}

header nav ul li a:hover{
    border-bottom: solid #ffffff 1.5px;
    color: #fff;
}

header nav ul .dropdown{
    position: relative;
}
header nav ul .dropdown-container{
    display: none;
    flex-direction: column;
    justify-content:center;
    position: absolute;
    & a{
        padding: 20px;
        width: 200px;
        font-size: 12px;
        background-color: white;
    }
}


main{
    margin: 200px 0px;
}
main .grid{

    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    
}

footer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#02913F;
    /* position: absolute; */
    bottom: 0px;

    & .grid{
        width: 100%;
        max-width: 1200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;  

        & .info{
            height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            & .dados{
                color: #fff;
                max-width: 300px;
            }
            & .map{
                max-width: 500px;
                & iframe{
                  width: 100%;
                  max-height: 180px;
                  
                }
            }
        }
        
        & .copy{
            width: 100%;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px 0px;
            border-top: solid 1px #fff;
        }
    }
}

/*RESPONSIVIDADE*/



@media screen and (max-width: 900px) {

    header .redes-sociais{
        justify-content: center;
        gap: 150px;
    }
    header nav{
        display: none;
    }

    footer{
      
        & .info{
            flex-direction: column;
            gap: 30px;
        }
        
        & .copy{
            text-align: center;
        }
    }
    
}

@media screen and (max-width: 599px) {
    header .redes-sociais{
        gap: 20px;
    }
   
    header nav{
        display: none;
    }

    footer{
        height: 550px;
        & .info{
            flex-direction: column;
            gap: 30px;
        }

        & .copy{
            text-align: center;
        }
    }
    
}

@media screen and (max-width: 499px) {
    header .redes-sociais{
        flex-direction: column;
        gap: 10px;
    }
   
    header nav{
        display: none;
    }

    footer{
        height: 550px;
        & .info{
            flex-direction: column;
            gap: 30px;
        }

        & .copy{
            text-align: center;
        }
    }
    
}