*{
    padding: 0;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 1vh;
    background: linear-gradient(rgba(228, 176, 5, 0.938) 0%, rgb(3, 7, 248) 30%, rgba(241, 186, 3, 0.945) 1000%);
    background-repeat: no-repeat;
}



/*--------------------------*/
/*  ELEMENTOS DO HEADER     */
/*--------------------------*/

header{
    max-width: 100%;
    height: 110vh;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    position: relative;
}

/*------- NAVEBAR ------------*/

header nav#nav-esquerda{
    width: 100%;
    height: 150px;

    display: flex;
    flex-flow: row;
    align-items: center;   
    /* justify-content: space-between; */
}

header nav#nav-esquerda div#logo{
    max-width: 140px;
    max-height: 500px;
    margin-left: 5rem;
    
}

header nav#nav-esquerda div#logo img{
    max-width: 99%;
    max-height: 100%;
}

/*-------- MENU HAMBURGUER -----------*/

header nav#nav-esquerda ul#icone-menu{
    display: none;
}

header nav#nav-esquerda ul#icone-menu li{
    list-style: none;
}

header nav#nav-esquerda ul#icone-menu li ion-icon{
    font-size: 50px;
    color: #fad70e;
    margin-right: 0.1rem;
}

/*-------- MENU -------------- */

header nav#nav-esquerda ul.menu-principal{
    margin-left: 8rem;

    display: flex;
    flex-flow: row wrap;
}

header nav#nav-esquerda ul.menu-principal li{
    list-style: none;
    margin-right: 4rem;
}

header nav#nav-esquerda ul.menu-principal li a{
    text-decoration: none;
    color: #fff;
    font-size: 110%;
    text-shadow: 4px 6px 10px #000000;
    padding-bottom: 10px;
    transition: .3s ease-in-out;
}

header nav#nav-esquerda ul.menu-principal li a:hover{
    opacity: 2.6;
    border-bottom: 1px solid #1f0ff8;
}


/*-------- botao whatsapp-------------- */

.btn-whatsapp {
    position: fixed;
    bottom: 95px;
    right: 30px;
    z-index: 99;
}
  
  .btn-whatsapp img{
    max-width: 50px;
    transition: transform 1.6s;
  }

  img:hover{
    transform: scale(1.1);
  }
    
  

  .btn-whatsapp .tooltip-text{
    visibility: hidden;
    position: absolute;
    width: 120px;
    top: 8px;
    left: -144px;
    padding: 6px;
    border-radius: 8px;
    text-align: center;
    background-color: #0f0f0f9d;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.4s;
  }

  .btn-whatsapp:hover .tooltip-text{
    visibility: visible;
    opacity: 1;
  }

@media screen and (max-width: 768px){
.btn-whatsapp{
    img{
        max-width: 64px;
    }
}
}



/*card animado*/

.container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    flex-wrap: wrap;
    z-index: 1;
 }
 .container .titulo h1{
    margin-left: 70px;
    width: 1px;
    color: #fdfdfd;
    font-family: 'Times New Roman', Times, serif;
 }

 .container .titulo1 h1{
    text-transform: uppercase;
    text-align: center ;
    font-size: 1.1em;
    margin-left: 0px;
    width: px;
    color: #fdfdfd;
 }
 

 .container .card{
    position: relative;
    width: 280px;
    height: 400px;
    margin: 30px;
    box-shadow: 20px 20px 50px rgba(0,0,0, 0.5);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden ;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
}

.container .card .content{
    padding: 20px;
    text-align: center;
    transform: translateY(100px);
    opacity: 0;
    transition: 0.5s;

}

.container .card:hover .content{
   transform: translateY(0px);
   opacity: 1;
}

.container .card .content h2{
    position: absolute;
    top: -40px;
    right: 10px;
    font-size: 6em;
    color: rgba(255, 255, 255, 0.164);
    pointer-events: none;
}

.container .card .content p{
    text-transform: uppercase;
    text-align: justify;
    font-size: 1em;
    color: #ffffff;
    font-weight: 300;
 }

.container .card .content a{
    text-transform: uppercase;
    font-size: 15px;
    color: #f7f1f1;
    font-weight: 200;
    text-decoration: none;
    padding: 8px 20px;
    margin-left: -10%;
 }

.container .card .content a:hover{
    font-size: 0.8rem;
    position: relative;
    display: inline-block;
    background: #ecb706;
    color: #000000;
    text-decoration: none;
    border-radius: 20px;
    margin-left: 2px;
}

@media screen and (max-width: 1200px) {
    body{
        background: linear-gradient(rgba(3, 7, 248) 0%, rgb(3, 7, 248) 45%, rgba(3, 7, 248) 100%);
       
        background-position: center center;
        background-size: cover;
    }
}

@media screen and (max-width: 600px) {
    boby{
        background: linear-gradient(rgba(3, 7, 248) 0%, rgb(3, 7, 248) 45%, rgba(3, 7, 248) 100%);
        background-position: center center;
        background-size: cover;
    }
}

/*------- NAVEBAR ------------*/

@media screen and (max-width: 1110px){
    header nav#nav-esquerda ul.menu-principal li a{
        font-size: 90%;
    }
}

@media screen and (max-width: 970px) {

    header nav#nav-esquerda div#logo{
        margin-left: 1rem;
    }

    /*-------- MENU HAMBURGUER -----------*/

    header nav#nav-esquerda{
        justify-content: space-between;
    }

    header nav#nav-esquerda ul#icone-menu{
        display: flex;
    }

    header nav#nav-esquerda ul#icone-menu li#menuX{
        display: none;
    }   

    /*-------- MENU -------------- */
    header nav#nav-esquerda ul.menu-principal{
        flex-direction: column;
        width: 80%;
        height: 70vh;
        flex-direction: column;
        background: linear-gradient(rgba(228, 176, 5, 0.938) 0%, rgb(3, 7, 248) 45%, rgba(241, 186, 3, 0.945) 100%);;
        padding-top: .5rem;

        position: absolute;
        top: 7rem;
        right: 0;
        z-index: 999;

        display: none;
    }

    header nav#nav-esquerda ul.menu-principal li{
        margin: .5rem;
    }

    header nav#nav-esquerda ul.menu-principal li a{
        font-size: 120%;
    }
}

hr{
   text-align: center;
   border-top: 5px solid #f7cb07;
   margin-top: -5px;
}  

h5{
    color: #fcfcfc8f;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 10px;
    font-size: 5rex;
    
} 


i{
    color: #f3d00c;
    cursor: pointer; 
    transition: transform 2.6s; 
    margin-left: 10px;
} 

i:hover{
    opacity: 10;
    color: #ffffff;
    transform: scale(2.1);
}

/*------- span com informaç]oes da ia------------*/

.titulo1  .tooltip-text{ 
    position: absolute;
    width: 250px;
    top: 8px;
    left: -144px;
    padding: 9px;
    border-radius: 8px;
    text-align: center;
    background-color: #0400ff;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.4s;
    margin-left: 18%;
    margin-top: -4%;
    border: 1px solid #ecb706;
    font-size: 13px;
  }

  .titulo1:hover   .tooltip-text{
    visibility: visible;
    opacity: 1;
   
  }

  .titulo1  .tooltip-text1{ 
    position: absolute;
    width: 250px;
    top: 8px;
    left: -144px;
    padding: 9px;
    border-radius: 8px;
    text-align: center;
    text-align: center;
    background-color: #0400ff;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.4s;
    margin-left: 51%;
    margin-top: -4%;
    border: 1px solid #ecb706;
    font-size: 13px;
  }

  .titulo1:hover   .tooltip-text1{
    visibility: visible;
    opacity: 1;
   
  }

  .titulo1  .tooltip-text2{ 
    position: absolute;
    width: 250px;
    top: 8px;
    left: -144px;
    padding: 9px;
    border-radius: 8px;
    text-align: center;
    background-color:  #0400ff;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.4s;
    margin-left: 83%;
    margin-top: -4%;
    border: 1px solid #ecb706;
    font-size: 13px;
  }

  .titulo1:hover   .tooltip-text2{
    visibility: visible;
    opacity: 1;
   
  }

  .marcacao .tooltip-text4{ 

    position: absolute;
    width: 250px;
    top: 20px;
    left: -50px;
    padding: 9px;
    text-align: center;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.4s;
    margin-left: 12%;
    margin-top: -14%;
    font-size: 10px;
  }

  .marcacao:hover   .tooltip-text4{
    visibility: visible;
    opacity: 1;  
  }

  /*-------para ous cusos--------*/
  .titulo  .tooltip-text{ 
    position: absolute;
    width: 250px;
    top: 8px;
    left: -144px;
    padding: 9px;
    border-radius: 8px;
    text-align: center;
    background-color: #0400ff;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.4s;
    margin-left: 18%;
    margin-top: -4%;
    border: 1px solid #ecb706;
    font-size: 13px;
  }

  .titulo:hover   .tooltip-text{
    visibility: visible;
    opacity: 1;
   
  }

  .titulo  .tooltip-text1{ 
    position: absolute;
    width: 250px;
    top: 8px;
    left: -144px;
    padding: 9px;
    border-radius: 8px;
    text-align: center;
    text-align: center;
    background-color: #0400ff;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.4s;
    margin-left: 51%;
    margin-top: -4%;
    border: 1px solid #ecb706;
    font-size: 13px;
  }

  .titulo:hover   .tooltip-text1{
    visibility: visible;
    opacity: 1;
   
  }

  .titulo  .tooltip-text2{ 
    position: absolute;
    width: 250px;
    top: 8px;
    left: -144px;
    padding: 9px;
    border-radius: 8px;
    text-align: center;
    background-color:  #0400ff;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.4s;
    margin-left: 83%;
    margin-top: -4%;
    border: 1px solid #ecb706;
    font-size: 13px;
  }

  .titulo:hover   .tooltip-text2{
    visibility: visible;
    opacity: 1;
   
  }

 
  
  :root {
    --squid-widget-header-background-color: #002efc;
    --squid-widget-body-background-color: #f1de71;
 }

 