/*navar*/


/* CSS para el subrayado animado */


.nav-item {
    margin: 0 0.4rem; /* Espacio entre ítems */
    position: relative;
  }
  
  /* Separador visual opcional */
  .nav-item:not(:last-child)::after {
    content: "|";
    color: rgba(255,255,255,0.2);
    position: absolute;
    right: -0.8rem;
  }
  
  .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .link-underline {
    position: absolute;
    bottom: -5px; /* Ajusta según tu diseño */
    left: 0;
    width: 0;
    height: 2px;
    background: #F26B38; /* Naranja corporativo de Mana Digital */
    transition: width 0.3s ease;
  }
  
  .nav-link:hover .link-underline,
  .nav-item.active .link-underline {
    width: 100%;
  }
  
  .nav-link:hover {
    color: white;
  }
  
  .nav-item.active .nav-link {
    color: white;
    font-weight: 600;
  }
  
  
  /* Selector de idiomas */
  .btn-language {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 0.9rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s;
  }
  
  .btn-language:hover {
    background: rgba(123, 97, 255, 0.2);
    border-color: #7B61FF;
  }
  
  /* Dropdown personalizado */
  .dropdown-menu {
    background: #2A3B8F;
    border: 1px solid #7B61FF;
    min-width: 140px;
  }
  
  .dropdown-item {
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .dropdown-item:hover, .dropdown-item:focus {
    background: #7B61FF;
  }
  
  .dropdown-item.active {
    background: rgba(123, 97, 255, 0.3);
  }
  /* Botón de contacto principal */
  .btn-contact {
    background: #7B61FF; /* Lila corporativo */
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s;
  }
  
  .btn-contact:hover {
    background: #F26B38; /* Naranja al hover */
    transform: translateY(-2px);
  }