.dropdown-menu li a {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 12px;
    padding: 5px 0px 5px 5px;
}

label.error{
    color: #f85b5b !important;
    padding: 10px;
        line-height: 16px;
    font-size: small;
    /* position: absolute;
    right: 0;
    margin-top: 30px !important; */
}

input.error, select.error, textarea.error {
    border: #f85b5b 1px solid;
}

.invalid-feedback{
    display: none;
    color: #f85b5b !important;
    padding: 10px;
        line-height: 16px;
    font-size: small;
}

form label{
    margin-top: 20px;
}

input:disabled, .disabled, button:disabled {
cursor: no-drop !important;
}

/* label.error{
    position: absolute;
    bottom: 0;
    right: 0;
} */
label.error{
    position: absolute;
    bottom: -10px !important;
    right: 0;
    z-index: 1;
}

label#message-error{
    bottom: -4px !important;
}

#legal-error{
     position: absolute;
    top: 0;
}


/* Header dinámico */
.header-dynamic {
    transition: background-color 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

/* Estado por defecto (sobre secciones claras) */
.header-light {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px);
    border-bottom-color: rgba(0, 32, 70, 0.1);
    /* color: #1f2937; */
}

/* Estado sobre secciones oscuras (hero, banners oscuros) */
.header-dark {
    background-color: rgba(15, 23, 42, 0.75); /* slate-900 con transparencia */
    backdrop-filter: blur(16px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    /* color: #f1f5f9; */
}

/* Opcional: enlaces y elementos del nav */
.header-dark a {
    /* color: #e2e8f0; */
}
.header-dark a:hover {
    color: #ff8c00;
}