
    
     
    
    
    
  /* otro*/

  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
  }

  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
  }

  .modal .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 26px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
  }

  .modal .close:hover {
    color: #000;
  }

    /* Título con sombra azul */
    .titulo-aplicativos {
      text-align: center;
      font-size: 2.5em;
      margin-top: 40px;
      color: #000;
      text-shadow: 2px 2px 5px rgba(0, 123, 255, 0.6);
    }

    /* Botones con imágenes */
    .boton-imagen {
      border: none;
      background: none;
      cursor: pointer;
      text-align: center;
    }

    .boton-imagen img {
      width: 100px;
      height: 100px;
      border-radius: 8px;
      transition: transform 0.3s ease;
    }

    .boton-imagen:hover img {
      transform: scale(1.05);
    }

    .boton-imagen p {
      margin-top: 10px;
      font-weight: bold;
      color: #333;
    }

   
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
  