/* ============================================
   GRADIENT UNDERLINES GLOBALES
   Gradiente: naranja a azul
   ============================================ */

/* Clases reutilizables para underlines con gradiente */
.gradient-underline,
.header-underline-gradient {
    border-bottom: 4px solid transparent !important;
    background: linear-gradient(90deg, #f7931d 26%, #0673B5 100%) left bottom no-repeat !important;
    background-size: 100% 4px !important;
}

.gradient-underline-thin {
    border-bottom: 3px solid transparent !important;
    background: linear-gradient(90deg, #f7931d 26%, #0673B5 100%) left bottom no-repeat !important;
    background-size: 100% 3px !important;
}

.gradient-underline-thick {
    border-bottom: 5px solid transparent !important;
    background: linear-gradient(90deg, #f7931d 26%, #0673B5 100%) left bottom no-repeat !important;
    background-size: 100% 5px !important;
}

/* Sobreescribir underlines naranjas existentes con gradiente */
[style*="border-bottom: 4px solid orange"],
[style*="border-bottom: 4px solid #f7931d"] {
    border-bottom: 4px solid transparent !important;
    background: linear-gradient(90deg, #f7931d 26%, #0673B5 100%) left bottom no-repeat !important;
    background-size: 100% 4px !important;
}
