@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500;600;700&display=swap");

:root {
    --pel-primary: #F47B20;
    --pel-primary-hover: #d96a14;
    --pel-primary-soft: #fff3eb;
    --pel-surface: #ffffff;
    --pel-border: #e2e8f0;
    --pel-text: #0f172a;
    --pel-text-muted: #475569;
    --pel-danger: #b91c1c;
    --pel-danger-soft: #fef2f2;
    --pel-radius: 10px;
    --pel-transition: 220ms ease;
    --pel-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pel-fade-up {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pel-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pel-media-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pel-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.75s var(--pel-ease-out),
        transform 0.75s var(--pel-ease-out);
    animation: pel-reveal-fallback 0.01s linear 5s forwards;
}

.pel-reveal.pel-reveal-media {
    transform: translateY(40px) scale(0.985);
}

.pel-reveal.is-inview {
    opacity: 1;
    transform: none;
    animation: none;
}

@keyframes pel-reveal-fallback {
    to {
        opacity: 1;
        transform: none;
    }
}

.contenido-form-wrap.pel-reveal {
    transition-delay: 0.08s;
}

.form-registre-card h2.title,
.form-registre-card > .row > .field-help,
.form-registre-card .row > [class*="col-"],
.form-footer-actions {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s var(--pel-ease-out),
        transform 0.7s var(--pel-ease-out);
    animation: pel-reveal-fallback 0.01s linear 5s forwards;
}

.form-registre-card h2.title.is-inview,
.form-registre-card > .row > .field-help.is-inview,
.form-registre-card .row > [class*="col-"].is-inview,
.form-footer-actions.is-inview {
    opacity: 1;
    transform: none;
    animation: none;
}

.form-registre-card .row > [class*="col-"].is-inview:nth-child(1) { transition-delay: 0.04s; }
.form-registre-card .row > [class*="col-"].is-inview:nth-child(2) { transition-delay: 0.1s; }
.form-registre-card .row > [class*="col-"].is-inview:nth-child(3) { transition-delay: 0.16s; }
.form-registre-card .row > [class*="col-"].is-inview:nth-child(4) { transition-delay: 0.22s; }

body {
    font-family: "Fira Sans", "Segoe UI", sans-serif;
    color: var(--pel-text);
}

.container.main-content.pel-landing {
    width: 100% !important;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 16px 40px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .container.main-content.pel-landing {
        padding: 20px 24px 48px;
    }
}

@media (min-width: 992px) {
    .container.main-content.pel-landing {
        padding: 24px 28px 56px;
    }
}

@media (min-width: 1400px) {
    .container.main-content.pel-landing {
        max-width: 1520px;
        padding-left: 36px;
        padding-right: 36px;
    }
}

.pel-landing .spacer-25 {
    height: 12px;
}

.pel-landing .spacer-30 {
    height: 16px;
}

.pel-landing .spacer-50 {
    height: 16px;
}

@media (min-width: 992px) {
    .pel-landing .spacer-25 {
        height: 20px;
    }

    .pel-landing .spacer-30 {
        height: 24px;
    }

    .pel-landing .spacer-50 {
        height: 28px;
    }
}

.main-content > .title,
.main-content h1.title,
.container.main-content.pel-landing > h1.title,
.container.main-content.pel-landing > h1.title.pel-reveal,
.container.main-content.pel-landing > h1.title.pel-reveal.is-inview {
    color: var(--pel-text);
    font-family: "Fira Sans", "Segoe UI", sans-serif;
    font-size: 36px !important;
    font-weight: 700;
    letter-spacing: 0 !important;
    margin: 8px 0 0;
    line-height: 1.3;
}

label {
    font-family: "Fira Sans", "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 600;
    font-style: normal;
    color: var(--pel-text);
    line-height: 1.35;
    letter-spacing: 0;
    margin-bottom: 6px;
}

h1, h2, h3, h4, h5 {
    color: var(--pel-text);
    font-family: "Fira Sans", "Segoe UI", sans-serif;
    font-weight: 700;
}

.pel-landing h1,
.pel-landing h2,
.pel-landing h3,
.pel-landing h4,
.pel-landing h5,
.pel-landing h6 {
    letter-spacing: 0 !important;
    text-transform: none;
    line-height: 1.35;
}

.pel-landing .txtCuerpo {
    margin-top: 0;
    margin-right: 0;
    font-size: inherit;
    line-height: inherit;
}

.form-registre-card h2.title {
    color: var(--pel-primary);
    font-size: 22px !important;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: 0 !important;
    text-transform: none;
}

.c-link-orange {
    color: var(--pel-primary) !important;
    text-decoration: none;
    transition: color var(--pel-transition);
}

.c-link-orange:hover,
.c-link-orange:focus {
    color: var(--pel-primary-hover) !important;
    text-decoration: underline;
}

.mensajeFormulario > span,
.tyc,
.text-red {
    color: var(--pel-danger);
    font-size: 13px;
    font-weight: 500;
}

.pel-editor-bar {
    margin-bottom: 8px;
}

.pel-landing > .row.pel-editor-bar {
    margin-left: 0;
    margin-right: 0;
}

.pel-editor-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 14px;
    border: 1px solid var(--pel-border);
    border-radius: 8px;
    background: var(--pel-surface);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: border-color var(--pel-transition), background var(--pel-transition), transform var(--pel-transition);
}

.pel-editor-link:hover {
    border-color: #fdba74;
    background: var(--pel-primary-soft);
    transform: translateY(-1px);
}

.pel-editor-link .fa {
    font-size: 16px !important;
}

.pel-landing-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-left: -12px;
    margin-right: -12px;
}

.pel-landing-col {
    float: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0 12px;
    box-sizing: border-box;
}

.pel-media-panel {
    margin-bottom: 28px;
}

@media (min-width: 992px) {
    .pel-landing-col,
    .pel-landing-col.col-md-6 {
        width: 50%;
        margin-bottom: 0;
    }

    .pel-media-panel {
        margin-bottom: 0;
    }
}

.contenido-form-wrap {
    max-width: 100%;
    color: var(--pel-text-muted);
    font-size: 16px;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.contenido-form-wrap h1,
.contenido-form-wrap h2,
.contenido-form-wrap h3,
.contenido-form-wrap h4 {
    color: var(--pel-text);
    letter-spacing: 0 !important;
    text-transform: none;
    margin: 0 0 8px;
}

.contenido-form-wrap h1 { font-size: 20px !important; }
.contenido-form-wrap h2 { font-size: 18px !important; }
.contenido-form-wrap h3 { font-size: 16px !important; }
.contenido-form-wrap h4 { font-size: 15px !important; }

.contenido-form-wrap p {
    margin: 0 0 10px;
    letter-spacing: 0;
}

.contenido-form-wrap .spacer-50 {
    height: 20px;
}

.img-form-preview {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--pel-radius);
    border: 1px solid var(--pel-border);
    background: var(--pel-surface);
    transition: transform 0.35s var(--pel-ease-out), border-color var(--pel-transition), opacity 0.35s ease;
}

.img-form-preview:hover {
    transform: scale(1.012);
    border-color: #fdba74;
}

.video-embed-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 16px;
    background: #0f172a;
    border-radius: var(--pel-radius);
    overflow: hidden;
    border: 1px solid var(--pel-border);
    cursor: pointer;
    transition: border-color var(--pel-transition), box-shadow var(--pel-transition);
}

.video-embed-wrap:hover,
.video-embed-wrap:focus-within {
    border-color: #fdba74;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
}

.video-embed-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

.pel-video-fs {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 4;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.78);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.pel-video-fs .fa {
    font-size: 16px;
    line-height: 1;
}

.video-embed-wrap:hover .pel-video-fs,
.video-embed-wrap:focus-within .pel-video-fs,
.pel-video-fs:focus,
.video-embed-wrap.is-modal-open .pel-video-fs {
    opacity: 1;
}

.pel-video-fs:hover,
.pel-video-fs:focus {
    background: var(--pel-primary);
    outline: 0;
}

@media (hover: none) {
    .pel-video-fs {
        opacity: 1;
    }
}

.pel-video-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10050;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

.pel-video-modal.is-open {
    display: flex;
}

.pel-video-modal-backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.82);
}

.pel-video-modal-dialog {
    position: relative;
    z-index: 1;
    width: 80%;
    max-width: 1100px;
    box-sizing: border-box;
}

.pel-video-modal-player {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.pel-video-modal-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.pel-video-modal-close {
    position: absolute;
    top: -14px;
    right: -14px;
    z-index: 2;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--pel-primary);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.pel-video-modal-close:hover,
.pel-video-modal-close:focus {
    background: var(--pel-primary-hover);
    outline: 0;
}

.pel-video-modal-close .fa {
    font-size: 18px;
    line-height: 1;
}

body.pel-video-modal-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .pel-video-modal-dialog {
        width: 90%;
        max-width: 90%;
    }
}

@media (max-width: 767px) {
    .pel-video-modal {
        padding: 12px;
    }

    .pel-video-modal-dialog {
        width: 100%;
        max-width: 100%;
    }

    .pel-video-modal-close {
        top: -10px;
        right: 0;
    }
}

.form-registre-card {
    border: 1px solid var(--pel-border);
    padding: 20px 16px;
    border-radius: var(--pel-radius);
    position: relative;
    background: var(--pel-surface);
}

@media (min-width: 768px) {
    .form-registre-card {
        padding: 24px 20px;
    }
}

@media (min-width: 992px) {
    .form-registre-card {
        padding: 28px 24px;
    }
}

.form-registre-card > .row {
    margin-left: 0;
    margin-right: 0;
}

.form-registre-card [style*="margin-left: 20px"] {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 4px !important;
}

.form-registre-card [style*="margin-left: 20px"] .row {
    margin-left: -8px;
    margin-right: -8px;
}

.form-registre-card .txtFormulario {
    margin-top: 0;
    margin-bottom: 6px;
}

.form-registre-card .campoFormulario {
    margin-bottom: 0;
}

.form-registre-card .mensajeFormulario {
    min-height: 0;
    margin: 0;
    padding: 0;
    line-height: 1.35;
}

@supports selector(:has(*)) {
    .form-registre-card .mensajeFormulario:has(> span[style*="inline"]),
    .form-registre-card .mensajeFormulario:has(> span[style*="block"]) {
        margin-top: 6px;
        margin-bottom: 2px;
    }
}

.form-registre-card .row > [class*="col-"] {
    margin-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
}

.form-registre-card .separador {
    height: 1px;
    background: var(--pel-border);
    margin: 8px 0;
    border: 0;
}

.form-registre-card .textBoxFormulario.form-control,
.form-registre-card select.form-control,
.form-registre-card textarea.form-control {
    border: 1px solid var(--pel-border);
    border-radius: 8px;
    height: 44px;
    min-height: 44px;
    padding: 8px 12px;
    box-shadow: none;
    font-family: "Fira Sans", "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: var(--pel-text);
    background: var(--pel-surface);
    max-width: 100%;
    box-sizing: border-box;
    transition:
        border-color 0.22s ease,
        background-color 0.22s ease,
        transform 0.22s var(--pel-ease-out),
        box-shadow 0.22s ease;
}

.form-registre-card textarea.form-control {
    height: auto;
    min-height: 100px;
    padding: 10px 12px;
}

/* Select2: solo selects con buscador (>6 opciones) */
.form-registre-card .select2-container {
    width: 100% !important;
    font-family: "Fira Sans", "Segoe UI", sans-serif;
}

.form-registre-card .select2-container--default .select2-selection--single {
    height: 44px;
    border: 1px solid var(--pel-border);
    border-radius: 8px;
    background: var(--pel-surface);
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.form-registre-card .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 42px;
    padding-left: 12px;
    padding-right: 36px;
    color: var(--pel-text);
    font-size: 15px;
}

.form-registre-card .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px;
    width: 32px;
    right: 4px;
}

.form-registre-card .select2-container--default.select2-container--focus .select2-selection--single,
.form-registre-card .select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--pel-primary);
    box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.16);
    outline: 0;
}

.form-registre-card .select2-dropdown {
    border: 1px solid var(--pel-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.form-registre-card .select2-search--dropdown {
    padding: 8px;
}

.form-registre-card .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--pel-border);
    border-radius: 8px;
    height: 38px;
    padding: 6px 10px;
    font-family: "Fira Sans", "Segoe UI", sans-serif;
    font-size: 14px;
    outline: 0;
}

.form-registre-card .select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: var(--pel-primary);
}

.form-registre-card .select2-container--default .select2-results__option {
    padding: 8px 12px;
    font-size: 14px;
}

.form-registre-card .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--pel-primary);
    color: #fff;
}

.form-registre-card .select2-container--default .select2-results__option[aria-selected="true"] {
    background: var(--pel-primary-soft);
    color: var(--pel-text);
}

@media (max-width: 767px) {
    .form-registre-card .select2-container--default .select2-selection--single {
        height: 46px;
    }

    .form-registre-card .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 44px;
        font-size: 16px;
    }

    .form-registre-card .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 44px;
    }
}

.form-registre-card .textBoxFormulario.form-control:hover,
.form-registre-card select.form-control:hover,
.form-registre-card textarea.form-control:hover {
    border-color: #cbd5e1;
}

.form-registre-card .textBoxFormulario.form-control:focus,
.form-registre-card select.form-control:focus,
.form-registre-card textarea.form-control:focus {
    border-color: var(--pel-primary);
    outline: 0;
    background: #fffdfb;
    transform: translateY(-1px);
    box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.16);
}

.form-registre-card .textBoxFormulario.form-control::placeholder {
    color: #94a3b8;
    transition: opacity 0.2s ease;
}

.form-registre-card .textBoxFormulario.form-control:focus::placeholder {
    opacity: 0.55;
}

.form-select-licenciatura {
    max-width: 100%;
}

.field-help {
    margin: 6px 0 0;
    font-size: 13px;
    color: var(--pel-text-muted);
    line-height: 1.4;
}

.alert-register,
.alert-terms,
.alertasValidacion,
.invalid-feedback {
    color: #7c2d12;
    background: var(--pel-primary-soft);
    border: 0;
    border-left: 3px solid var(--pel-primary);
    border-radius: 0 6px 6px 0;
    font-family: "Fira Sans", "Source Sans Pro", "Segoe UI", sans-serif;
    font-size: 13px;
    font-weight: 500;
    margin: 6px 0 0;
    padding: 7px 12px;
    min-height: 0;
    animation: pel-fade-up 0.35s var(--pel-ease-out) both;
}

.alert-register:empty,
.alert-terms:empty {
    display: none;
}

.alert-terms {
    margin: 8px 0 0;
}

.pel-alert {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.pel-alert[hidden] {
    display: none !important;
}

.pel-alert__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.42);
}

.pel-alert__dialog {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.22);
    overflow: hidden;
    animation: pel-fade-up 0.28s var(--pel-ease-out) both;
}

.pel-alert__bar {
    height: 4px;
    background: var(--pel-primary);
}

.pel-alert__body {
    padding: 28px 28px 24px;
    text-align: center;
}

.pel-alert__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--pel-primary-soft);
    color: var(--pel-primary);
    font-size: 22px;
}

.pel-alert[data-type="success"] .pel-alert__icon {
    background: #ecfdf5;
    color: #047857;
}

.pel-alert[data-type="error"] .pel-alert__icon {
    background: var(--pel-danger-soft);
    color: var(--pel-danger);
}

.pel-alert[data-type="warning"] .pel-alert__icon {
    background: var(--pel-primary-soft);
    color: var(--pel-primary-hover);
}

.pel-alert__title {
    margin: 0 0 8px;
    color: var(--pel-text);
    font-family: "Fira Sans", "Source Sans Pro", sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.pel-alert__msg {
    margin: 0 0 22px;
    color: var(--pel-text-muted);
    font-family: "Fira Sans", "Source Sans Pro", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.pel-alert__btn {
    min-width: 148px;
    min-height: 44px;
    padding: 10px 24px;
    border: 0;
    border-radius: 8px;
    background: var(--pel-primary);
    color: #fff;
    font-family: "Fira Sans", "Source Sans Pro", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    cursor: pointer;
}

.pel-alert__btn:hover,
.pel-alert__btn:focus {
    background: var(--pel-primary-hover);
}

.pel-cierre {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 8px 0 0;
}

.pel-cierre .fa {
    font-size: 12px;
    margin-right: 4px;
    opacity: 0.75;
}

.pel-countdown-text {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
    letter-spacing: 0.06em;
}

.form-footer-actions {
    width: 100%;
    margin-top: 4px;
    margin-bottom: 0;
}

.form-registre-card .form-footer-actions > [class*="col-"] {
    margin-top: 0;
    margin-bottom: 0;
}

.form-recaptcha {
    transform: none;
    transform-origin: left top;
    max-width: 100%;
    overflow: auto;
    margin: 0 0 10px;
}

.privacy-row {
    margin: 0;
}

.privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    white-space: normal;
    max-width: 100%;
    font-weight: 400;
    cursor: pointer;
    margin: 0;
    padding: 10px 16px;
    border: 1px solid var(--pel-border);
    border-radius: 8px;
    background: #f8fafc;
    transition: border-color var(--pel-transition), background var(--pel-transition), transform var(--pel-transition);
}

.privacy-label:hover {
    border-color: #fdba74;
    background: var(--pel-primary-soft);
    transform: translateY(-1px);
}

.privacy-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--pel-primary);
}

.privacy-label span {
    display: inline-block;
    line-height: 1.45;
    color: var(--pel-text-muted);
    font-size: 15px;
}

.form-registre-card .form-required-note {
    margin: 0;
}

.form-registre-card .form-required-note > [class*="col-"] {
    margin-bottom: 4px;
}

.form-registre-card .form-required-note .campoFormulario {
    margin: 0;
}

.form-registre-card .form-required-note label {
    margin: 0;
    font-size: 13px;
}

.form-submit-row .btn-registrar,
.form-submit-row .btn-style-4 {
    margin-top: 0 !important;
}

.btn-registrar,
input.btn-registrar,
.form-registre-card .btn-style-4 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 48px;
    padding: 12px 28px !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: var(--pel-primary) !important;
    color: #fff !important;
    font-family: "Fira Sans", "Segoe UI", sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: background var(--pel-transition), transform var(--pel-transition);
    cursor: pointer;
}

.btn-registrar:hover,
.btn-registrar:focus,
.form-registre-card .btn-style-4:hover,
.form-registre-card .btn-style-4:focus {
    background: var(--pel-primary-hover) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-registrar:active,
.form-registre-card .btn-style-4:active {
    transform: translateY(0);
}

.form-loading-overlay {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.78);
    align-items: center;
    justify-content: center;
    border-radius: var(--pel-radius);
    animation: pel-fade-in 0.2s ease both;
}

.form-loading-overlay.is-visible {
    display: flex !important;
}

.form-loading-inner {
    text-align: center;
    background: var(--pel-surface);
    padding: 20px 28px;
    border-radius: var(--pel-radius);
    border: 1px solid var(--pel-border);
}

.form-loading-inner h2 {
    color: var(--pel-text);
    font-size: 18px;
    margin: 10px 0 0;
}

.mensaje-resultado-page {
    width: 100%;
    max-width: 960px;
    margin: 28px auto;
    padding: 32px 28px;
    background: var(--pel-surface);
    border: 1px solid var(--pel-border);
    border-radius: var(--pel-radius);
    color: var(--pel-text-muted);
    font-size: 17px;
    line-height: 1.6;
    text-align: left;
    animation: pel-fade-up 0.5s var(--pel-ease-out) both;
}

.mensaje-resultado-page h1,
.mensaje-resultado-page h2,
.mensaje-resultado-page h3,
.mensaje-resultado-page h4 {
    color: var(--pel-text);
    font-family: "Fira Sans", "Source Sans Pro", sans-serif;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 16px;
}

.mensaje-resultado-page h1 { font-size: 24px; }
.mensaje-resultado-page h2 { font-size: 20px; }
.mensaje-resultado-page h3 { font-size: 17px; }

.mensaje-resultado-page p {
    margin: 0 0 14px;
}

.mensaje-resultado-page p:last-child,
.mensaje-resultado-page ul:last-child,
.mensaje-resultado-page ol:last-child {
    margin-bottom: 0;
}

.mensaje-resultado-page ul,
.mensaje-resultado-page ol {
    margin: 0 0 16px 1.25em;
    padding: 0;
}

.mensaje-resultado-page li {
    margin: 0 0 6px;
}

.mensaje-resultado-page a {
    color: var(--pel-primary);
    font-weight: 600;
}

.mensaje-resultado-page a:hover {
    color: var(--pel-primary-hover);
}

.mensaje-resultado-page img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 12px 0;
}

.mensaje-resultado-page table {
    width: 100%;
    margin: 0 0 16px;
    border-collapse: collapse;
}

.mensaje-resultado-page strong,
.mensaje-resultado-page b {
    color: var(--pel-text);
}

@media (max-width: 767px) {
    .form-registre-card {
        padding: 16px 12px;
    }

    .form-footer-actions {
        padding-left: 0;
        padding-right: 0;
    }

    .btn-registrar,
    .form-registre-card .btn-style-4 {
        width: 100%;
        min-width: 0;
    }

    .container.main-content.pel-landing > .title,
    .container.main-content.pel-landing > h1.title,
    .container.main-content.pel-landing > h1.title.pel-reveal,
    .container.main-content.pel-landing > h1.title.pel-reveal.is-inview {
        font-size: 30px !important;
        letter-spacing: 0 !important;
        line-height: 1.3 !important;
        margin: 4px 0 0;
    }

    .form-registre-card h2.title {
        font-size: 17px !important;
        letter-spacing: 0 !important;
        margin: 0 0 8px;
    }

    .contenido-form-wrap {
        font-size: 14px;
        line-height: 1.5;
    }

    .contenido-form-wrap h1 { font-size: 17px !important; }
    .contenido-form-wrap h2 { font-size: 16px !important; }
    .contenido-form-wrap h3 { font-size: 15px !important; }
    .contenido-form-wrap h4 { font-size: 14px !important; }

    .contenido-form-wrap p {
        margin: 0 0 8px;
    }

    .contenido-form-wrap .spacer-50 {
        height: 8px;
    }

    .pel-landing .spacer-25 {
        height: 8px;
    }

    .pel-landing .spacer-30 {
        height: 10px;
    }

    .pel-landing .spacer-50 {
        height: 10px;
    }

    .pel-landing .txtCuerpo {
        margin: 0;
    }

    label {
        font-size: 14px;
        letter-spacing: 0;
    }

    .privacy-label span {
        font-size: 13px;
        line-height: 1.4;
    }

    .mensaje-resultado-page {
        font-size: 14px;
        padding: 16px 12px;
        margin: 12px auto;
        line-height: 1.5;
    }

    .mensaje-resultado-page h1,
    .mensaje-resultado-page h2,
    .mensaje-resultado-page h3 {
        letter-spacing: 0 !important;
        text-transform: none;
    }

    .mensaje-resultado-page h1 { font-size: 18px; }
    .mensaje-resultado-page h2 { font-size: 16px; }
    .mensaje-resultado-page h3 { font-size: 14px; }

    .pel-landing-row {
        margin-left: -8px;
        margin-right: -8px;
    }

    .pel-landing-col {
        padding: 0 8px;
    }

    .pel-media-panel {
        margin-bottom: 20px;
    }

    .form-registre-card .row > [class*="col-xs-12"],
    .form-registre-card .row > [class*="col-"] {
        width: 100%;
        float: none;
        padding-left: 6px;
        padding-right: 6px;
    }

    .form-registre-card .textBoxFormulario.form-control,
    .form-registre-card select.form-control,
    .form-registre-card textarea.form-control {
        font-size: 16px;
        height: 46px;
        min-height: 46px;
    }

    .form-registre-card textarea.form-control {
        height: auto;
        min-height: 104px;
    }

    .privacy-label {
        padding: 10px 16px;
    }

    .form-recaptcha {
        transform: scale(0.92);
        transform-origin: left top;
    }
}

@media (max-width: 400px) {
    .form-recaptcha {
        transform: scale(0.82);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pel-reveal,
    .form-registre-card .row > [class*="col-"],
    .form-footer-actions {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .main-content > .title,
    .main-content h1.title,
    .pel-editor-bar,
    .pel-media-panel,
    .contenido-form-wrap,
    .form-registre-card,
    .form-registre-card .row > [class*="col-"],
    .form-footer-actions,
    .alert-register,
    .alert-terms,
    .mensaje-resultado-page,
    .form-loading-overlay {
        animation: none !important;
    }

    .img-form-preview,
    .video-embed-wrap,
    .form-registre-card .textBoxFormulario.form-control,
    .form-registre-card select.form-control,
    .form-registre-card textarea.form-control,
    .btn-registrar,
    .privacy-label,
    .pel-editor-link {
        transition: none !important;
        transform: none !important;
    }
}

.bloque-breadcrumb {
    height: auto;
    min-height: 44px;
    overflow: hidden;
    background: #fafafa;
    border-bottom: 1px solid #e9e9e9;
}

.bloque-breadcrumb .breadcrumb {
    max-width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.bloque-breadcrumb .breadcrumb ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #595959;
}

.bloque-breadcrumb .breadcrumb ul li {
    flex: 0 0 auto;
    white-space: nowrap;
}

.bloque-breadcrumb .breadcrumb ul li a {
    color: #595959;
    text-decoration: none;
}

.bloque-breadcrumb .breadcrumb ul li a:hover {
    color: #F47B20;
    text-decoration: underline;
}

.bloque-breadcrumb .breadcrumb ul li:last-child {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.bloque-breadcrumb .breadcrumb ul li:last-child span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
    color: #F47B20;
}

@media (max-width: 767px) {
    .bloque-breadcrumb {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .bloque-breadcrumb .breadcrumb ul {
        font-size: 12px;
    }

    .bloque-breadcrumb .breadcrumb ul li {
        padding: 0 8px 0 0;
    }

    .bloque-breadcrumb .breadcrumb ul li:first-child {
        padding-left: 0;
    }
}
