/* === MegaDropdown exclusivo para funcionalidades === */
.mega-dropdown {
    position: relative;
  }
  

  .mega-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%; /* <-- centrado */
    transform: translateX(-50%); /* <-- corrección exacta del centro */
    padding: 2rem;
    background-color: #fff;
    width: 640px;
    border: 1px solid #00c6ff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 1250;
  }
  
  
  .mega-dropdown.show .mega-dropdown-menu {
    display: block;
  }
  
  .mega-dropdown-menu .mega-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .mega-dropdown-menu .mega-col {
    flex: 1 1 45%;
  }
  
  .mega-dropdown-menu .mega-title {
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .mega-dropdown-menu .mega-icon {
    font-size: 1.3rem;
    color: #00c6ff;
  }
  
  .mega-dropdown-menu p {
    font-size: 0.875rem;
    color: #333;
    line-height: 1.2;
  }
  
  .mega-dropdown-menu .btn-ver-funciones {
    margin-top: 1.5rem;
    text-align: right;
  }
  
  .mega-dropdown-menu .btn-ver-funciones a {
    font-weight: 600;
    color: #00c6ff;
    text-decoration: none;
  }
  
  .mega-dropdown-menu .btn-ver-funciones a:hover {
    text-decoration: underline;
  }

  .download-card {
    transition: transform 0.3s ease;
  }
  
  .download-card:hover {
    transform: translateY(-5px);
  }
  