/* Responsive */
@media(max-width:768px){

  .cards, .saas-cards { flex-direction:column; }

   .menu-toggle {
    display: block;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%; /* escondido a la derecha */
    width: 60%;
    height: 100vh;
    background: #111;
    display: flex;
    flex-direction: column;
    padding: 40px;
    transition: right 0.4s ease;
    z-index: 1000;
  }

  #navbar.scrolled {
    background: black;
  }

  #navbar.scrolled .logo {
    color: #fff
  }

  #navbar.scrolled a {
    color: #fff;
  }

  #navbar a, .btn-contratar {
    color: #fff;
    margin: 10px;
    font-size: 1.3rem;
  }

  #navbar a:hover {
    color: #00c46c    
  }

  .nav-links.active {
    right: 0; /* despliega el menú */
  }
 
  body.menu-open {
    overflow: hidden; /* evita scroll cuando el menú está abierto */
  }

  .informacion {
    display: flex;
    flex-direction: column;
    margin: auto;
  }

  .cards-tech {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .card-tech {
    width: 100px;
    height: 100px;
  }

  .info {
    width: 100%;
  }

  #tecnologias-que-usamos {
    height: auto;
  }

  #tecnologias-que-usamos.cards-tech {
    display: flex;
    flex-direction: column;
  }
}
