:root {
    --nc-ink: #0d2632;
    --nc-ink-soft: #415963;
    --nc-green-950: #063f36;
    --nc-green-900: #075c4b;
    --nc-green-700: #078867;
    --nc-green-500: #20b781;
    --nc-cyan: #15a8c9;
    --nc-lime: #9bcf44;
    --nc-mist: #edf7f4;
    --nc-cloud: #f5f9f8;
    --nc-white: #ffffff;
    --nc-line: rgba(13, 38, 50, .12);
    --nc-shadow-sm: 0 10px 28px rgba(11, 52, 59, .08);
    --nc-shadow-lg: 0 26px 70px rgba(11, 52, 59, .16);
    --nc-radius-sm: 14px;
    --nc-radius-md: 22px;
    --nc-radius-lg: 32px;
    --bs-success: #078867;
    --bs-success-rgb: 7, 136, 103;
    --bs-body-font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
    --bs-body-color: var(--nc-ink);
    --bs-body-bg: #fbfdfc;
}

/* Base visual propia: sustituye el antiguo framework generalista. */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; }
button, input, select, textarea { color: inherit; font: inherit; }
button, select { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .58; }
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration { display: none; appearance: none; }
a { color: inherit; }
address { font-style: normal; }
[hidden], .d-none { display: none !important; }

.container,
.container-xxl {
    width: min(100% - clamp(1.5rem, 6vw, 5rem), 1320px);
    margin-inline: auto;
}
.row { display: flex; flex-wrap: wrap; margin: -.5rem; }
.row > * { width: 100%; padding: .5rem; }
.row.g-0 { margin: 0; }
.row.g-0 > * { padding: 0; }
.row.g-3 { margin: -.75rem; }
.row.g-3 > * { padding: .75rem; }
.row.g-4 { margin: -1rem; }
.row.g-4 > * { padding: 1rem; }
.col-12 { width: 100%; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.flex-wrap { flex-wrap: wrap !important; }
.align-items-center { align-items: center !important; }
.align-items-end { align-items: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.gap-2 { gap: .5rem !important; }
.gap-3 { gap: 1rem !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.overflow-hidden { overflow: hidden !important; }
.position-relative { position: relative !important; }
.text-center { text-align: center !important; }
.text-white { color: #fff !important; }
.small { font-size: .875rem !important; }
.fw-bold { font-weight: 800 !important; }
.fs-4 { font-size: 1.5rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: .25rem !important; }
.mb-2 { margin-bottom: .5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mt-2 { margin-top: .5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.my-5 { margin-block: 3rem !important; }
.me-1 { margin-right: .25rem !important; }
.me-2 { margin-right: .5rem !important; }
.ms-1 { margin-left: .25rem !important; }
.p-0 { padding: 0 !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.py-4 { padding-block: 1.5rem !important; }
.rounded-3 { border-radius: 1rem !important; }
.rounded-4 { border-radius: 1.5rem !important; }
.rounded-circle { border-radius: 50% !important; }
.border { border: 1px solid var(--nc-line) !important; }
.border-0 { border: 0 !important; }
.shadow-sm { box-shadow: var(--nc-shadow-sm) !important; }
.vstack { display: flex; flex-direction: column; }
.sticky-top { position: sticky; top: 0; }
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    clip-path: inset(50%) !important;
}
.h3, .h4, .h5 { font-family: "Sora", "Manrope", sans-serif; font-weight: 800; }
.h3 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
.h4 { font-size: 1.45rem; }
.h5 { font-size: 1.15rem; }
.display-5 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); }

@media (min-width: 768px) {
    .col-md-4 { width: 33.333%; }
    .col-md-6 { width: 50%; }
    .row-cols-md-2 > * { width: 50%; }
    .p-md-5 { padding: 3rem !important; }
}
@media (min-width: 992px) {
    .col-lg-6 { width: 50%; }
    .col-lg-8 { width: 66.666%; }
    .row-cols-lg-3 > * { width: 33.333%; }
    .d-lg-block { display: block !important; }
    .align-items-lg-center { align-items: center !important; }
    .text-lg-start { text-align: left !important; }
    .ms-lg-auto { margin-left: auto !important; }
    .ms-lg-2 { margin-left: .5rem !important; }
    .p-lg-5 { padding: 3rem !important; }
}
@media (min-width: 1400px) { .d-xxl-flex { display: flex !important; } }
@media (max-width: 991.98px) { .d-lg-block, .d-xxl-flex { display: none !important; } }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 24px;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    color: var(--nc-ink);
    background:
        radial-gradient(circle at 6% 2%, rgba(32, 183, 129, .06), transparent 28rem),
        #fbfdfc;
    font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

main { overflow: clip; }

h1, h2, h3, h4, h5, h6 {
    color: var(--nc-ink);
    font-family: "Sora", "Manrope", sans-serif;
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.08;
}

p { text-wrap: pretty; }

img {
    max-width: 100%;
    image-rendering: auto;
}

a { text-underline-offset: .2em; }

::selection {
    color: #fff;
    background: var(--nc-green-700);
}

.container,
.container-xxl { --bs-gutter-x: clamp(1.25rem, 4vw, 3rem); }

.section-space { padding-block: clamp(4.5rem, 8vw, 8rem); }
.section-space-sm { padding-block: clamp(3rem, 6vw, 5.5rem); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: 1rem;
    color: var(--nc-green-700);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 2rem;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--nc-green-500), var(--nc-cyan));
}

.display-title {
    max-width: 13ch;
    margin: 0;
    font-size: clamp(2.65rem, 6.2vw, 6.25rem);
    line-height: .98;
    letter-spacing: -.065em;
}

.section-title {
    max-width: 18ch;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.7rem);
}

.section-intro {
    max-width: 62ch;
    margin-bottom: 0;
    color: var(--nc-ink-soft);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.text-secondary { color: var(--nc-ink-soft) !important; }
.text-success { color: var(--nc-green-700) !important; }
.bg-success-subtle { background-color: var(--nc-mist) !important; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: .72rem 1.35rem;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -.01em;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn-sm { min-height: 40px; padding: .55rem .9rem; font-size: .82rem; }
.btn-lg { min-height: 54px; padding: .85rem 1.5rem; }
.btn-link { border: 0; color: var(--nc-green-700); background: transparent; box-shadow: none; }

.btn-success {
    --bs-btn-bg: var(--nc-green-700);
    --bs-btn-border-color: var(--nc-green-700);
    --bs-btn-hover-bg: var(--nc-green-900);
    --bs-btn-hover-border-color: var(--nc-green-900);
    border-color: var(--nc-green-700);
    color: #fff;
    background: var(--nc-green-700);
    box-shadow: 0 10px 24px rgba(7, 136, 103, .22);
}
.btn-success:hover { border-color: var(--nc-green-900); color: #fff; background: var(--nc-green-900); }

.btn-outline-success {
    --bs-btn-color: var(--nc-green-700);
    --bs-btn-border-color: rgba(7, 136, 103, .42);
    --bs-btn-hover-bg: var(--nc-green-700);
    --bs-btn-hover-border-color: var(--nc-green-700);
    border-color: rgba(7,136,103,.42);
    color: var(--nc-green-700);
    background: #fff;
}
.btn-outline-success:hover { border-color: var(--nc-green-700); color: #fff; background: var(--nc-green-700); }

.btn-light {
    border-color: rgba(255,255,255,.65);
    background: #fff;
    color: var(--nc-green-950);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}
.btn-outline-light { border-color: rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn-outline-secondary { border-color: var(--nc-line); color: var(--nc-ink-soft); background: #fff; }

.btn:focus-visible,
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    border-color: var(--nc-green-500);
    box-shadow: 0 0 0 .25rem rgba(32, 183, 129, .17);
}

.card {
    background: #fff;
    border-color: var(--nc-line);
    border-radius: var(--nc-radius-md);
}
.card-body { padding: 1.25rem; }
.card-img { width: 100%; height: 100%; object-fit: cover; }
.card-img-overlay { position: absolute; inset: 0; }

.card-hover {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card-hover:hover,
.card-hover:focus-within {
    transform: translateY(-5px);
    border-color: rgba(7, 136, 103, .22) !important;
    box-shadow: var(--nc-shadow-lg) !important;
}

.surface {
    border: 1px solid var(--nc-line);
    border-radius: var(--nc-radius-lg);
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--nc-shadow-sm);
}

.reveal-on-scroll {
    transform: translateY(26px);
    opacity: 0;
    transition: transform .7s cubic-bezier(.2,.7,.2,1), opacity .7s ease;
}
.reveal-on-scroll.is-visible { transform: none; opacity: 1; }

.interactive-surface {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.interactive-surface:hover,
.interactive-surface:focus-within {
    transform: translateY(-6px);
    border-color: rgba(7,136,103,.24);
    box-shadow: var(--nc-shadow-lg);
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2rem,4vw,3.2rem);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--nc-green-700);
    font-weight: 800;
    text-decoration: none;
}
.link-arrow i { transition: transform .2s ease; }
.link-arrow:hover i { transform: translate(3px,-2px); }

.glass-chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    padding: .55rem .8rem;
    color: #fff;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
    font-size: .78rem;
    font-weight: 800;
}

.icon-box {
    display: inline-grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(7, 136, 103, .16);
    border-radius: 16px;
    color: var(--nc-green-700);
    background: var(--nc-mist);
    font-size: 1.3rem;
}

.page-hero {
    position: relative;
    min-height: min(680px, 76vh);
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    background: var(--nc-green-950);
    box-shadow: var(--nc-shadow-lg);
}

.page-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(3, 42, 36, .94) 0%, rgba(3, 42, 36, .75) 42%, rgba(3, 42, 36, .14) 74%, transparent 100%);
}

.page-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: inherit;
    align-items: center;
    padding: clamp(2rem, 6vw, 6rem);
    color: #fff;
}

.page-hero__content h1,
.page-hero__content h2 { color: #fff; }

.page-hero__content p { color: rgba(255, 255, 255, .82); }

.page-hero__content .eyebrow { color: #c3f3df; }
.page-hero__content .eyebrow::before { background: #8ee0bd; }

.form-control,
.form-select,
.input-group-text {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--nc-line);
    padding: .72rem .9rem;
    border-color: var(--nc-line);
    background-color: #fff;
}

.form-control,
.form-select { border-radius: 14px; }

.form-select {
    appearance: none;
    border-color: rgba(7,136,103,.2);
    padding-right: 3rem;
    color: var(--nc-ink);
    background-image: linear-gradient(45deg,transparent 50%,var(--nc-green-700) 50%),linear-gradient(135deg,var(--nc-green-700) 50%,transparent 50%),linear-gradient(135deg,rgba(7,136,103,.08),rgba(21,168,201,.06));
    background-position: calc(100% - 20px) 51%,calc(100% - 14px) 51%,100% 0;
    background-size: 6px 6px,6px 6px,48px 100%;
    background-repeat: no-repeat;
    box-shadow: 0 8px 22px rgba(6,63,54,.055);
    font-weight: 700;
    cursor: pointer;
    transition: border-color .2s ease,box-shadow .2s ease,transform .2s ease;
}
.form-select:hover { border-color: rgba(7,136,103,.42); box-shadow: 0 11px 26px rgba(6,63,54,.09); }
.form-select:focus { outline: 0; border-color: var(--nc-green-500); box-shadow: 0 0 0 4px rgba(32,183,129,.12),0 12px 28px rgba(6,63,54,.08); }

.custom-select { position: relative; width: 100%; }
.custom-select__native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.custom-select__button {
    display: grid;
    width: 100%;
    min-height: 52px;
    grid-template-columns: minmax(0,1fr) 36px;
    align-items: center;
    border: 1px solid rgba(7,136,103,.2);
    border-radius: 14px;
    padding: .7rem .35rem .7rem 1rem;
    color: var(--nc-ink);
    background: #fff;
    box-shadow: 0 8px 22px rgba(6,63,54,.055);
    font-weight: 750;
    text-align: left;
    transition: border-color .2s ease,box-shadow .2s ease;
}
.custom-select__button::after {
    display: block;
    width: 8px;
    height: 8px;
    justify-self: center;
    transform: translateY(-2px) rotate(45deg);
    border-right: 2px solid var(--nc-green-700);
    border-bottom: 2px solid var(--nc-green-700);
    content: "";
    transition: transform .25s ease;
}
.custom-select.is-open .custom-select__button::after { transform: translateY(2px) rotate(225deg); }
.custom-select__button:hover { border-color: rgba(7,136,103,.42); box-shadow: 0 11px 26px rgba(6,63,54,.09); }
.custom-select__button:focus-visible,
.custom-select.is-open .custom-select__button { outline: 0; border-color: var(--nc-green-500); box-shadow: 0 0 0 4px rgba(32,183,129,.12),0 12px 28px rgba(6,63,54,.08); }
.custom-select__menu {
    position: absolute;
    z-index: 80;
    top: calc(100% + .5rem);
    left: 0;
    display: grid;
    width: 100%;
    max-height: 240px;
    gap: .25rem;
    overflow-y: auto;
    transform: translateY(-6px) scale(.985);
    visibility: hidden;
    border: 1px solid rgba(7,136,103,.15);
    border-radius: 16px;
    padding: .4rem;
    opacity: 0;
    background: rgba(255,255,255,.985);
    box-shadow: 0 20px 46px rgba(6,63,54,.18);
    pointer-events: none;
    transition: opacity .18s ease,transform .24s cubic-bezier(.22,1,.36,1),visibility .18s ease;
}
.custom-select.is-open .custom-select__menu { transform: none; visibility: visible; opacity: 1; pointer-events: auto; }
.custom-select__option {
    display: grid;
    min-height: 42px;
    grid-template-columns: 24px minmax(0,1fr);
    gap: .55rem;
    align-items: center;
    border: 0;
    border-radius: 11px;
    padding: .55rem .7rem;
    color: var(--nc-ink);
    background: transparent;
    font-size: .88rem;
    font-weight: 700;
    text-align: left;
}
.custom-select__option::before {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 7px;
    color: transparent;
    content: "✓";
    background: var(--nc-cloud);
    font-size: .75rem;
}
.custom-select__option:hover,
.custom-select__option:focus-visible { outline: 0; color: var(--nc-green-950); background: var(--nc-mist); }
.custom-select__option[aria-selected="true"] { color: var(--nc-green-950); background: linear-gradient(135deg,#e7f7f1,#eff9f7); }
.custom-select__option[aria-selected="true"]::before { color: #fff; background: var(--nc-green-700); }
.custom-select__option:disabled { display: none; }
.form-floating > .custom-select .custom-select__button { min-height: 58px; padding: 1.45rem .35rem .4rem 1rem; }
.was-validated .form-select:invalid + .custom-select__button { border-color: #c34a52; box-shadow: 0 0 0 3px rgba(195,74,82,.09); }

@media (prefers-reduced-motion: reduce) {
    .custom-select__button::after,.custom-select__menu { transition: none; }
}

.input-group > .form-control:first-child,
.input-group > .input-group-text:first-child { border-radius: 14px 0 0 14px; }
.input-group > .form-control:last-child,
.input-group > .btn:last-child { border-radius: 0 14px 14px 0; }
.input-group { display: flex; width: 100%; }
.input-group-text { display: grid; width: 48px; flex: 0 0 48px; place-items: center; border-radius: 14px 0 0 14px; }
.input-group .form-control { min-width: 0; border-radius: 0; }
.form-floating { position: relative; }
.form-floating > .form-control,
.form-floating > .form-select { padding: 1.55rem 1rem .5rem; }
.form-floating > label {
    position: absolute;
    top: .42rem;
    left: 1rem;
    color: var(--nc-ink-soft);
    font-size: .72rem;
    font-weight: 700;
    pointer-events: none;
}
.invalid-feedback { display: none; margin-top: .35rem; color: #a92d36; font-size: .74rem; }
.was-validated :invalid ~ .invalid-feedback { display: block; }
.was-validated .form-control:invalid,
.was-validated .form-select:invalid { border-color: #c34a52; box-shadow: 0 0 0 3px rgba(195,74,82,.09); }

.alert { border-radius: 16px; padding: 1rem; }
.alert-light { background: #fff; }
.spinner-border {
    width: 1.4rem;
    height: 1.4rem;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: ncSpin .7s linear infinite;
}
@keyframes ncSpin { to { transform: rotate(360deg); } }

/* Iconografía local de compatibilidad: usa la única familia Font Awesome cargada. */
.bi { display: inline-block; font-family: "Font Awesome 6 Free"; font-style: normal; font-weight: 900; line-height: 1; }
.bi::before { display: inline-block; }
.bi-arrow-down-right::before,.bi-arrow-right::before { content: "\f061"; }
.bi-arrow-left::before { content: "\f060"; }
.bi-arrow-up-right::before,.bi-box-arrow-up-right::before { content: "\f35d"; }
.bi-at::before { content: "\f1fa"; }
.bi-basket::before { content: "\f553"; }
.bi-book::before { content: "\f02d"; }
.bi-box-seam::before { content: "\f466"; }
.bi-boxes::before { content: "\f468"; }
.bi-building::before,.bi-building-check::before { content: "\f1ad"; }
.bi-bullseye::before { content: "\f140"; }
.bi-calculator::before { content: "\f1ec"; }
.bi-chat-dots::before { content: "\f4ad"; }
.bi-check2::before { content: "\f00c"; }
.bi-check2-circle::before { content: "\f058"; }
.bi-check2-square::before { content: "\f14a"; }
.bi-clock::before { content: "\f017"; }
.bi-clock-history::before { content: "\f1da"; }
.bi-columns-gap::before { content: "\f0db"; }
.bi-cup-straw::before { content: "\f0f4"; }
.bi-dash-circle::before { content: "\f056"; }
.bi-diagram-3::before { content: "\f0e8"; }
.bi-droplet::before,.bi-droplet-half::before { content: "\f043"; }
.bi-envelope::before,.bi-envelope-check::before { content: "\f0e0"; }
.bi-exclamation-octagon::before,.bi-exclamation-triangle::before { content: "\f071"; }
.bi-eye::before { content: "\f06e"; }
.bi-eyeglasses::before { content: "\f530"; }
.bi-file-earmark-text::before { content: "\f15c"; }
.bi-fire::before { content: "\f06d"; }
.bi-fork-knife::before { content: "\f2e7"; }
.bi-gear-wide-connected::before { content: "\f085"; }
.bi-gem::before { content: "\f3a5"; }
.bi-grid::before { content: "\f84c"; }
.bi-grid-3x3-gap::before { content: "\f58d"; }
.bi-headset::before { content: "\f590"; }
.bi-info-circle::before { content: "\f05a"; }
.bi-journal-check::before { content: "\f518"; }
.bi-newspaper::before { content: "\f1ea"; }
.bi-person::before { content: "\f007"; }
.bi-plus-circle::before { content: "\f055"; }
.bi-receipt::before { content: "\f543"; }
.bi-search::before { content: "\f002"; }
.bi-shield-check::before,.bi-shield-plus::before { content: "\f3ed"; }
.bi-shield-lock::before { content: "\f023"; }
.bi-signpost-split::before { content: "\f277"; }
.bi-sliders::before { content: "\f1de"; }
.bi-stars::before { content: "\f005"; }
.bi-tag::before { content: "\f02b"; }
.bi-telephone::before { content: "\f095"; }
.bi-tools::before { content: "\f7d9"; }
.bi-ui-checks-grid::before { content: "\f0ae"; }
.bi-view-list::before { content: "\f03a"; }
.bi-whatsapp { font-family: "Font Awesome 6 Brands"; font-weight: 400; }
.bi-whatsapp::before { content: "\f232"; }
.bi-wind::before { content: "\f72e"; }
.bi-window::before { content: "\f2d0"; }
.bi-window-stack::before { content: "\f5fd"; }
.bi-x-lg::before { content: "\f00d"; }

/* Modales accesibles y livianos, sin JavaScript de terceros. */
.modal {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: none;
    overflow: auto;
    padding: clamp(.75rem, 3vw, 2rem);
    background: rgba(2,31,28,.72);
    backdrop-filter: blur(10px);
}
.modal.is-open { display: grid; place-items: center; }
.modal-dialog { width: min(100%, 1140px); margin: auto; transform: translateY(18px) scale(.985); opacity: 0; transition: transform .3s cubic-bezier(.22,1,.36,1), opacity .22s ease; }
.modal.is-open .modal-dialog { transform: none; opacity: 1; }
.modal-content { position: relative; border: 1px solid rgba(255,255,255,.28); border-radius: 26px; background: #fff; box-shadow: 0 35px 90px rgba(0,25,22,.34); }
.modal-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--nc-line); padding: 1.25rem 1.5rem; }
.modal-body { padding: 1.5rem; }
.btn-close {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border: 1px solid var(--nc-line);
    border-radius: 50%;
    padding: 0;
    background: #fff;
}
.btn-close::before, .btn-close::after { position: absolute; width: 17px; height: 2px; border-radius: 2px; content: ""; background: currentColor; }
.btn-close::before { transform: rotate(45deg); }
.btn-close::after { transform: rotate(-45deg); }
body.modal-open, body.nav-open { overflow: hidden; }

/* Acordeón propio. */
.accordion-item { border-bottom: 1px solid var(--nc-line); }
.accordion-button { position: relative; width: 100%; border: 0; padding: 1.25rem 3rem 1.25rem 1rem; color: var(--nc-ink); background: transparent; text-align: left; }
.accordion-button::after { position: absolute; top: 50%; right: 1rem; width: 10px; height: 10px; transform: translateY(-65%) rotate(45deg); border-right: 2px solid var(--nc-green-700); border-bottom: 2px solid var(--nc-green-700); content: ""; transition: transform .25s ease; }
.accordion-button[aria-expanded="true"] { color: var(--nc-green-900); background: var(--nc-mist); }
.accordion-button[aria-expanded="true"]::after { transform: translateY(-25%) rotate(225deg); }
.accordion-body { padding: 1rem; }

.badge {
    padding: .55em .75em;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: .02em;
}

.text-bg-success { background: var(--nc-green-700) !important; }

.nc-cta {
    position: relative;
    overflow: hidden;
    border-radius: var(--nc-radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 90% 20%, rgba(85, 225, 179, .25), transparent 28%),
        linear-gradient(135deg, var(--nc-green-950), #08735c 62%, #0a8878);
    box-shadow: var(--nc-shadow-lg);
}

.nc-cta h2,
.nc-cta h3 { color: #fff; }
.nc-cta p { color: rgba(255, 255, 255, .78); }

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    transform: translateY(-160%);
    border-radius: 12px;
    padding: .65rem 1rem;
    color: #fff;
    background: var(--nc-green-950);
}
.skip-link:focus { transform: none; }

@media (max-width: 767.98px) {
    .page-hero { min-height: 610px; }
    .page-hero img { object-position: 64% 50%; }
    .page-hero::after {
        background: linear-gradient(180deg, rgba(3, 42, 36, .18) 0%, rgba(3, 42, 36, .88) 54%, rgba(3, 42, 36, .98) 100%);
    }
    .page-hero__content { align-items: flex-end; padding: 2rem 1.35rem; }
    .display-title { font-size: clamp(2.5rem, 13vw, 4.2rem); }
}

@media (hover: hover) {
    .btn:hover { transform: translateY(-2px); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .reveal-on-scroll { transform: none; opacity: 1; }
}
