/* Estilo moderno para tabs */
.nav-tabs {
    border-bottom: none;
    /* margin-bottom: 1rem; */
  }
  
  .nav-tabs .nav-item {
    margin-bottom: -1px;
  }
  
  .nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: #6c757d;
    padding: 0.25rem 0.75rem 0.15rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    background: transparent;
  }
  
  .nav-tabs .nav-link:hover {
    border-color: transparent;
    color: #2c3e50;
  }
  
  .nav-tabs .nav-link.active {
    color: #3a5de8;
    background: transparent;
    border: none;
    border-bottom: 2px solid #2c3e50;
  }
  
  /* Opcional: Efeito hover suave */
  .nav-tabs .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c3e50;
    transition: width 0.3s ease;
  }
  
  .nav-tabs .nav-link:hover:before {
    width: 100%;
  }
  