@tailwind base;
@tailwind components;
@tailwind utilities;

/* extras opcionales */
html { scroll-behavior: smooth; }
.nav-active {
    font-weight: 600;
    color: #2563eb; /* Azul */
    position: relative;
  }
  
  .nav-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2563eb;
    border-radius: 2px;
  }
  