/*
 * EEMPB Cloud UI
 * Base visual reutilizable para módulos modernizados.
 * Mantener aquí únicamente tokens, accesibilidad y componentes transversales.
 */
:root {
    --eempb-navy: #0b2f57;
    --eempb-blue: #0f5d8f;
    --eempb-blue-dark: #0b4772;
    --eempb-cyan: #19a7ae;
    --eempb-orange: #f58a1f;
    --eempb-orange-dark: #df7110;
    --eempb-ink: #162335;
    --eempb-muted: #66758a;
    --eempb-border: #e4ebf3;
    --eempb-surface: #ffffff;
    --eempb-surface-muted: #f4f7fb;
    --eempb-success: #15956f;
    --eempb-warning: #d57a17;
    --eempb-danger: #d95a55;
    --eempb-radius-sm: 12px;
    --eempb-radius-md: 18px;
    --eempb-radius-lg: 24px;
    --eempb-shadow-sm: 0 10px 28px rgba(18, 52, 86, .07);
    --eempb-shadow-md: 0 16px 42px rgba(18, 52, 86, .09);
    --eempb-shadow-hero: 0 20px 50px rgba(13, 54, 91, .18);
    --eempb-transition: .2s ease;
}

.eempb-page {
    color: var(--eempb-ink);
    font-family: "Public Sans", sans-serif;
    margin: 0 auto;
    max-width: 1500px;
    width: 100%;
}

.eempb-panel {
    background: var(--eempb-surface);
    border: 1px solid var(--eempb-border);
    border-radius: var(--eempb-radius-lg);
    box-shadow: var(--eempb-shadow-md);
    overflow: hidden;
}

.eempb-button {
    align-items: center;
    border: 0;
    border-radius: var(--eempb-radius-sm);
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    gap: 8px;
    justify-content: center;
    min-height: 43px;
    padding: 10px 16px;
    text-decoration: none !important;
    transition: transform var(--eempb-transition), box-shadow var(--eempb-transition), opacity var(--eempb-transition);
}

.eempb-button:hover:not(:disabled) {
    transform: translateY(-1px);
}

.eempb-button-primary {
    background: linear-gradient(135deg, var(--eempb-blue), var(--eempb-blue-dark));
    box-shadow: 0 8px 20px rgba(15, 93, 143, .18);
    color: #fff !important;
}

.eempb-button-accent {
    background: linear-gradient(135deg, var(--eempb-orange), var(--eempb-orange-dark));
    box-shadow: 0 9px 22px rgba(245, 138, 31, .22);
    color: #fff !important;
}

.eempb-alert {
    align-items: flex-start;
    border-radius: 15px;
    display: flex;
    gap: 12px;
    padding: 14px 17px;
}

.eempb-alert-danger {
    background: #fff5f5;
    border: 1px solid #ffd8d6;
    color: #9f3632;
}

.eempb-visually-hidden {
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.eempb-loading {
    cursor: wait !important;
    opacity: .7;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .eempb-panel {
        border-radius: var(--eempb-radius-md);
    }

    .eempb-mobile-full {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .eempb-page *,
    .eempb-page *::before,
    .eempb-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
