

 
    /* 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;
    }

    /* Estilos del modal */
    .modal-content {
      text-align: center;
    }
  