:root {
    --aw-bg: #eef4f8;
    --aw-bg-2: #f7fbfe;
    --aw-surface: rgba(255, 255, 255, 0.82);
    --aw-surface-strong: #ffffff;
    --aw-surface-soft: #f6fbff;
    --aw-surface-muted: rgba(246, 251, 255, 0.72);

    --aw-text: #0d2230;
    --aw-text-soft: #536b7a;
    --aw-text-muted: #7f94a3;
    --aw-text-inverse: #f7fcff;

    --aw-primary: #053048;
    --aw-primary-2: #0c5d86;
    --aw-secondary: #018e80;
    --aw-accent: #21b6d7;
    --aw-accent-2: #6ed8f0;

    --aw-border: rgba(5, 48, 72, 0.10);
    --aw-border-strong: rgba(5, 48, 72, 0.16);
    --aw-border-soft: rgba(5, 48, 72, 0.06);

    --aw-success: #119c73;
    --aw-danger: #d45151;
    --aw-warning: #f0ad3d;

    --aw-shadow-xs: 0 4px 14px rgba(5, 48, 72, 0.06);
    --aw-shadow-sm: 0 10px 28px rgba(5, 48, 72, 0.08);
    --aw-shadow-md: 0 18px 44px rgba(5, 48, 72, 0.12);
    --aw-shadow-lg: 0 26px 70px rgba(5, 48, 72, 0.16);
    --aw-shadow-focus: 0 0 0 4px rgba(33, 182, 215, 0.12);
    --aw-shadow-danger: 0 0 0 4px rgba(212, 81, 81, 0.10);

    --aw-radius-xs: 10px;
    --aw-radius-sm: 14px;
    --aw-radius-md: 18px;
    --aw-radius-lg: 24px;
    --aw-radius-xl: 30px;
    --aw-radius-pill: 999px;

    --aw-transition-fast: 180ms ease;
    --aw-transition-base: 260ms ease;
    --aw-transition-soft: 420ms cubic-bezier(.2, .8, .2, 1);

    --aw-shell-max: 760px;
}

/* =========================
   BASE
   ========================= */

html,
body {
    min-height: 100%;
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(33, 182, 215, 0.12), transparent 28%),
        radial-gradient(circle at bottom right, rgba(1, 142, 128, 0.10), transparent 32%),
        linear-gradient(180deg, #f8fcff 0%, #edf4f8 100%);
    color: var(--aw-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

html * {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    display: block;
}

a,
button,
input,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
}

[hidden] {
    display: none !important;
}

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

.aw-main-wrapper {
    position: relative;
    min-height: 100vh;
    overflow: clip;
}

.aw-main-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.08)),
        radial-gradient(circle at 15% 20%, rgba(33, 182, 215, 0.10), transparent 22%);
    pointer-events: none;
}

.row-height,
.full-height {
    min-height: 100vh;
}

.aw-split-layout {
    position: relative;
    z-index: 1;
}

.aw-brand-panel,
.aw-interactive-panel {
    padding: 0;
}

.aw-brand-wrapper,
.aw-wizard-container {
    height: 100%;
}

/* =========================
   PANEL IZQUIERDO
   ========================= */

.aw-brand-panel {
    position: relative;
    display: flex;
    align-items: stretch;
    background:
        linear-gradient(160deg, rgba(5, 48, 72, 0.97) 0%, rgba(8, 76, 104, 0.94) 48%, rgba(1, 142, 128, 0.86) 100%);
    color: var(--aw-text-inverse);
    overflow: hidden;
    isolation: isolate;
}

.aw-brand-panel::before,
.aw-brand-panel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
}

.aw-brand-panel::before {
    width: 420px;
    height: 420px;
    top: -140px;
    right: -120px;
    background: radial-gradient(circle, rgba(33, 182, 215, 0.24), transparent 68%);
}

.aw-brand-panel::after {
    width: 300px;
    height: 300px;
    left: -90px;
    bottom: -90px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.10), transparent 68%);
}

.aw-brand-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 42px 42px 28px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.aw-brand-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.aw-logo-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        transform var(--aw-transition-base),
        box-shadow var(--aw-transition-base),
        background var(--aw-transition-base),
        border-color var(--aw-transition-base);
}

.aw-logo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.18);
}

.aw-logo-link:focus-visible {
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.16),
        0 0 0 7px rgba(33, 182, 215, 0.14);
}

.aw-logo-img {
    max-width: 180px;
    width: 100%;
    height: auto;
}

.aw-social-nav {
    align-self: flex-start;
}

.aw-social-list {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.aw-social-list li a {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition:
        transform var(--aw-transition-base),
        background var(--aw-transition-base),
        box-shadow var(--aw-transition-base),
        border-color var(--aw-transition-base);
}

.aw-social-list li a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.aw-social-list li a:focus-visible {
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.16),
        0 0 0 7px rgba(33, 182, 215, 0.14);
}

.aw-brand-copy {
    margin-top: auto;
    max-width: 580px;
}

.aw-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    padding: 8px 12px;
    border-radius: var(--aw-radius-pill);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(247, 252, 255, 0.92);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.aw-headline {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    text-wrap: balance;
}

.aw-description {
    max-width: 54ch;
    margin: 0;
    font-size: 1rem;
    line-height: 1.72;
    color: rgba(247, 252, 255, 0.82);
}

.aw-brand-actions {
    margin-top: 28px;
}

.aw-seo-tags {
    margin-top: 34px;
}

.aw-seo-title {
    margin: 0 0 14px;
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(247, 252, 255, 0.86);
}

.aw-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.aw-chip-list li span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 10px 14px;
    border-radius: var(--aw-radius-pill);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(247, 252, 255, 0.92);
    font-size: 0.88rem;
    font-weight: 600;
}

.aw-copyright {
    margin-top: auto;
    font-size: 0.84rem;
    color: rgba(247, 252, 255, 0.62);
}

/* =========================
   BOTONES
   ========================= */

.btn_1,
.aw-btn-explore,
.aw-btn-primary,
.aw-btn-nav,
.aw-btn-submit {
    border: 0;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition:
        transform var(--aw-transition-base),
        box-shadow var(--aw-transition-base),
        background var(--aw-transition-base),
        border-color var(--aw-transition-base),
        color var(--aw-transition-base),
        opacity var(--aw-transition-base);
}

.aw-btn-explore,
.aw-btn-primary,
.aw-btn-next,
.aw-btn-submit-final,
.btn_1.aw-btn-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 22px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--aw-primary) 0%, var(--aw-primary-2) 40%, var(--aw-accent) 100%);
    box-shadow: 0 16px 34px rgba(12, 93, 134, 0.22);
}

.aw-btn-explore:hover,
.aw-btn-primary:hover,
.aw-btn-next:hover,
.aw-btn-submit-final:hover,
.btn_1.aw-btn-explore:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 22px 40px rgba(12, 93, 134, 0.28);
}

.aw-btn-explore:focus-visible,
.aw-btn-primary:focus-visible,
.aw-btn-next:focus-visible,
.aw-btn-submit-final:focus-visible,
.aw-btn-prev:focus-visible {
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.82),
        0 0 0 8px rgba(33, 182, 215, 0.18);
}

.aw-btn-submit-final[disabled],
.aw-btn-next[disabled] {
    opacity: 0.72;
    cursor: progress;
    transform: none;
}

.aw-btn-prev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 20px;
    border-radius: 16px;
    color: var(--aw-primary);
    background: rgba(5, 48, 72, 0.05);
    border: 1px solid var(--aw-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.aw-btn-prev:hover:not(:disabled) {
    transform: translateY(-1px);
    background: rgba(5, 48, 72, 0.08);
}

.aw-btn-prev:disabled {
    opacity: 0.48;
    cursor: not-allowed;
    box-shadow: none;
}

/* =========================
   PANEL DERECHO / FORMULARIO
   ========================= */

.aw-interactive-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(244, 250, 253, 0.80) 100%);
}

.aw-wizard-container {
    width: 100%;
    max-width: var(--aw-shell-max);
    display: flex;
    align-items: center;
    justify-content: center;
}

.aw-form-shell {
    width: 100%;
    border-radius: var(--aw-radius-lg);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--aw-shadow-lg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
    position: relative;
}

.aw-form-shell::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    pointer-events: none;
}

.aw-form-topbar {
    padding: 28px 30px 18px;
    border-bottom: 1px solid var(--aw-border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(246, 251, 255, 0.76) 100%);
}

.aw-form-intro {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.aw-form-kicker {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--aw-secondary);
}

.aw-form-heading {
    margin: 0;
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--aw-primary);
}

.aw-progress-wrapper {
    margin-bottom: 14px;
}

.aw-progress-track {
    position: relative;
    width: 100%;
    height: 12px;
    border-radius: var(--aw-radius-pill);
    background: rgba(5, 48, 72, 0.08);
    overflow: hidden;
}

.aw-progress-track::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent);
    pointer-events: none;
}

.aw-progress-bar {
    height: 100%;
    border-radius: var(--aw-radius-pill);
    background: linear-gradient(90deg, var(--aw-secondary) 0%, var(--aw-accent) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.28) inset,
        0 8px 18px rgba(33, 182, 215, 0.18);
    transition: width var(--aw-transition-soft);
}

.aw-progress-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.aw-progress-step {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--aw-primary);
}

.aw-progress-helper {
    margin: 0;
    font-size: 0.92rem;
    color: var(--aw-text-soft);
}

.aw-status-live {
    min-height: 1px;
}

.aw-form {
    padding: 0 30px 28px;
}

.aw-breadcrumb-row {
    padding-top: 18px;
    margin-bottom: 10px;
}

.aw-breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    gap: 4px;
    font-size: 0.88rem;
}

.aw-breadcrumb .breadcrumb-item,
.aw-breadcrumb .breadcrumb-item a {
    color: var(--aw-text-muted);
}

.aw-breadcrumb .breadcrumb-item a:hover {
    color: var(--aw-primary-2);
    text-decoration: underline;
}

.aw-breadcrumb .breadcrumb-item.active {
    color: var(--aw-primary);
    font-weight: 700;
}

.aw-wizard-steps {
    position: relative;
}

.aw-step-panel {
    padding: 16px 0 4px;
    animation: awFadeUp .34s ease;
}

.aw-step-panel[hidden] {
    display: none !important;
}

.aw-step-panel-current {
    position: relative;
}

.aw-step-transition {
    will-change: transform, opacity;
}

.aw-step-header {
    margin-bottom: 24px;
}

.aw-step-eyebrow {
    margin: 0 0 8px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--aw-secondary);
}

.aw-step-title {
    margin: 0 0 8px;
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--aw-primary);
    text-wrap: balance;
}

.aw-step-subtitle {
    max-width: 62ch;
    margin: 0;
    color: var(--aw-text-soft);
    line-height: 1.65;
}

.aw-step-body {
    display: grid;
    gap: 18px;
}

/* =========================
   BLOQUES / TARJETAS
   ========================= */

.aw-input-group,
.aw-range-group,
.aw-segmented-switch,
.aw-terms-panel {
    position: relative;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.94));
    border: 1px solid var(--aw-border);
    box-shadow: var(--aw-shadow-xs);
    transition:
        transform var(--aw-transition-base),
        border-color var(--aw-transition-base),
        box-shadow var(--aw-transition-base),
        background var(--aw-transition-base);
}

.aw-input-group:focus-within,
.aw-range-group:focus-within,
.aw-segmented-switch:focus-within,
.aw-terms-panel:focus-within {
    border-color: rgba(33, 182, 215, 0.34);
    box-shadow: var(--aw-shadow-focus), var(--aw-shadow-sm);
    transform: translateY(-1px);
}

.aw-has-error {
    border-color: rgba(212, 81, 81, 0.28) !important;
    box-shadow:
        0 0 0 1px rgba(212, 81, 81, 0.05),
        0 12px 28px rgba(212, 81, 81, 0.06);
}

.aw-has-error:focus-within {
    box-shadow: var(--aw-shadow-danger), var(--aw-shadow-sm);
}

/* =========================
   CAMPOS
   ========================= */

.aw-label,
.aw-field-legend {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--aw-primary);
}

.aw-field-legend {
    padding: 0;
}

.aw-label-optional {
    color: var(--aw-text-muted);
    font-weight: 600;
}

.aw-field-head {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.aw-field-help-inline {
    margin-top: 0;
}

.aw-input,
.aw-textarea {
    display: block;
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--aw-border);
    background: #fff;
    color: var(--aw-text);
    box-shadow: none;
    transition:
        border-color var(--aw-transition-base),
        box-shadow var(--aw-transition-base),
        background var(--aw-transition-base),
        color var(--aw-transition-base);
}

.aw-input {
    min-height: 54px;
    padding: 0 16px;
}

.aw-textarea {
    min-height: 150px;
    resize: vertical;
    padding: 14px 16px;
}

.aw-input::placeholder,
.aw-textarea::placeholder {
    color: #93a5b3;
}

.aw-input:hover,
.aw-textarea:hover {
    border-color: rgba(5, 48, 72, 0.16);
}

.aw-input:focus,
.aw-textarea:focus {
    border-color: rgba(33, 182, 215, 0.48);
    box-shadow: var(--aw-shadow-focus);
    background: #fff;
}

.aw-is-invalid {
    border-color: rgba(212, 81, 81, 0.42) !important;
    box-shadow: none;
}

.aw-is-invalid:focus {
    box-shadow: var(--aw-shadow-danger) !important;
}

.aw-field-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.aw-highlight {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: var(--aw-radius-pill);
    background: rgba(33, 182, 215, 0.10);
    border: 1px solid rgba(33, 182, 215, 0.18);
    color: var(--aw-primary);
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.aw-field-help {
    margin: 10px 0 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--aw-text-soft);
}

.aw-field-error {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(212, 81, 81, 0.08);
    border: 1px solid rgba(212, 81, 81, 0.14);
    color: #b43d3d;
    font-size: 0.84rem;
    line-height: 1.45;
    font-weight: 600;
}

/* =========================
   RANGE
   ========================= */

.aw-range-slider {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 12px;
    border: 0;
    border-radius: var(--aw-radius-pill);
    outline: none;
    padding: 0;
    background: linear-gradient(to right, var(--aw-secondary) 0%, var(--aw-secondary) 30%, var(--aw-border) 30%, var(--aw-border) 100%);
    cursor: pointer;
}

.aw-range-slider::-webkit-slider-runnable-track {
    height: 12px;
    border-radius: var(--aw-radius-pill);
    background: transparent;
}

.aw-range-slider::-moz-range-track {
    height: 12px;
    border-radius: var(--aw-radius-pill);
    background: transparent;
}

.aw-range-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    margin-top: -6px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aw-primary), var(--aw-accent));
    box-shadow:
        0 8px 18px rgba(5, 48, 72, 0.24),
        0 0 0 1px rgba(5, 48, 72, 0.06);
    cursor: pointer;
    transition: transform var(--aw-transition-fast), box-shadow var(--aw-transition-fast);
}

.aw-range-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aw-primary), var(--aw-accent));
    box-shadow:
        0 8px 18px rgba(5, 48, 72, 0.24),
        0 0 0 1px rgba(5, 48, 72, 0.06);
    cursor: pointer;
    transition: transform var(--aw-transition-fast), box-shadow var(--aw-transition-fast);
}

.aw-range-slider:hover::-webkit-slider-thumb,
.aw-range-slider:focus::-webkit-slider-thumb,
.aw-range-slider:hover::-moz-range-thumb,
.aw-range-slider:focus::-moz-range-thumb {
    transform: scale(1.05);
}

.aw-range-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: var(--aw-text-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

/* =========================
   SEGMENTED / GÉNERO
   ========================= */

.aw-segmented-switch {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
}

.aw-gender-fieldset {
    overflow: hidden;
    margin: 0;
    min-width: 0;
}

.aw-gender-shell {
    display: grid;
    gap: 14px;
}

.aw-segments-container {
    display: grid;
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(5, 48, 72, 0.035), rgba(5, 48, 72, 0.075));
    border: 1px solid rgba(5, 48, 72, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.aw-gender-segments {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.aw-segment {
    position: relative;
    min-width: 0;
    display: block;
    border-radius: 18px;
    outline: none;
}

.aw-segment-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.aw-segment-control {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-height: 94px;
    padding: 16px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(5, 48, 72, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 3px 10px rgba(5, 48, 72, 0.04);
    cursor: pointer;
    transition:
        transform var(--aw-transition-base),
        background var(--aw-transition-base),
        border-color var(--aw-transition-base),
        box-shadow var(--aw-transition-base),
        color var(--aw-transition-base);
}

.aw-segment:hover .aw-segment-control {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(12, 93, 134, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        0 10px 22px rgba(5, 48, 72, 0.08);
}

.aw-segment-label {
    display: block;
    min-height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--aw-primary);
    font-size: 0.98rem;
    line-height: 1.25;
    font-weight: 800;
    text-align: left;
}

.aw-segment-meta {
    display: block;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--aw-text-soft);
    font-weight: 600;
}

.aw-segment-label,
.aw-segment-meta {
    transition: color var(--aw-transition-base);
}

.aw-segment-input:checked + .aw-segment-control,
.aw-active-segment .aw-segment-control,
.aw-segment[data-selected="true"] .aw-segment-control {
    background:
        linear-gradient(135deg, rgba(5, 48, 72, 0.96) 0%, rgba(12, 93, 134, 0.94) 42%, rgba(33, 182, 215, 0.92) 100%);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 16px 28px rgba(12, 93, 134, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.aw-segment-input:checked + .aw-segment-control .aw-segment-label,
.aw-segment-input:checked + .aw-segment-control .aw-segment-meta,
.aw-active-segment .aw-segment-label,
.aw-active-segment .aw-segment-meta,
.aw-segment[data-selected="true"] .aw-segment-label,
.aw-segment[data-selected="true"] .aw-segment-meta {
    color: #fff;
}

.aw-segment:focus-within .aw-segment-control,
.aw-segment-input:focus-visible + .aw-segment-control {
    box-shadow:
        0 0 0 4px rgba(33, 182, 215, 0.18),
        0 14px 28px rgba(12, 93, 134, 0.16);
}

.aw-gender-selection-status {
    margin: 0;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(5, 48, 72, 0.04);
    border: 1px solid rgba(5, 48, 72, 0.06);
    color: var(--aw-text-soft);
    font-size: 0.86rem;
    line-height: 1.5;
}

.aw-gender-footer-help {
    margin-top: 14px;
}

/* =========================
   TÉRMINOS / TOGGLE
   ========================= */

.aw-terms-title {
    margin: 0 0 14px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--aw-primary);
}

.aw-link {
    color: var(--aw-primary-2);
    font-weight: 700;
    transition: color var(--aw-transition-base), opacity var(--aw-transition-base);
}

.aw-link:hover {
    color: var(--aw-secondary);
    text-decoration: underline;
}

.aw-link:focus-visible {
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.84),
        0 0 0 7px rgba(33, 182, 215, 0.14);
    border-radius: 8px;
}

.aw-terms-scroll-box {
    max-height: 220px;
    overflow: auto;
    padding: 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--aw-border);
    color: var(--aw-text-soft);
    scrollbar-width: thin;
    scrollbar-color: rgba(12, 93, 134, 0.35) rgba(5, 48, 72, 0.06);
}

.aw-terms-scroll-box::-webkit-scrollbar {
    width: 10px;
}

.aw-terms-scroll-box::-webkit-scrollbar-track {
    background: rgba(5, 48, 72, 0.06);
    border-radius: 999px;
}

.aw-terms-scroll-box::-webkit-scrollbar-thumb {
    background: rgba(12, 93, 134, 0.35);
    border-radius: 999px;
}

.aw-toggle-group {
    margin-top: 16px !important;
}

.aw-toggle-switch {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.aw-toggle-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.aw-toggle-slider {
    position: relative;
    width: 56px;
    height: 32px;
    border-radius: var(--aw-radius-pill);
    background: rgba(5, 48, 72, 0.16);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: background var(--aw-transition-base), box-shadow var(--aw-transition-base);
}

.aw-toggle-slider::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 16px rgba(5, 48, 72, 0.18);
    transition: transform var(--aw-transition-base);
}

.aw-toggle-input:checked + .aw-toggle-slider {
    background: linear-gradient(90deg, var(--aw-secondary), var(--aw-accent));
}

.aw-toggle-input:checked + .aw-toggle-slider::before {
    transform: translateX(24px);
}

.aw-toggle-input:focus-visible + .aw-toggle-slider {
    box-shadow:
        0 0 0 4px rgba(33, 182, 215, 0.16),
        inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.aw-toggle-text {
    color: var(--aw-text-soft);
    line-height: 1.5;
}

/* =========================
   FOOTER / ACCIONES
   ========================= */

.aw-wizard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 20px;
    margin-top: 18px;
    border-top: 1px solid var(--aw-border);
}

.aw-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================
   VALIDACIÓN
   ========================= */

.aw-has-validation-error .required:invalid,
.aw-has-validation-error .required:placeholder-shown,
.aw-has-validation-error textarea.required:invalid {
    border-color: rgba(212, 81, 81, 0.45);
}

.aw-has-validation-error .aw-step-panel-current .required:focus,
.aw-has-validation-error .aw-step-panel-current .required:invalid:focus {
    box-shadow: var(--aw-shadow-danger);
}

/* =========================
   MODALES
   ========================= */

.aw-modal-dialog {
    max-width: 720px;
    padding: 18px;
}

.aw-modal-content {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--aw-shadow-lg);
}

.aw-modal-header,
.aw-modal-footer {
    border: 0;
}

.aw-modal-header {
    padding: 24px 26px 12px;
}

.aw-modal-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--aw-primary);
}

.aw-modal-body {
    padding: 10px 26px 8px;
    color: var(--aw-text-soft);
    line-height: 1.7;
}

.aw-modal-footer {
    padding: 16px 26px 24px;
}

/* =========================
   OVERLAY LEGACY
   ========================= */

.cd-overlay-nav,
.cd-overlay-content {
    pointer-events: none;
}

.cd-overlay-nav span,
.cd-overlay-content span {
    display: block;
}

/* =========================
   FOCUS GLOBAL
   ========================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: none;
}

/* =========================
   ANIMACIONES
   ========================= */

@keyframes awFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1399.98px) {
    .aw-brand-wrapper {
        padding: 38px 34px 24px;
    }

    .aw-interactive-panel {
        padding: 28px;
    }
}

@media (max-width: 1199.98px) {
    .aw-brand-wrapper {
        padding: 34px 28px 24px;
    }

    .aw-interactive-panel {
        padding: 22px;
    }

    .aw-form-topbar,
    .aw-form {
        padding-left: 22px;
        padding-right: 22px;
    }

    .aw-headline {
        font-size: clamp(2rem, 4.4vw, 3rem);
    }
}

@media (max-width: 991.98px) {
    .row-height,
    .full-height {
        min-height: auto;
    }

    .aw-split-layout {
        display: block;
    }

    .aw-brand-panel,
    .aw-interactive-panel {
        min-height: auto;
        width: 100%;
    }

    .aw-brand-wrapper {
        gap: 22px;
    }

    .aw-brand-copy {
        margin-top: 0;
    }

    .aw-headline {
        max-width: 13ch;
    }

    .aw-copyright {
        margin-top: 10px;
    }

    .aw-interactive-panel {
        padding-top: 18px;
        padding-bottom: 28px;
    }

    .aw-form-shell {
        border-radius: 24px;
    }
}

@media (max-width: 767.98px) {
    .aw-brand-wrapper {
        padding: 22px 18px 20px;
    }

    .aw-brand-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .aw-social-list li a {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .aw-headline {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
        max-width: none;
    }

    .aw-description {
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .aw-seo-tags {
        margin-top: 24px;
    }

    .aw-interactive-panel {
        padding: 14px;
    }

    .aw-form-shell {
        border-radius: 20px;
    }

    .aw-form-topbar {
        padding: 20px 16px 14px;
    }

    .aw-form {
        padding: 0 16px 20px;
    }

    .aw-step-panel {
        padding-top: 10px;
    }

    .aw-input-group,
    .aw-range-group,
    .aw-segmented-switch,
    .aw-terms-panel {
        padding: 16px;
        border-radius: 18px;
    }

    .aw-progress-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .aw-field-topline {
        flex-direction: column;
        align-items: flex-start;
    }

    .aw-wizard-footer {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .aw-action-row {
        flex-direction: column;
        align-items: stretch;
    }

    .aw-btn-prev,
    .aw-btn-next,
    .aw-btn-submit-final {
        width: 100%;
    }

    .aw-gender-segments {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .aw-form-heading {
        font-size: 1.12rem;
    }

    .aw-step-title {
        font-size: 1.35rem;
    }

    .aw-breadcrumb {
        font-size: 0.8rem;
    }

    .aw-toggle-switch {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .aw-toggle-slider {
        margin-bottom: 4px;
    }

    .aw-segment-control {
        min-height: 78px;
        padding: 14px;
    }
}

@media (max-width: 420px) {
    .aw-brand-wrapper {
        padding-inline: 14px;
    }

    .aw-interactive-panel {
        padding: 10px;
    }

    .aw-form-topbar {
        padding: 18px 14px 12px;
    }

    .aw-form {
        padding: 0 14px 18px;
    }

    .aw-input-group,
    .aw-range-group,
    .aw-segmented-switch,
    .aw-terms-panel {
        padding: 14px;
    }

    .aw-highlight {
        min-width: 78px;
        min-height: 36px;
        font-size: 0.84rem;
    }

    .aw-progress-step,
    .aw-progress-helper,
    .aw-field-help,
    .aw-gender-selection-status {
        font-size: 0.84rem;
    }

    .aw-input,
    .aw-textarea {
        border-radius: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}