*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    overflow-x: hidden;
}

body{
    background-color: rgb(15, 12, 43);
}

header{
    width: 100%;
    height: 100vh;
    background-image:url("media/pexels-clam-lo-3355400.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    align-items: center;
    /*Texto*/
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    background-attachment: fixed;
       
}


#nome{
    position: absolute;
    padding-left: 10%;
    width: 100%;
    color: rgb(243, 243, 243);
    font-family:'Monoton', cursive;
    font-size: max(60px, 10vw);
   text-shadow: rgb(3, 27, 248) 0px 0px 20px ;
   animation-name: shadow;
   animation: shadow;
   animation-iteration-count: infinite;
   animation-duration: 10s;
   
   
 
}
   @keyframes shadow {
    0% {
        text-shadow: rgb(3, 27, 248) 0px 0px 20px ;
      }
      25% {
        text-shadow: rgb(8, 250, 21) 0px 0px 20px ;
      }
      50% {
        text-shadow: rgb(248, 3, 15) 0px 0px 20px ;
      }
      75%{
        text-shadow: rgb(5, 243, 17) 0px 0px 20px ;
      }
      100%{
        text-shadow: rgb(3, 27, 248) 0px 0px 20px ;
      }
       
   }

/*@media(max-width: 900px){
    header{
        background-image: url("media/91009506_147282730117685_5135827360326615040_n.jpg");
        
    }
}*/

section{
    width: 100%;
    height: 100vh;
    background-color: rgb(43, 32, 61);
    text-align: center;
    padding: 30px;
}

.format-sec{
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    align-items: center;
    /*Texto*/
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    background-attachment: fixed;

}

.sec01{
    
    background-image:url("media/pexels-cottonbro-5531895.jpg");
   
     }

.sec02{
    
    background-image:url("media/pexels-pixabay-46798.jpg");
  
       }

       .sec03{
       
        background-image:url("media/MODELO-EXTERNO.jpg");
           }

           h1{

               color: white;
               font-size: max(30px, 8vw);
               text-shadow: rgb(0, 0, 0) 2px 2px 3px;
               
           }
           
           p{
               display: inline-block;
               color: white;
               font-size: max(20px, 5vw);
               text-shadow: rgb(0, 0, 0) 2px 2px 3px;
               
           }

           #mapa{
            display: flex;
            width: 100%;
            height: auto;
            padding: 30px 10px;
            align-items: center;
            justify-content: center;
           }

           iframe{
            display: flex;
            max-width: 800px;
            height: 500px;
            border-radius: 5px;
            margin-left: 30px;
           }

           /*Animação JS*/

           [data-anima]{
            opacity: 0;
            transition: .8s;
           }

           [data-anima="esquerda"]{
           transform: translate3d(-50px, 0, 0);
            }

            [data-anima="direita"]{
                transform: translate3d(50px, 0, 0);
            }

            [data-anima="centro"]{
                transform: translate3d(0, 50px, 0);
            }     

            [data-anima].animacao{
                opacity: 1;
                transform: translate3d(0,0,0);
            }
  

            .fb--page{
                
                max-width: 600px;
                display: flex;
                height: auto;
                margin: auto;
                align-items: center;
                justify-content: center;
                padding: 30px 0px ;
            }
         
            @media (max-width:499px){
                #mapa{
                    flex-direction: column-reverse;
                    margin: 0;
                    padding: 0;
                }

                #mapa iframe{
                    width: 300px;
                    margin-bottom: 30px;
                    height: 500px;
                    margin: 30px 0px;
                    padding: 0;
                    
                }
              
            }
        
           @media(max-width:900px) and (max-height:600px) and (orientation:landscape){
            h1{
                font-size: 30px;
            }
            p{
                font-size: 20px;
            }
           } 
