:root {
    --unc-primary: #06803B;
    --unc-primary-deep: #064E2B;
    --unc-primary-dark: #033D22;
    --unc-primary-soft: #F3F7EA;
    --unc-primary-pale: #EBF0D5;

    --unc-accent: #F39A3D;
    --unc-accent-strong: #FF7A1A;

    --unc-surface: #FFFFFF;
    --unc-border: #E4E8DD;
    --unc-text: #1F2933;
    --unc-text-soft: #5F6B66;

    --unc-font: "Switzer", "Segoe UI", Arial, sans-serif;

    --unc-shadow:
        0 12px 30px rgba(3, 61, 34, 0.08);

    --unc-shadow-soft:
        0 8px 22px rgba(3, 61, 34, 0.05);
}

html {
    background: var(--unc-primary-soft);
}

body {
    margin: 0;
    font-family: var(--unc-font);
    font-weight: 400;
    color: var(--unc-text);
    background:
        linear-gradient(
            180deg,
            #FFFFFF 0,
            #FFFFFF 210px,
            var(--unc-primary-soft) 210px,
            var(--unc-primary-soft) 100%
        );
    text-rendering: optimizeLegibility;
}

.page {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 52px 0 76px;
}

/* HERO */

.hero {
    max-width: 850px;
    margin: 0 0 34px;
}

.hero::before {
    display: block;
    width: 42px;
    height: 3px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--unc-accent);
    content: "";
}

.hero h1 {
    margin: 0 0 13px;
    color: var(--unc-primary-dark);
    font-size: clamp(32px, 4.4vw, 44px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.hero p {
    max-width: 720px;
    margin: 0;
    color: var(--unc-text-soft);
    font-size: 17px;
    line-height: 1.65;
}

/* FORMULARIO PRINCIPAL */

.registration-panel {
    margin: 0 0 46px;
    padding: 38px 42px;
    background: var(--unc-surface);
    border: 1px solid var(--unc-border);
    border-radius: 18px;
    box-shadow: var(--unc-shadow);
}

.registration-heading {
    margin: 0 0 8px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--unc-border);
}

.step-label {
    display: block;
    margin-bottom: 8px;
    color: var(--unc-primary);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.registration-heading h2 {
    margin: 0 0 8px;
    color: var(--unc-primary-dark);
    font-size: clamp(25px, 3vw, 30px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.015em;
}

.registration-heading p {
    max-width: 760px;
    margin: 0;
    color: var(--unc-text-soft);
    font-size: 15px;
    line-height: 1.6;
}

/* SECCIONES */

fieldset {
    margin: 0;
    padding: 27px 0 29px;
    border: 0;
    border-bottom: 1px solid var(--unc-border);
}

fieldset:last-of-type {
    border-bottom: 0;
}

legend {
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
    border: 0;
    color: var(--unc-primary-deep);
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 22px;
}

/* CAMPOS */

.field {
    min-width: 0;
}

.field label {
    display: block;
    margin: 0 0 8px;
    color: var(--unc-text);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
}

.field label strong {
    color: var(--unc-primary);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid #CFD8CC;
    border-radius: 10px;
    outline: 0;
    background: #FFFFFF;
    color: var(--unc-text);
    font: inherit;
    font-size: 15px;
    transition:
        border-color 150ms ease,
        box-shadow 150ms ease,
        background 150ms ease;
}

.field textarea {
    min-height: 118px;
    padding-top: 13px;
    padding-bottom: 13px;
    resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: #AABBAF;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--unc-primary);
    box-shadow:
        0 0 0 3px rgba(6, 128, 59, 0.10);
}

.field input::placeholder,
.field textarea::placeholder {
    color: #8A958F;
}

.field-help {
    display: block;
    margin-top: 7px;
    color: var(--unc-text-soft);
    font-size: 12.5px;
    line-height: 1.45;
}

.date-split {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1.2fr;
    gap: 10px;
}

.field-options {
    display: grid;
    gap: 10px;
}

.field-options label,
.field-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 0;
    font-weight: 500;
}

.field-options input,
.field-checkbox input {
    width: 18px;
    min-height: 18px;
    height: 18px;
    margin-top: 1px;
    padding: 0;
    accent-color: var(--unc-primary);
}

/* AVISOS Y CONSENTIMIENTOS */

.notice {
    margin-top: 15px;
    padding: 16px 18px;
    background: #FAFCF8;
    border: 1px solid var(--unc-border);
    border-left: 3px solid var(--unc-primary);
    border-radius: 10px;
}

.notice strong {
    color: var(--unc-primary-deep);
    font-weight: 700;
}

.notice p {
    margin: 7px 0 0;
    color: var(--unc-text-soft);
    font-size: 14px;
    line-height: 1.6;
}

.consent-item {
    margin-bottom: 17px;
}

.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 11px;
    color: var(--unc-text);
    font-size: 14px;
    line-height: 1.55;
}

.consent-check input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--unc-primary);
}

/* ESTADO */

.form-status {
    margin: 25px 0 18px;
    padding: 15px 17px;
    background: #F8FAF6;
    border: 1px dashed #B9C7B9;
    border-radius: 10px;
    color: var(--unc-text-soft);
    font-size: 14px;
}

.form-status strong {
    color: var(--unc-primary-deep);
}

.form-status p {
    margin: 5px 0 0;
    line-height: 1.55;
}

/* BOTON */

.submit-button {
    min-height: 50px;
    padding: 0 24px;
    border: 1px solid var(--unc-primary);
    border-radius: 10px;
    background: var(--unc-primary);
    color: #FFFFFF;
    font-family: var(--unc-font);
    font-size: 14px;
    font-weight: 700;
}

.submit-button:disabled {
    opacity: 0.52;
    cursor: not-allowed;
}

/* SELECTOR Y OFERTA */

.selector,
.card,
.empty {
    background: var(--unc-surface);
    border: 1px solid var(--unc-border);
    border-radius: 14px;
    box-shadow: var(--unc-shadow-soft);
}

.selector {
    margin: 34px 0 38px;
    padding: 22px 24px;
}

.selector label {
    color: var(--unc-primary-deep);
    font-size: 14px;
    font-weight: 700;
}

.selector select {
    min-height: 50px;
    margin-top: 9px;
    border: 1px solid #CFD8CC;
    border-radius: 10px;
    font: inherit;
}

.heading h2 {
    color: var(--unc-primary-dark);
    font-weight: 700;
}

.count {
    color: var(--unc-text-soft);
}

.grid {
    gap: 20px;
}

.card {
    padding: 23px;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.card:hover {
    border-color: rgba(6, 128, 59, 0.28);
    box-shadow: var(--unc-shadow);
}

.category {
    color: var(--unc-primary);
    font-size: 12px;
    letter-spacing: 0.06em;
}

.card h3 {
    color: var(--unc-primary-dark);
    font-weight: 700;
}

.meta {
    color: var(--unc-text-soft);
}

.meta strong {
    color: var(--unc-text);
}

.status {
    color: var(--unc-primary-deep);
    background: var(--unc-primary-soft);
}

/* RESPONSIVE */

@media (max-width: 767px) {
    body {
        background: var(--unc-primary-soft);
    }

    .page {
        width: min(100% - 24px, 1180px);
        padding: 30px 0 52px;
    }

    .hero {
        margin-bottom: 24px;
    }

    .hero p {
        font-size: 15px;
    }

    .registration-panel {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .registration-heading {
        padding-bottom: 21px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .date-split {
        grid-template-columns: 1fr;
    }

    fieldset {
        padding: 23px 0;
    }

    .selector {
        padding: 19px;
    }
}

@media (max-width: 479px) {
    .page {
        width: min(100% - 20px, 1180px);
    }

    .registration-panel {
        padding: 21px 16px;
    }

    .hero h1 {
        font-size: 30px;
    }
}

/* =========================================================
   UNC INSCRIPCIONES V2
   Composición institucional sobria
   ========================================================= */

.unc-registration-body {
    min-height: 100vh;
    background: var(--unc-primary-soft);
}

.portal-container {
    width: min(100% - 40px, 1180px);
    margin-inline: auto;
}

/* HEADER */

.portal-header {
    position: relative;
    z-index: 20;
    width: 100%;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(6, 128, 59, 0.12);
    box-shadow: 0 8px 24px rgba(3, 61, 34, 0.05);
}

.portal-topbar {
    color: #FFFFFF;
    background: var(--unc-primary-deep);
    font-size: 12.5px;
    line-height: 1.35;
}

.portal-topbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 34px;
    padding-block: 7px;
}

.portal-mainbar {
    background: rgba(255, 255, 255, 0.98);
}

.portal-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 82px;
    padding-block: 12px;
}

.portal-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.portal-brand img {
    display: block;
    width: auto;
    max-width: 212px;
    max-height: 64px;
    object-fit: contain;
}

.portal-context {
    display: flex;
    align-items: center;
    gap: 16px;
}

.portal-context-label {
    padding-right: 16px;
    border-right: 1px solid var(--unc-border);
    color: var(--unc-primary-dark);
    font-size: 14px;
    font-weight: 700;
}

.portal-back-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(6, 128, 59, 0.20);
    border-radius: 999px;
    color: var(--unc-primary-deep);
    background: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition:
        background 150ms ease,
        border-color 150ms ease;
}

.portal-back-link:hover {
    border-color: var(--unc-primary);
    background: var(--unc-primary-soft);
}

/* INTRODUCCION */

.portal-hero {
    background: #F8FAF5;
    border-bottom: 1px solid var(--unc-border);
}

.portal-hero-inner {
    max-width: 1000px;
    padding-top: 42px;
    padding-bottom: 46px;
}

.portal-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 11px;
    color: var(--unc-primary);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.portal-eyebrow::before {
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--unc-accent);
    content: "";
}

.portal-hero h1 {
    margin: 0 0 11px;
    color: var(--unc-primary-dark);
    font-size: clamp(34px, 4vw, 42px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.portal-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--unc-text-soft);
    font-size: 16px;
    line-height: 1.65;
}

/* COMPOSICION PRINCIPAL */

.page {
    width: min(1180px, calc(100% - 40px));
    padding-top: 36px;
    padding-bottom: 76px;
}

.page > .hero {
    display: none !important;
}

/*
 * El formulario ya contiene el selector oficial de oferta.
 * Ocultamos el selector provisional duplicado del home.
 */
.selector {
    display: none !important;
}

.registration-panel {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 56px;
    padding: 34px 40px 38px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(3, 61, 34, 0.07);
}

.registration-heading {
    padding-bottom: 22px;
}

.registration-heading h2 {
    font-size: 28px;
}

fieldset {
    padding-top: 23px;
    padding-bottom: 25px;
}

legend {
    margin-bottom: 17px;
    font-size: 16px;
}

.form-grid {
    gap: 18px 24px;
}

[data-form-section="offer"] .form-grid {
    grid-template-columns: 1fr;
}

[data-form-section="offer"] .field {
    max-width: 720px;
}

.field input,
.field select,
.field textarea {
    min-height: 48px;
}

.notice {
    background: #FBFCFA;
    box-shadow: none;
}

.form-status {
    background: #FAFBF8;
}

/* OFERTA DISPONIBLE */

.offers-section {
    margin-top: 4px;
}

.offers-section .heading {
    margin-bottom: 20px;
}

.offers-section .heading h2 {
    color: var(--unc-primary-dark);
    font-size: 23px;
}

.card {
    box-shadow: 0 8px 22px rgba(3, 61, 34, 0.05);
}

.card:hover {
    transform: none;
    box-shadow: 0 12px 30px rgba(3, 61, 34, 0.08);
}

/* TABLET / MOBILE */

@media (max-width: 767px) {
    .portal-container {
        width: min(100% - 24px, 1180px);
    }

    .portal-topbar-context {
        display: none;
    }

    .portal-header-row {
        min-height: 72px;
        gap: 14px;
    }

    .portal-brand img {
        max-width: 174px;
        max-height: 54px;
    }

    .portal-context-label {
        display: none;
    }

    .portal-back-link {
        min-height: 36px;
        padding-inline: 12px;
        font-size: 12px;
    }

    .portal-hero-inner {
        padding-top: 30px;
        padding-bottom: 32px;
    }

    .portal-hero h1 {
        font-size: 32px;
    }

    .portal-hero p {
        font-size: 15px;
    }

    .page {
        width: min(100% - 24px, 1180px);
        padding-top: 24px;
    }

    .registration-panel {
        margin-bottom: 40px;
        padding: 25px 21px 28px;
        border-radius: 14px;
    }

    fieldset {
        padding-block: 21px;
    }
}

@media (max-width: 479px) {
    .portal-container,
    .page {
        width: min(100% - 20px, 1180px);
    }

    .portal-topbar {
        font-size: 11px;
    }

    .portal-brand img {
        max-width: 148px;
    }

    .portal-back-link {
        padding-inline: 10px;
    }

    .portal-hero h1 {
        font-size: 29px;
    }

    .registration-panel {
        padding-inline: 16px;
    }
}

/* =========================================================
   UNC - DECISIONES DE AFILIACION
   Controles tactiles claros para celular
   ========================================================= */

[data-form-field="relationship"] .field-options,
[data-form-field="beneficiary_type"] .field-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 4px;
}

[data-form-field="relationship"] .field-options label,
[data-form-field="beneficiary_type"] .field-options label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 58px;
    margin: 0;
    padding: 13px 15px;
    border: 1px solid #CFD8CC;
    border-radius: 11px;
    background: #FFFFFF;
    color: var(--unc-text);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    cursor: pointer;
    transition:
        border-color 150ms ease,
        background 150ms ease,
        box-shadow 150ms ease;
}

[data-form-field="relationship"] .field-options label:hover,
[data-form-field="beneficiary_type"] .field-options label:hover {
    border-color: rgba(6, 128, 59, 0.48);
    background: #FAFCF8;
}

[data-form-field="relationship"] .field-options label:has(input:checked),
[data-form-field="beneficiary_type"] .field-options label:has(input:checked) {
    border-color: var(--unc-primary);
    background: var(--unc-primary-soft);
    box-shadow: 0 0 0 2px rgba(6, 128, 59, 0.08);
}

[data-form-field="relationship"] .field-options input[type="radio"],
[data-form-field="beneficiary_type"] .field-options input[type="radio"] {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--unc-primary);
}

[data-form-field="relationship"] .field-help,
[data-form-field="beneficiary_type"] .field-help {
    margin-top: 10px;
}

@media (max-width: 767px) {
    [data-form-field="relationship"] .field-options,
    [data-form-field="beneficiary_type"] .field-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    [data-form-field="relationship"] .field-options label,
    [data-form-field="beneficiary_type"] .field-options label {
        min-height: 60px;
        padding: 14px 15px;
        font-size: 15px;
    }
}

/* =========================================================
   UNC - AYUDAS DE CONTACTO
   Claridad para usuarios en celular
   ========================================================= */

[data-form-field="email"] .field-help,
[data-form-field="phone"] .field-help {
    position: relative;
    display: block;
    margin-top: 9px;
    padding: 10px 12px 10px 14px;
    border-left: 2px solid var(--unc-primary);
    border-radius: 0 8px 8px 0;
    background: #F8FAF6;
    color: var(--unc-text-soft);
    font-size: 13px;
    line-height: 1.5;
}

[data-form-field="email"] input,
[data-form-field="phone"] input {
    min-height: 52px;
}

@media (max-width: 767px) {
    [data-form-field="email"] .field-help,
    [data-form-field="phone"] .field-help {
        font-size: 13.5px;
        line-height: 1.55;
    }

    [data-form-field="email"] input,
    [data-form-field="phone"] input {
        min-height: 54px;
        font-size: 16px;
    }
}

/* =========================================================
   UNC - PASOS VISUALES DEL FORMULARIO
   Guia sencilla, sin wizard ni navegacion compleja
   ========================================================= */

.form-section-title {
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    margin: 0 0 19px;
    padding: 0;
    border: 0;
    color: var(--unc-primary-deep);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}

.form-section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--unc-primary);
    color: #FFFFFF;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
}

.registration-panel fieldset {
    position: relative;
}

.registration-panel fieldset + fieldset {
    border-top: 1px solid var(--unc-border);
    padding-top: 0;
}

.registration-panel fieldset + fieldset > .form-section-title {
    position: relative;
    top: 14px;
    margin-top: 0;
    margin-bottom: 33px;
}

@media (max-width: 767px) {
    .registration-panel {
        padding-top: 24px;
    }

    .registration-heading {
        margin-bottom: 2px;
    }

    .form-section-title {
        gap: 10px;
        margin-bottom: 17px;
        font-size: 16px;
    }

    .form-section-number {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .registration-panel fieldset {
        padding-top: 23px;
        padding-bottom: 24px;
    }

    .registration-panel .form-grid {
        gap: 17px;
    }

    .field label {
        font-size: 14.5px;
    }

    .field input,
    .field select,
    .field textarea {
        min-height: 54px;
        font-size: 16px;
    }

    .field-help {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* =========================================================
   UNC - ANTES DE COMENZAR
   Orientacion inicial sobria y mobile-first
   ========================================================= */

.before-form-notices {
    margin: 22px 0 4px;
}

.before-form-notices .consent-item {
    margin: 0;
}

.before-form-notices .notice {
    position: relative;
    margin: 0;
    padding: 17px 20px 17px 21px;
    border: 1px solid rgba(6, 128, 59, 0.16);
    border-left: 3px solid var(--unc-primary);
    border-radius: 10px;
    background: #F8FAF6;
    box-shadow: none;
}

.before-form-notices .notice::before {
    position: absolute;
    top: 18px;
    left: -2px;
    width: 3px;
    height: 22px;
    border-radius: 0 3px 3px 0;
    background: var(--unc-accent);
    content: "";
}

.before-form-notices .notice strong {
    display: block;
    margin: 0 0 6px;
    color: var(--unc-primary-dark);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.before-form-notices .notice p {
    max-width: 820px;
    margin: 0;
    color: var(--unc-text-soft);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .before-form-notices {
        margin-top: 19px;
    }

    .before-form-notices .notice {
        padding: 15px 16px 15px 18px;
    }

    .before-form-notices .notice strong {
        font-size: 15px;
    }

    .before-form-notices .notice p {
        font-size: 13.5px;
        line-height: 1.55;
    }
}

/* =========================================================
   UNC - CONFIRMACION DEL CURSO SELECCIONADO
   ========================================================= */

.course-confirmation {
    margin-top: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(6, 128, 59, 0.18);
    border-radius: 10px;
    background: #F8FAF6;
}

.course-confirmation-label {
    display: block;
    margin-bottom: 4px;
    color: var(--unc-primary);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.course-confirmation > strong {
    display: block;
    color: var(--unc-primary-dark);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.course-confirmation-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 14px;
    margin-top: 5px;
    color: var(--unc-text-soft);
    font-size: 13px;
    line-height: 1.45;
}

.course-confirmation-meta span + span::before {
    margin-right: 14px;
    color: #A7B2AB;
    content: "•";
}

.course-confirmation small {
    display: block;
    margin-top: 8px;
    color: var(--unc-text-soft);
    font-size: 12.5px;
    line-height: 1.45;
}

@media (max-width: 767px) {
    .course-confirmation {
        padding: 14px;
    }

    .course-confirmation > strong {
        font-size: 15px;
    }

    .course-confirmation-meta {
        display: grid;
        gap: 2px;
    }

    .course-confirmation-meta span + span::before {
        display: none;
    }
}

/* =========================================================
   UNC - AYUDAS IMPORTANTES
   Correo, WhatsApp y subsidio
   ========================================================= */

[data-form-field="email"] .field-help,
[data-form-field="phone"] .field-help {
    position: relative;
    padding-left: 38px;
}

[data-form-field="email"] .field-help::before,
[data-form-field="phone"] .field-help::before,
[data-form-section="affiliation"] .notice.informational::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid var(--unc-accent);
    border-radius: 50%;
    color: var(--unc-primary-deep);
    background: #FFF8EF;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    content: "!";
}

[data-form-field="email"] .field-help::before,
[data-form-field="phone"] .field-help::before {
    position: absolute;
    top: 10px;
    left: 10px;
}

[data-form-section="affiliation"] .notice.informational {
    position: relative;
    padding-left: 50px;
}

[data-form-section="affiliation"] .notice.informational::before {
    position: absolute;
    top: 17px;
    left: 17px;
}

[data-form-section="affiliation"] .notice.informational strong {
    color: var(--unc-primary-dark);
}

@media (max-width: 767px) {
    [data-form-field="email"] .field-help,
    [data-form-field="phone"] .field-help {
        padding-left: 38px;
    }

    [data-form-section="affiliation"] .notice.informational {
        padding-left: 48px;
    }
}

/* =========================================================
   UNC - AUTORIZACIONES
   Lectura clara y aceptación integrada
   ========================================================= */

.consents-intro {
    margin: -2px 0 18px;
    color: var(--unc-text-soft);
    font-size: 14px;
    line-height: 1.55;
}

.consent-item-required {
    margin: 0 0 14px;
}

.consent-item-required:last-child {
    margin-bottom: 0;
}

.consent-notice {
    margin: 0;
    padding: 18px 20px 0;
    overflow: hidden;
    border: 1px solid var(--unc-border);
    border-left: 3px solid var(--unc-primary);
    border-radius: 10px;
    background: #FFFFFF;
}

.consent-copy strong {
    display: block;
    margin: 0 0 7px;
    color: var(--unc-primary-dark);
    font-size: 14.5px;
    line-height: 1.35;
    font-weight: 700;
}

.consent-copy p {
    margin: 0 0 16px;
    color: var(--unc-text-soft);
    font-size: 13.5px;
    line-height: 1.6;
}

.consent-item-required .consent-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 -20px;
    padding: 13px 20px;
    border-top: 1px solid var(--unc-border);
    background: #F8FAF6;
    color: var(--unc-text);
    font-size: 13.5px;
    line-height: 1.5;
    font-weight: 600;
    cursor: pointer;
}

.consent-item-required .consent-check input {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    margin: 1px 0 0;
    accent-color: var(--unc-primary);
}

.consent-item-required .consent-check:has(input:checked) {
    background: var(--unc-primary-soft);
}

@media (max-width: 767px) {
    .consents-intro {
        margin-bottom: 16px;
        font-size: 14px;
    }

    .consent-notice {
        padding: 16px 16px 0;
    }

    .consent-copy strong {
        font-size: 15px;
    }

    .consent-copy p {
        font-size: 13.5px;
        line-height: 1.6;
    }

    .consent-item-required .consent-check {
        margin-inline: -16px;
        padding: 14px 16px;
        font-size: 14px;
    }

    .consent-item-required .consent-check input {
        width: 21px;
        height: 21px;
    }
}

/* =========================================================
   UNC - ESPACIADO ENTRE AVISO INICIAL Y PRIMER PASO
   ========================================================= */

.registration-panel .before-form-notices + fieldset > .form-section-title {
    position: relative;
    top: 14px;
    margin-top: 0;
    margin-bottom: 33px;
}
