* {
    margin: 0;
}


header{
  background-color: rgb(0, 0, 0);
  display: flex;
}

body{
  background-color: #000000;
}
/* Barra de pesquisa */

.barra {
    margin: 40px 0px 10px 80px;
    padding: 0 20px;
    background-color: white;
    width: 200px;
    height: 40px;
    border-radius: 50px;
    border: 1.5px solid #06CBCD;
    display: flex;
    align-items: center;
}

.barra ::placeholder{
    color: rgb(127, 127, 127);
}

#searchbar {
    width: 160px;
    height: 30px;
    padding: 0 15px;
    font-size: 16px;
    border: none;
    background-color: rgb(255, 255, 255);
    box-sizing: border-box;
    margin: 0; 
}   

.barra i{
    color: #06CBCD;
    font-size: 20px;
    background-color: rgba(255, 255, 255, 0);
    display: flex;
    justify-content: end;
    position: relative;
    margin-left: 30px;
}

#searchbar:focus {
    outline: none;
    border: none; 
}

header nav ul{
        list-style-type: none;
        color: #06CBCD;
    }



    
    header nav.menu-desktop ul {
        display: flex;
        margin-top: 40px;
        gap: 30px;
        margin-left: 50px;
        color: #ffffff;
        list-style: none;
        padding: 0;

    }

    header nav.menu-desktop ul li{
        margin-top: 15px;
        color: #ffffff;
    }

    header nav.menu-desktop ul li a{

      font-size: 20px;
        font-weight: 500;
        text-decoration: none;
        color: #ffffff;
        
    }

  header nav.menu-desktop a:hover{
    color: #06CBCD;

    }





nav{
    display: flex;
    justify-content: center;
}

nav img{
    width: 180px;
    margin-left: 20px;
    margin-top: -20px;
    margin-bottom: -10px;
}

/*carrosel*/
.carrossel {
    position: relative;
    display: table;
    width: 100%;
    background-image: url(imagens/interface.png);
    height: 600px;
    background-position: 30% 45%;
    background-size: cover;
    z-index: 1;
    overflow: hidden;
}

.interface1 h1{
  margin: 130px 55px 0px 80px;
  font-size: 40px;
  color: #ffffff;
  text-shadow: 2px 2px 5px rgb(0, 0, 0);
}
.interface1 p{
  margin: 20px 55px 0px 80px;
  font-size: 20px;
  font-weight: 100;
  max-width: 600px; 
  color: #ffffff;
   font-family: sans-serif "Montserrat";
   text-shadow: 2px 2px 5px rgb(0, 0, 0);
}

.interface1 button {
  margin: 100px 0px 0px 80px;
  padding: 15px;
  cursor: pointer;
  border-radius: 50px;
  background-color: black ;
  color: white;
  border: transparent;
  box-shadow: 0 0 40px 20px rgba(0, 0, 0, 0.326);
  font-size: 10px;
  font-weight: bold;
  
}


/* Sobre nos*/


.sobre {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;        
  justify-content: space-between;
  gap: 40px;    
  background-color: rgb(0, 0, 0);              
}

.sobre .texto {
  max-width: 600px;           
}

.sobre h1 {
  margin: 20px 30px;
  font-size: 28px;
  font-weight: bold;
  color: white;
  text-align: left;
}


.sobre p {
  margin: 20px 30px;
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 1.6;
  text-align: left;
}

.sobre img {
  max-width: 400px;
}

















/*especialidades*/
@keyframes flutuar{
    0%{
        top: 0;
    }
    100%{
        top: 30px;
    }
}

section.Especialidades{
  box-shadow: 0 0 40px 2px rgba(0, 217, 255, 0.326);
   font-weight: bold;
    padding: 40px 4%;

}

section.Especialidades h2{
  text-align: center;
  font-weight: bold;
    padding: 40px 4%;
    color: #06CBCD;
}

section.Especialidades span{
  color: #ffffff;
}
section.Especialidades .flex{
    gap: 60px;
    display: flex;
}
.Especialidades .especialidades-box{
    padding: 40px;
    border-radius: 20px;
    margin-top: 45px;
    margin-bottom: 70px;
    transition: .2s;
}
.Especialidades .especialidades-box:hover{
    transform: scale(1.05);
    box-shadow: 0 0 20px rgb(0, 234, 255);
}
.Especialidades .especialidades-box i{
    font-size: 48px;
    color: #06CBCD;
}
.Especialidades .especialidades-box h3{
color: #ffffff;
font-weight: bold;
font-size: 26px;
margin: 15px 0;
}

.Especialidades .especialidades-box p{
color: #ffffff;


}

/*projetos*/
section.portifolio{

    color: #06CBCD;
    padding: 80px 4%;
    box-shadow: 0 0 40px 2px rgba(0, 217, 255, 0.326);
}

section.portifolio h2{
    color: #06CBCD;
    font-size: 50;
    text-align: center;
    font-weight: bold;
}

section.portifolio span{
  color: #ffffff;
}

section.portifolio .flex{
  color: #06CBCD;
  display: flex;
  justify-content: space-around;
  margin-top: 60px;
}
.img-port{
    width: 360px;
    height: 460px;
    background-color: #06CBCD;
    background-size: cover;
    background-position: 100% 0%;
    transition: .9s;
    cursor: pointer;
    border-radius: 40px;
    position: relative;
}
.img-port:hover{
    background-position: 100% 100%;
}
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.705);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    color: white;
    opacity: 0;
    transition: .5s;
}
.overlay:hover{
    opacity: 1;
}

/*RODAPE*/
footer{
  display: flex;
    padding: 40px ;
    background-color: rgb(28, 28, 28);
    box-shadow: 0 0 40px 2px rgba(0, 208, 255, 0.477);

}

.flex{
    display: flex;
}


footer img{
  margin-left: -20px;
  margin-bottom: -20px;
  width: 80px;
}

.logo-footer{
    
    margin-left: 200px;
}

.logo-footer p{
    color: #fff;
    margin-top: 20px;
    font-weight: 600;
    font-family: 'Montserrat', italic;
}

.btn-social{
    margin-left: 100px;
}

.btn-social p{
    margin-left: 10px;

}

.btn-social i{
   color: #06CBCD;

}

.btn-social h3{
    font-weight: bold;
    font-size: 20px;
    color: #06CBCD;
    margin-top: 20px;
    margin-bottom: 35px;
}

footer a{
    color: #ffffff;
    text-decoration: none;
    display: flex;
    margin-top: 10px;
}

footer ul li{
    display: flex;
    text-decoration: none;
}

.mapa{
    margin-left: 100px;
}

.mapa h3{
    font-weight: bold;
    font-size: 20px;
    color: #06CBCD;
    margin-top: 20px;
    margin-bottom: 35px;
}




footer .direitos{
    color: #ffffff;
    text-align: center;
    justify-content: center;
    margin-top: 50px;
    font-size: 17px;
    margin-left: 150px;
}

.mapa a:hover{
    transform: scale(1.2);
    color: #06CBCD;
}


@media screen and (min-width: 1000px){
.btn-abrir-menu{
    display: none;
}
}

.menu-mobile{
  display: none;
}

@media screen and (max-width: 1000px){
.menu-desktop{
    display: none;
}

/* MENU MOBILE */
.btn-abrir-menu i {
  color: #06CBCD;
  display: block;
  margin-left: 220px;
  margin-top: 45px;
  font-size: 40px;
  cursor: pointer;

}


.menu-mobile {
  background-color: rgb(0, 0, 0);
  text-decoration: transparent;
  position: fixed;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 30000;
  width: 0%;
  overflow: hidden;
  transition: 0.5s;
}

.menu-mobile a{
  background-color: transparent;
}

.overlay-menu {
  background-color: rgba(0, 0, 0, 0.445);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20000;
  display: none;
}

.menu-mobile.abrir {
  width: 70%;
}

.menu-mobile .btn-fechar i {
  color: #06CBCD;
  font-size: 40px;
}

.menu-mobile .btn-fechar {
  padding: 20px 5%;
  cursor: pointer;
}

.menu-mobile nav ul {
  list-style: none;
  text-align: right;
  text-decoration: rgba(0, 0, 0, 0);
}

.menu-mobile  ul li a {
 list-style: none;
 font-style: none;
  color: #06CBCD;
  font-size: 20px;
  font-weight: 300;
  padding: 20px 8%;
  display: block;
  background-color: rgba(0, 255, 255, 0);
  text-decoration: rgba(255, 255, 255, 0);
  font-weight: bold;
}

header i{
    background-color: transparent;
}


.menu-mobile ul li a:hover {
  color: rgb(255, 254, 254);
}

/* Barra de pesquisa */

.barra {
    display: none;
}


nav img{
    width: 120px;
    margin-left: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
}

/*carrosel*/
.carrossel {
    height: 60vh;
}

.interface1 h1{
  margin-top: 60px;
  font-size: 20px;
}

.interface1 p{
  font-size: 12px;
}

.interface1 button {
  margin: 50px 0px 20px 80px;
  padding: 10px;
  font-size: 7px;
  font-weight: bold;
  
}


/* Sobre nos*/


.sobre {
  margin-top: 0px;
  margin-bottom: 50px;
  flex-direction: column-reverse;    
        
}

.sobre .texto {
  max-width: 600px;           
}

.sobre h1 {
  margin: 20px 30px;
  font-size: 28px;
  font-weight: bold;
  color: white;
  text-align: left;
}


.sobre p {
  margin: 20px 30px;
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 1.6;
  text-align: left;
}

.sobre img {
  display: flex;
  max-width: 500px;
  margin-bottom: -50px;
}

/*especialidades*/

section.Especialidades span{
  color: #ffffff;
}
section.Especialidades .flex{
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.Especialidades .especialidades-box{
    margin-top: 5px;
    margin-bottom: 40px;
}


/*projetos*/
section.portifolio{
    display: flex;
    flex-direction: column;
    color: #06CBCD;
    padding: 80px 4%;
}

section.portifolio h2{
    color: #06CBCD;
    font-size: 50;
    text-align: center;
    font-weight: bold;
}

section.portifolio span{
  color: #ffffff;
}

section.portifolio .flex{
  display: flex;
  flex-direction: column;
  color: #06CBCD;
  display: flex;
  justify-content: space-around;
  margin-top: 60px;
}

.img-port{
    width: 360px;
    height: 460px;
    margin-bottom: 50px;
    background-color: #06CBCD;
    background-size: cover;
    background-position: 100% 0%;
    transition: .9s;
    cursor: pointer;
    border-radius: 40px;
    position: relative;
}
.img-port:hover{
    background-position: 100% 100%;
}

footer img{
  margin-top: -25px;
  width: 70px;
}

.logo-footer{
    margin-left: 20px;
}

.logo-footer p{
    margin-top: 10px;
    font-size: 10px;
}

.btn-social{
    margin-left: 10px;
}

.btn-social p{
    margin-left: 5px;
    font-size: 10px;
    margin-left: 3px;

}

footer i{
    font-size: 10px;
}

.btn-social h3{
    font-size: 15px;
    margin-top: 5px;
    margin-bottom: 15px;
    margin-left: 7px;
}

.mapa{
    margin-left: 1px;
}

.mapa h3{
    font-size: 15px;
    margin-bottom: 4px;
    margin-top: 7px;
    margin-left: 30px;
}

.mapa a{
    font-size: 10px;
    margin-left: -10px;
}


footer .direitos{
    margin-top: 50px;
    margin-left: 20px;
    font-size: 10px;

}


.esse{
    display: none;
}

}



