* {
    margin: 0;
    padding: 0;
}
/*cabeçalho*/
a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    opacity: 0.7;
}

.logo {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #178FE6 ;
    height: 10vh;   
}


.nav-list {
    list-style: none;
    display: flex;
    
}

.nav-list li {
    letter-spacing: 3px;
    margin-left: 32px;
    font-size: 20px;
  }
  
  .mobile-menu {
    display: none;
    cursor: pointer;
  }
  
  .mobile-menu div {
    width: 32px;
    height: 2px;
    background: #fff;
    margin: 8px;
    transition: 0.3s;
  }
  
  @media (max-width: 999px) {
    body {
      overflow-x: hidden;
    }
    .nav-list {
      position: absolute;
      top: 8vh;
      right: 0;
      width: 50vw;
      height: 92vh;
      background: #23232e;
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      transform: translateX(100%);
      transition: transform 0.3s ease-in;

    }
    .nav-list li {
      margin-left: 0;
      opacity: 0;
    }
    .mobile-menu {
      display: block;
    }
  }
  
  .nav-list.active {
    transform: translateX(0);
  }
  
  @keyframes navLinkFade {
       body {
    overflow-x: hidden; 
    }
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
  }
  
  .mobile-menu.active .line2 {
    opacity: 0;
  }
  
  .mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -7px);
  }

  /*home*/
  
 
  main {
    background: #000001;
    text-align: center;
    color: white;
  }



  #logo-tipo img {
   text-align: center;
   width: 100%;
  }

  /*quem somos*/

  #robo {
    float: left;
    text-align: center;
    margin-top: -70px;
   
  }

  h2 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 40px;
    margin-bottom: 80px;
  }

  .quem-somos p {
    
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 25px;
    border-width: medium;      
  }

  /*Servicos*/

  #servicos h2 {
    margin-top: 20%;
       
  }

  /*Contatos*/
  
  .cont {
    float: right;
    margin-top: 80px;
    margin-right: 40px;
  }
  
  .form button {
    padding: 10px 20px;
    background-color: #178FE6;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* rodape */
  .rodape-final {
    background-color: #178FE6;
    color: #fff;
    display: flex;
    justify-content: space-around;
    padding: 10px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 17px;
  }

  .rodape-final li {
    list-style: none;
    margin-top: 3px;
  }

  .redes-sociais p {
    margin-bottom: 10px;
    margin-left: 80px;
  }

  #facebook {
    width: 8%;
    margin-bottom: 14px;
    margin-left: 80px;
  }

  #instagram {
  width:8% ;
  margin-bottom: 20px;
  
  }

  #linkedin {
    width: 10%;
    margin-bottom: 13px;
    margin-left: -8px;
  
  }


  .contatos-rodape p {
    margin-bottom: 8px;
   
  }

  body {
    overflow-x: hidden; /* Hide horizontal scrollbar */
  }


  @media(max-width: 999px) {
    

    #robo {
      display: none;
    }

    .cont {
      display: none;
    }

    .rodape-final li {
      display: none;
    }

    #instagram {
      width:8% ;
      margin-bottom: 16px;
      
      }

      #linkedin {
        width: 10%;
        margin-bottom: 11px;
        margin-left: -4px;
      
      }
    
  
    
    
  }

  @media(max-width: 600px) {
    .rodape-final {
      padding: 10px;
      font-size: 15px;
    }

  
    #instagram {
    width:8% ;
    margin-bottom: 15px;
    
    }
  
    #linkedin {
      width: 10%;
      margin-bottom: 11px;
      margin-left: -4px;
    
    }

  
  }

  @media (max-width: 550px){
    .redes-sociais {
      display: none;
    }
  }


  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    color: black;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
    overflow-y: scroll;
    scrollbar-width: thin; /* Largura da barra de rolagem */
    scrollbar-color: #888888 #f0f0f0; /* Cor da barra e do fundo da barra */
    color: black;
}
.popup-content::-webkit-scrollbar {
  width: 8px; /* Largura da barra de rolagem */
}
.popup-content::-webkit-scrollbar-thumb {
  background-color: #888888;
  border-radius: 5px;
}

.popup-content::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}
.popup-text {
    color: black;
    font-size: 14px;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

*::-webkit-scrollbar {
  width: 8px; /* Largura da barra de rolagem */
}

*::-webkit-scrollbar-thumb {
  background-color: #888888;
  border-radius: 5px;
}

*::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}


