/* ============================================================
   Nova Glow — hoja única
   La escala (tipo, padding, logos) crece con el viewport.
   Layout: 380 / 600 / 900 / 1100 / 1600 / 2000 / 2600
   ============================================================ */

@font-face {
    font-family: 'Arcane Nine';
    src: url('../res/fonts/ArcaneNine/ArcaneNine.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --cream: #f5f1ea;
    --cream-2: #faf7f2;
    --cream-3: #f6f4f0;
    --ink: #2f3e42;
    --ink-2: #4a5558;
    --gold: #8c6641;
    --gold-light: #c9a17a;
    --teal: #1b3d3a;
    --teal-2: #14302e;
    --teal-deep: #05453d;
    --white: #ffffff;
    --font: 'Asap Condensed', 'Arial Narrow', sans-serif;
    --display: 'Arcane Nine', 'Asap Condensed', sans-serif;
    --radius-card: 28px;
    --shadow: 0 14px 36px rgba(27, 61, 58, 0.1);

    --max: 1240px;
    --gutter: clamp(1rem, 4vw, 3.25rem);
    --section: clamp(2.5rem, 6.5vw, 7.5rem);
    --copy: clamp(32rem, 28rem + 10vw, 48rem);

    --fs-body: clamp(0.94rem, 0.82rem + 0.42vw, 1.32rem);
    --fs-lead: clamp(0.96rem, 0.84rem + 0.45vw, 1.4rem);
    --fs-h2: clamp(1.2rem, 0.72rem + 1.35vw, 2.7rem);
    --fs-h3: clamp(1rem, 0.88rem + 0.48vw, 1.48rem);
    --fs-hero: clamp(1.42rem, 0.28rem + 3.45vw, 6.35rem);
    --fs-display: clamp(1.4rem, 0.5rem + 2.35vw, 4.4rem);
    --fs-cta: clamp(1.45rem, 0.42rem + 2.55vw, 5.6rem);
    --fs-banner: clamp(2.1rem, 1rem + 6.5vw, 6.6rem);
    --fs-legal: clamp(1.12rem, 0.35rem + 3.1vw, 4.8rem);

    --logo-hero: clamp(96px, 8.8vw, 280px);
    --logo-legal: clamp(80px, 8vw, 196px);
    --logo-footer: clamp(108px, 10vw, 220px);

    --btn-y: clamp(0.48rem, 0.38rem + 0.22vw, 0.88rem);
    --btn-x: clamp(0.95rem, 0.75rem + 0.55vw, 1.85rem);
    --btn-fs: clamp(0.8rem, 0.72rem + 0.22vw, 1.15rem);
    --input-y: clamp(0.52rem, 0.42rem + 0.22vw, 0.9rem);
    --input-x: clamp(0.8rem, 0.7rem + 0.28vw, 1.25rem);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--cream-2);
    font-size: var(--fs-body);
    line-height: 1.6;
    overflow-x: clip;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

img, svg { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; max-width: 100%; }

.ng-wrap {
    width: min(var(--max), calc(100% - 2 * var(--gutter)));
    margin-inline: auto;
}

.ng-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: var(--btn-y) var(--btn-x);
    border: 0;
    border-radius: 999px;
    background: var(--teal);
    color: var(--white);
    font-size: var(--btn-fs);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.ng-btn:hover {
    background: var(--teal-2);
    transform: translateY(-1px);
}

.ng-rule::after {
    content: '';
    display: block;
    width: 52px;
    height: 4px;
    margin: 0.85rem auto 0;
    background: var(--gold);
}

/* ============================================================
   HERO
   ============================================================ */

.ng-hero {
    position: relative;
    background: var(--cream);
    overflow: hidden;
}

.ng-hero__copy {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    max-width: min(44%, var(--copy));
    padding: clamp(1.5rem, 5.5vw, 6.5rem) clamp(1.15rem, 5vw, 6rem) clamp(2rem, 6vw, 7rem);
}

.ng-hero__brand {
    display: inline-flex;
    width: fit-content;
    margin-bottom: clamp(1.75rem, 4vw, 3rem);
    text-decoration: none;
}

.ng-hero__logo { width: var(--logo-hero); }

.ng-hero__title {
    margin: 0;
    max-width: 22ch;
    font-family: var(--display);
    font-size: var(--fs-hero);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    overflow-wrap: anywhere;
}

.ng-hero__title-line { display: block; white-space: normal; }
.ng-hero__title-line--accent { color: var(--gold); }

.ng-hero__visual { position: relative; z-index: 0; }
.ng-hero__img { display: block; width: 100%; }

.ng-hero__newsroom {
    position: absolute;
    right: clamp(1.15rem, 4vw, 3.25rem);
    bottom: clamp(1.2rem, 4vw, 2.75rem);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(40px, 3.2vw, 56px);
    padding: var(--btn-y) calc(var(--btn-x) + 0.2rem);
    border: 1.5px solid var(--gold);
    border-radius: 999px;
    background: rgba(245, 241, 234, 0.94);
    color: var(--teal);
    font-size: var(--btn-fs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(27, 61, 58, 0.18);
    backdrop-filter: blur(6px);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.ng-hero__newsroom:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================================
   INTRO
   ============================================================ */

.ng-intro {
    background: var(--white);
    padding: var(--section) 0;
}

.ng-intro__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.ng-intro__media { line-height: 0; overflow: hidden; }
.ng-intro__img { width: 100%; }
.ng-intro__content { max-width: var(--copy); }

.ng-intro__heading {
    margin: 0 0 1.1rem;
    font-size: var(--fs-h2);
    font-weight: 700;
    line-height: 1.35;
    color: var(--gold);
}

.ng-intro__text {
    margin: 0 0 1.5rem;
    font-size: var(--fs-lead);
    line-height: 1.65;
}

.ng-intro__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 0.85rem;
}

/* ============================================================
   OPPORTUNITY
   ============================================================ */

.ng-opportunity {
    position: relative;
    isolation: isolate;
    color: var(--white);
    padding: var(--section) 0;
    overflow: hidden;
    background: #00332b;
}

.ng-opportunity__bg { position: absolute; inset: 0; z-index: 0; }
.ng-opportunity__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.ng-opportunity__inner { position: relative; z-index: 1; }
.ng-opportunity__copy { max-width: min(var(--copy), 100%); }

.ng-opportunity__title {
    margin: 0 0 1.75rem;
    font-size: var(--fs-h2);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ng-opportunity__mark {
    display: inline-block;
    position: relative;
    padding-bottom: 0.28em;
}

.ng-opportunity__mark::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: var(--white);
}

.ng-opportunity__text p {
    margin: 0 0 1.15rem;
    font-size: var(--fs-lead);
    line-height: 1.65;
}

.ng-opportunity__text p:last-child { margin-bottom: 0; }

/* ============================================================
   WHY
   ============================================================ */

.ng-why {
    background: var(--cream-3);
    padding: var(--section) 0;
}

.ng-why__header { text-align: center; margin-bottom: clamp(2.5rem, 5.5vw, 3.75rem); }

.ng-why__title {
    margin: 0;
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--gold);
}

.ng-why__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.1rem, 2.4vw, 1.75rem);
}

.ng-why__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(1.5rem, 2.4vw, 2.6rem) clamp(1.1rem, 1.8vw, 2rem);
    background: var(--white);
    border-radius: var(--radius-card);
    text-align: center;
    box-shadow: var(--shadow);
}

.ng-why__item-title {
    margin: 0 0 0.9rem;
    font-size: var(--fs-h3);
    font-weight: 700;
    color: var(--teal);
}

.ng-why__item-text {
    margin: 0;
    font-size: var(--fs-body);
    line-height: 1.55;
    color: var(--ink-2);
}

/* ============================================================
   RESULTS
   ============================================================ */

.ng-results {
    background: var(--white);
    padding: var(--section) 0;
}

.ng-results__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.ng-results__copy { max-width: var(--copy); }

.ng-results__title {
    margin: 0 0 1.5rem;
    font-size: var(--fs-h2);
    font-weight: 700;
    line-height: 1.3;
    color: var(--gold);
}

.ng-results__text p {
    margin: 0 0 1.05rem;
    font-size: var(--fs-lead);
    line-height: 1.65;
    color: #333;
}

.ng-results__text p:last-child { margin-bottom: 0; }

.ng-results__accent {
    font-weight: 700;
    color: var(--teal);
}

.ng-results__media { line-height: 0; }
.ng-results__img { display: block; width: 100%; }

/* ============================================================
   STEPS
   ============================================================ */

.ng-steps {
    background: var(--cream);
    padding: var(--section) 0;
}

.ng-steps__header { text-align: center; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }

.ng-steps__title {
    margin: 0;
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--gold);
}

.ng-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 2.25rem);
}

.ng-steps__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(220px, 22vw, 420px);
    padding: 0 0.85rem;
    text-align: center;
}

.ng-steps__num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(92%, 300px);
    pointer-events: none;
    z-index: 0;
}

.ng-steps__body {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 17.5rem;
}

.ng-steps__item-title {
    margin: 0 0 0.7rem;
    font-size: var(--fs-h3);
    font-weight: 700;
    color: var(--gold);
}

.ng-steps__item-text {
    margin: 0;
    font-size: var(--fs-body);
    line-height: 1.55;
    color: var(--gold);
}

/* ============================================================
   COLORS
   ============================================================ */

.ng-colors {
    background: var(--white);
    padding: var(--section) 0 0;
    overflow: hidden;
    text-align: center;
}

.ng-colors__header { margin-bottom: 1.35rem; }

.ng-colors__title {
    margin: 0;
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--gold);
}

.ng-colors__text {
    margin: 0 auto clamp(2.25rem, 4.5vw, 3.25rem);
    max-width: min(var(--max), calc(100% - 1.5rem));
    padding: 0 0.75rem;
    font-size: var(--fs-lead);
    line-height: 1.7;
    color: var(--ink-2);
}

.ng-colors__showcase { line-height: 0; }
.ng-colors__img { display: block; width: 100%; }

/* ============================================================
   AUDIENCE
   ============================================================ */

.ng-audience {
    background: #f3f1ed;
    padding: var(--section) 0;
}

.ng-audience__inner { max-width: min(var(--max), calc(100% - 2 * var(--gutter))); margin-inline: auto; }

.ng-audience__panel {
    padding: clamp(1.75rem, 4vw, 4.2rem) clamp(1.25rem, 4.5vw, 5rem);
    background: var(--white);
    border-radius: 56px;
    box-shadow: 0 16px 40px rgba(26, 48, 53, 0.1);
}

.ng-audience__header { text-align: center; margin-bottom: clamp(1.85rem, 3.8vw, 2.75rem); }

.ng-audience__title {
    margin: 0;
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--gold);
}

.ng-audience__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
}

.ng-audience__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ng-audience__item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: var(--fs-lead);
    font-weight: 500;
    color: #1a3035;
    white-space: normal;
}

.ng-audience__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    background: #1a3035;
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 800;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.ng-testimonials {
    background: var(--white);
    padding: var(--section) 0;
}

.ng-testimonials__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.ng-testimonials__title {
    margin: 0;
    font-family: var(--display);
    font-size: var(--fs-display);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}

.ng-testimonials__star { width: clamp(22px, 2.5vw, 30px); }

.ng-testimonials__slider {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(0.5rem, 1.5vw, 1rem);
    align-items: center;
}

.ng-testimonials__viewport { overflow: hidden; width: 100%; }

.ng-testimonials__track {
    display: flex;
    gap: 1.15rem;
    transition: transform 0.45s ease;
}

.ng-testimonials__card {
    flex: 0 0 calc((100% - 2.3rem) / 3);
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 1.35rem 1.35rem 1.2rem;
    border-radius: 18px;
    background: var(--teal);
    color: var(--white);
}

.ng-testimonials__quote {
    display: block;
    margin-bottom: 0.35rem;
    font-family: Georgia, serif;
    font-size: 2rem;
    line-height: 1;
}

.ng-testimonials__text {
    margin: 0;
    flex: 1;
    font-size: var(--fs-body);
    line-height: 1.55;
}

.ng-testimonials__author {
    margin: 1rem 0 0;
    text-align: right;
    font-weight: 600;
}

.ng-testimonials__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.ng-testimonials__arrow span {
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.ng-testimonials__arrow--prev span { border-right: 14px solid var(--teal); }
.ng-testimonials__arrow--next span { border-left: 14px solid var(--teal); }
.ng-testimonials__arrow:hover span { opacity: 0.75; }
.ng-testimonials__arrow:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ============================================================
   CTA + FORM
   ============================================================ */

.ng-cta {
    overflow: hidden;
    background: var(--teal);
}

.ng-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.ng-cta__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: clamp(380px, 36vw, 760px);
    padding: clamp(2rem, 5vw, 6rem) clamp(1.5rem, 7vw, 8rem) clamp(2rem, 5vw, 6rem) clamp(1.35rem, 6.5vw, 7.5rem);
    background: var(--cream);
    color: var(--teal);
    border-top-right-radius: clamp(160px, 26vw, 300px) 78%;
}

.ng-cta__title {
    margin: 0 0 1rem;
    font-family: var(--display);
    font-size: var(--fs-cta);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ng-cta__title-line { display: block; white-space: normal; color: var(--teal); }
.ng-cta__title-line--accent { color: var(--gold); }

.ng-cta__text {
    margin: 0 0 1.5rem;
    max-width: var(--copy);
    font-size: var(--fs-lead);
    line-height: 1.55;
    color: #1a1a1a;
}

.ng-cta__start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--btn-y) var(--btn-x);
    border-radius: 999px;
    background: var(--teal);
    color: var(--white);
    font-size: var(--btn-fs);
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.ng-cta__start:hover {
    background: var(--teal-2);
    transform: translateY(-1px);
}

.ng-cta__panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 4vw, 4.5rem) clamp(1.25rem, 4.5vw, 5.5rem) clamp(1.5rem, 4vw, 4.5rem) clamp(1rem, 2.5vw, 3rem);
    color: var(--white);
}

.ng-cta__form-title {
    margin: 0 0 0.85rem;
    font-size: var(--fs-h3);
    font-weight: 700;
}

.ng-cta__form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: min(520px, 100%);
}

.ng-cta__input {
    width: 100%;
    padding: var(--input-y) var(--input-x);
    border: 0;
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    font-size: var(--fs-body);
    outline: none;
}

.ng-cta__input::placeholder { color: #b0b0b0; }
.ng-cta__input:focus { box-shadow: 0 0 0 2px rgba(140, 102, 65, 0.45); }
.ng-cta__textarea { min-height: 72px; resize: vertical; }

.ng-cta__interest {
    margin: 0;
    padding: 0.55rem 0.9rem 0.7rem;
    border: 0;
    border-radius: 8px;
    background: var(--white);
}

.ng-cta__interest-label {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0 0 0.5rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: #8a8a8a;
}

.ng-cta__interest-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
    clear: both;
}

.ng-cta__check {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: clamp(0.72rem, 0.68rem + 0.2vw, 0.92rem);
    font-weight: 500;
    color: #8a8a8a;
    cursor: pointer;
    white-space: normal;
}

.ng-cta__check input {
    appearance: none;
    width: 13px;
    height: 13px;
    margin: 0;
    border: 0;
    border-radius: 2px;
    background: #f0e4d6;
    cursor: pointer;
    flex-shrink: 0;
}

.ng-cta__check input:checked {
    background: #f0e4d6 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%231b3d3a' d='M10.2 2.2L4.5 8.1 1.8 5.4 0.7 6.5l3.8 3.8 6.9-7.1z'/%3E%3C/svg%3E") center / 9px no-repeat;
}

.ng-cta__submit {
    align-self: flex-end;
    margin-top: 0.35rem;
    min-height: clamp(40px, 3vw, 56px);
    padding: var(--btn-y) var(--btn-x);
    border: 0;
    border-radius: 999px;
    background: var(--white);
    color: var(--teal);
    font-weight: 700;
    font-size: var(--btn-fs);
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.ng-cta__submit:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.ng-cta--newsroom .ng-cta__text { margin-bottom: 0.95rem; }
.ng-cta--newsroom .ng-cta__text:last-child { margin-bottom: 0; }
.ng-cta--newsroom .ng-cta__form { gap: 0.65rem; }
.ng-cta--newsroom .ng-cta__textarea { min-height: 96px; }

.ng-cta--newsroom .ng-cta__submit {
    background: var(--gold-light);
    color: var(--teal);
}

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

.ng-footer {
    background: var(--white);
    padding: var(--section) 0;
}

.ng-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    width: min(var(--max), calc(100% - 2 * var(--gutter)));
    margin-inline: auto;
}

.ng-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    font-size: var(--fs-body);
    color: var(--teal);
}

.ng-footer__links a { text-decoration: none; }
.ng-footer__links a:hover { color: var(--gold); }

.ng-footer__brand { display: flex; justify-content: center; }
.ng-footer__logo { width: var(--logo-footer); }

.ng-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.ng-footer__info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ng-footer__info li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: var(--fs-body);
    color: var(--teal);
}

.ng-footer__info img { width: 18px; height: 18px; object-fit: contain; }
.ng-footer__info a { text-decoration: none; overflow-wrap: anywhere; }
.ng-footer__info a:hover { color: var(--gold); }

.ng-footer__social { display: flex; gap: 0.65rem; }
.ng-footer__social a { display: inline-flex; width: 30px; height: 30px; }
.ng-footer__social img { width: 100%; height: 100%; object-fit: contain; }

/* ============================================================
   LEGAL
   ============================================================ */

.page-legal { background: var(--cream-2); }
.page-legal:has(.ng-faq) { background: var(--white); }

.ng-legal-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(200px, 28vw, 560px);
    overflow: hidden;
    background: var(--teal-deep);
    color: var(--white);
}

.ng-legal-hero__bg {
    position: absolute;
    inset: 0;
    background: url('../Recursos/banner_tyc@300x.webp') center bottom / cover no-repeat;
}

.ng-legal-hero__brand {
    position: absolute;
    top: clamp(1.1rem, 2.8vw, 1.85rem);
    left: clamp(1.1rem, 3.5vw, 2.75rem);
    z-index: 3;
}

.ng-legal-hero__logo { width: var(--logo-legal); }

.ng-legal-hero__title {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0 1rem clamp(3.5rem, 9vw, 5.5rem);
    font-family: var(--display);
    font-size: var(--fs-legal);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.12;
    text-align: center;
    text-transform: uppercase;
    white-space: normal;
}

.ng-legal__content {
    max-width: min(760px, 100%);
    margin: 0 auto;
    padding: 2.5rem var(--gutter) 4rem;
    font-size: var(--fs-lead);
    line-height: 1.65;
    color: var(--ink-2);
}

.ng-legal__content a { color: var(--gold); }
.ng-legal__updated { margin-bottom: 1.5rem; color: var(--ink); }

.ng-legal__content h2 {
    margin: 2.25rem 0 0.85rem;
    font-size: var(--fs-h3);
    font-weight: 700;
    color: var(--teal);
}

.ng-legal__content p { margin: 0 0 1rem; }
.ng-legal__content ul { margin: 0 0 1.15rem; padding-left: 1.35rem; }
.ng-legal__content li { margin-bottom: 0.45rem; }

.ng-faq { max-width: 720px; }

.ng-faq__item { margin: 0 0 1.75rem; }
.ng-faq__item:last-of-type { margin-bottom: 0.5rem; }

.ng-faq__question {
    margin: 0 0 0.35rem;
    font-size: var(--fs-h3);
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
}

.ng-faq__answer {
    margin: 0;
    font-size: var(--fs-body);
    line-height: 1.65;
    color: #1a1a1a;
}

/* ============================================================
   NEWSROOM
   ============================================================ */

.page-newsroom { background: var(--cream-2); }

.nr-hero {
    position: relative;
    background: var(--cream);
    overflow: hidden;
}

.nr-hero__media { line-height: 0; }
.nr-hero__media img {
    display: block;
    width: 100%;
    /* Misma proporción que el hero del index (banner@300x.webp, 8000×3130). */
    aspect-ratio: 8000 / 3130;
    object-fit: cover;
    object-position: center;
}

.nr-hero__inner {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(0.7rem, 1.9vw, 1.9rem);
    max-width: min(46%, 44rem);
    padding: 0 clamp(1rem, 3vw, 3rem) 0 clamp(1.15rem, 9.4vw, 10rem);
}

.nr-hero__title {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(1.65rem, 6.1vw, 7.2rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--teal);
}

.nr-hero__title-line { display: block; white-space: nowrap; }
.nr-hero__title-line--accent { color: var(--gold); }

.nr-hero__lead {
    margin: 0;
    max-width: min(100%, 33vw);
    font-size: clamp(0.72rem, 1.42vw, 1.4rem);
    line-height: 1.6;
    color: var(--ink-2);
}

.nr-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    padding: clamp(0.4rem, 0.95vw, 0.95rem) clamp(0.85rem, 2vw, 2rem);
    border-radius: 999px;
    background: var(--teal);
    color: var(--white);
    font-size: clamp(0.68rem, 1.32vw, 1.28rem);
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s ease, transform 0.25s ease;
}

.nr-hero__cta:hover {
    background: var(--teal-2);
    transform: translateY(-1px);
}

@media (max-width: 820px) {
    /* El texto sigue sobre la foto: se alarga el recorte para que quepa
       y un velo crema mantiene el contraste donde pisa la mano. */
    .nr-hero__media img { aspect-ratio: 4 / 3; object-position: 72% center; }

    .nr-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(100deg, rgba(246, 238, 229, 0.95) 0%, rgba(246, 238, 229, 0.82) 46%, rgba(246, 238, 229, 0.2) 74%, rgba(246, 238, 229, 0) 100%);
        pointer-events: none;
    }

    .nr-hero__inner {
        max-width: min(74%, 30rem);
        padding-left: clamp(1rem, 5vw, 3rem);
        padding-right: clamp(0.6rem, 2vw, 1.5rem);
        gap: clamp(0.5rem, 2vw, 1rem);
    }

    .nr-hero__title,
    .nr-hero__lead { text-shadow: 0 1px 8px rgba(250, 245, 238, 0.9); }

    .nr-hero__lead { max-width: 100%; font-size: clamp(0.7rem, 2.4vw, 1.05rem); }

    .nr-hero__cta {
        padding: 0.45rem 1.15rem;
        font-size: clamp(0.66rem, 2.1vw, 0.95rem);
    }
}

@media (max-width: 560px) {
    .nr-hero__media img { aspect-ratio: 1 / 1; object-position: 78% center; }

    .nr-hero::after {
        background: linear-gradient(100deg, rgba(246, 238, 229, 0.97) 0%, rgba(246, 238, 229, 0.9) 60%, rgba(246, 238, 229, 0.4) 86%, rgba(246, 238, 229, 0) 100%);
    }

    .nr-hero__inner { max-width: min(80%, 22rem); }
    .nr-hero__title { font-size: clamp(1.5rem, 9vw, 3rem); }
    .nr-hero__lead { font-size: clamp(0.72rem, 3.1vw, 1rem); }
    .nr-hero__cta { font-size: clamp(0.68rem, 3vw, 0.95rem); }
}

.nr-banner {
    position: relative;
    min-height: clamp(420px, 72vh, 640px);
    overflow: hidden;
    background: var(--teal-deep);
    color: var(--white);
}

.nr-banner__bg { position: absolute; inset: 0; z-index: 0; }
.nr-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nr-banner__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(5, 69, 61, 0.55) 0%, rgba(5, 69, 61, 0.18) 48%, rgba(5, 69, 61, 0.08) 100%),
        linear-gradient(180deg, rgba(5, 69, 61, 0.2) 0%, transparent 38%, rgba(5, 69, 61, 0.45) 100%);
    pointer-events: none;
}

.nr-banner__brand {
    position: absolute;
    top: clamp(1.1rem, 2.8vw, 1.85rem);
    left: clamp(1.1rem, 3.5vw, 2.75rem);
    z-index: 3;
}

.nr-banner__logo { width: clamp(92px, 11vw, 128px); }

.nr-banner__title {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    min-height: inherit;
    margin: 0;
    padding: 0 clamp(1.25rem, 5vw, 4.5rem) clamp(2.5rem, 6vw, 4rem);
    font-family: var(--display);
    font-size: var(--fs-banner);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 0.95;
    text-transform: uppercase;
    text-shadow: 0 8px 28px rgba(5, 40, 38, 0.35);
}

.nr-banner--article { min-height: clamp(280px, 42vh, 420px); }
.nr-banner--article .nr-banner__title {
    max-width: 18ch;
    font-size: var(--fs-display);
    line-height: 1.05;
}

.nr-intro {
    background: var(--white);
    padding: var(--section) clamp(1.25rem, 5vw, 4rem);
}

.nr-intro__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3.5vw, 3.25rem);
    align-items: center;
    max-width: var(--max);
    margin-inline: auto;
}

.nr-intro__media { line-height: 0; }

.nr-intro__media img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

.nr-intro__title {
    margin: 0 0 1.4rem;
    font-size: var(--fs-h2);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--gold);
}

.nr-intro__copy p {
    margin: 0 0 1.15rem;
    font-size: var(--fs-lead);
    line-height: 1.7;
    color: var(--ink-2);
}

.nr-intro__copy p:last-child { margin-bottom: 0; }

.nr-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(27, 61, 58, 0.1);
    text-align: left;
}

.nr-card__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40%;
    flex: 1;
    min-height: clamp(175px, 20vw, 320px);
}

.nr-card__media { display: block; height: 100%; }
.nr-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #e8e2d8;
}

.nr-card__body {
    display: flex;
    flex-direction: column;
    padding: clamp(0.95rem, 1.6vw, 1.5rem) clamp(0.7rem, 1.2vw, 1.15rem) clamp(0.95rem, 1.6vw, 1.5rem) clamp(0.95rem, 1.6vw, 1.6rem);
}

.nr-card__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    margin: 0 0 0.35rem;
    font-size: clamp(0.92rem, 1.08vw, 1.14rem);
    font-weight: 700;
    line-height: 1.35;
}

.nr-card__text {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    font-size: clamp(0.84rem, 1vw, 1.05rem);
    line-height: 1.55;
    color: var(--ink-2);
}

.nr-card__footer {
    display: flex;
    justify-content: center;
    padding: clamp(0.85rem, 1.6vw, 1.5rem) 1rem;
    background: var(--gold);
}

.nr-card__read {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 8.5rem;
    padding: 0.42rem 1.35rem;
    border-radius: 999px;
    background: var(--white);
    color: var(--gold);
    font-weight: 700;
    font-size: clamp(0.82rem, 0.95vw, 1rem);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.nr-card__read:hover {
    background: var(--teal);
    color: var(--white);
}

.nr-updates {
    background: var(--cream-2);
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 5vw, 4rem) var(--section);
    text-align: center;
}

.nr-updates__inner { max-width: var(--max); margin-inline: auto; }

.nr-updates__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 clamp(1.75rem, 4vw, 3rem);
    font-size: var(--fs-display);
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.15;
    color: var(--gold);
}

.nr-updates__ornament {
    width: clamp(110px, 16.5vw, 300px);
    height: auto;
    margin-bottom: 0.1em;
}

.nr-updates__grid,
.nr-more__grid {
    --nr-cols: 3;
    --nr-gap: clamp(1.25rem, 3.4vw, 3rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--nr-gap);
    margin-bottom: 2rem;
}

.nr-updates__grid .nr-card,
.nr-more__grid .nr-card {
    flex: 0 0 calc((100% - (var(--nr-cols) - 1) * var(--nr-gap)) / var(--nr-cols));
    max-width: calc((100% - (var(--nr-cols) - 1) * var(--nr-gap)) / var(--nr-cols));
    min-width: 0;
}

.nr-empty { width: 100%; margin: 0; padding: 1.5rem; color: var(--ink-2); }
.nr-updates__action[hidden] { display: none !important; }

.nr-updates__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 10.5rem;
    padding: 0.6rem 1.8rem;
    border: 0;
    border-radius: 999px;
    background: var(--teal);
    color: var(--white);
    font-weight: 700;
    font-size: clamp(0.86rem, 1vw, 1.05rem);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nr-updates__more:hover {
    background: var(--teal-2);
    transform: translateY(-1px);
}

.nr-statement {
    background: var(--teal);
    color: var(--white);
    padding: var(--section) clamp(1.25rem, 5vw, 4rem);
    text-align: center;
}

.nr-statement__inner { max-width: var(--max); margin-inline: auto; }

.nr-statement__title {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 0 clamp(1.75rem, 3.5vw, 2.75rem);
    padding-bottom: clamp(1.1rem, 2.2vw, 1.75rem);
    font-size: var(--fs-h2);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.nr-statement__title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: clamp(48px, 5vw, 88px);
    height: 4px;
    background: var(--gold-light);
}

.nr-statement__copy { text-align: left; }

.nr-statement__copy p {
    margin: 0 0 1.5rem;
    font-size: var(--fs-lead);
    line-height: 1.8;
}

.nr-statement__copy p:last-child { margin-bottom: 0; }

.nr-statement__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: clamp(1.75rem, 3.5vw, 3rem);
    padding: var(--btn-y) calc(var(--btn-x) + 0.35rem);
    border-radius: 999px;
    background: var(--gold-light);
    color: var(--teal);
    font-size: var(--btn-fs);
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.nr-statement__cta:hover {
    background: var(--white);
    transform: translateY(-1px);
}

.nr-tips {
    background: var(--white);
    padding: var(--section) clamp(1.25rem, 5vw, 4rem);
}

.nr-tips[hidden] { display: none !important; }
.nr-tips__inner { max-width: var(--max); margin-inline: auto; }

.nr-tips__title {
    margin: 0;
    padding-bottom: clamp(0.7rem, 1.4vw, 1.1rem);
    font-size: clamp(1.4rem, 2.7vw, 3.4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--gold);
}

.nr-tips__title::after {
    content: '';
    display: block;
    width: clamp(60px, 7vw, 110px);
    height: 5px;
    margin-top: clamp(0.7rem, 1.4vw, 1.1rem);
    background: var(--gold);
}

.nr-tips__grid {
    display: grid;
    /* auto-fit colapsa las columnas vacías: con menos de cuatro artículos
       la fila se reparte completa en vez de dejar un hueco a la derecha. */
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
    gap: clamp(0.75rem, 1.4vw, 1.5rem);
    /* --tip-cols lo fija newsroom.js con la cantidad de tarjetas visibles. */
    max-width: calc(var(--tip-cols, 4) * 22rem);
    margin: clamp(1.75rem, 3.5vw, 3rem) auto 0;
}

.nr-tip {
    display: flex;
    flex-direction: column;
    background: var(--cream);
}

.nr-tip__media { display: block; }
.nr-tip__media img {
    display: block;
    width: 100%;
    aspect-ratio: 6 / 5;
    object-fit: cover;
    background: #e8e2d8;
}

.nr-tip__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: clamp(0.85rem, 1.5vw, 1.5rem) clamp(0.8rem, 1.3vw, 1.35rem) clamp(1rem, 1.7vw, 1.6rem);
}

.nr-tip__kicker:empty { display: none; }

.nr-tip__kicker {
    margin: 0 0 0.55rem;
    font-size: clamp(0.68rem, 0.8vw, 0.88rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.nr-tip__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 0.7rem;
    font-size: clamp(0.95rem, 1.18vw, 1.32rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--teal);
}

.nr-tip__text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 1.15rem;
    font-size: clamp(0.82rem, 0.95vw, 1.02rem);
    line-height: 1.55;
    color: var(--ink-2);
}

.nr-tip__read {
    display: inline-flex;
    align-items: center;
    gap: 0.45em;
    margin-top: auto;
    width: max-content;
    font-size: clamp(0.72rem, 0.85vw, 0.92rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink);
    transition: color 0.2s ease, gap 0.2s ease;
}

.nr-tip__read:hover {
    color: var(--gold);
    gap: 0.8em;
}

.nr-tips__action {
    display: flex;
    justify-content: center;
    margin-top: clamp(1.75rem, 3.5vw, 3rem);
}

.nr-tips__action[hidden] { display: none !important; }

.nr-split { padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4rem); }
.nr-split--cream { background: var(--cream-2); }
.nr-split--white { background: var(--white); }

.nr-split__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    max-width: var(--max);
    margin-inline: auto;
}

.nr-split--reverse .nr-split__inner {
    grid-template-columns: minmax(280px, 1.05fr) minmax(0, 1fr);
}

.nr-split__title {
    display: flex;
    flex-direction: column;
    margin: 0 0 1.35rem;
    font-size: var(--fs-h2);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--teal);
    line-height: 1.15;
}

.nr-split__title-light { font-weight: 600; }
.nr-split__title-heavy { font-weight: 800; }

.nr-split__copy p {
    margin: 0 0 1.15rem;
    font-size: var(--fs-lead);
    line-height: 1.7;
    color: var(--ink-2);
}
.nr-split__copy p:last-child { margin-bottom: 0; }
.nr-split__copy strong { color: var(--ink); }

.nr-split__visual img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 8px;
}

.nr-article {
    background: var(--white);
    padding: clamp(2.25rem, 5vw, 3.75rem) clamp(1.25rem, 5vw, 4rem) clamp(3rem, 6vw, 4.5rem);
}

.nr-article__inner { max-width: var(--max); margin-inline: auto; }

.nr-article__back {
    display: inline-flex;
    margin: 0 0 1.75rem;
    color: var(--teal);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
}

.nr-article__back:hover { text-decoration: underline; }

.nr-article__header { margin: 0 0 1.75rem; text-align: center; }

.nr-article__title {
    margin: 0;
    font-family: var(--display);
    font-size: var(--fs-display);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--teal);
    line-height: 1.15;
}

.nr-article__media { margin: 0 0 2rem; }
.nr-article__media img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 12px;
}

.nr-article__body p,
.nr-article__text {
    margin: 0 0 1.2rem;
    font-size: 1.08rem;
    line-height: 1.75;
}

.nr-article__text p { margin: 0 0 1.2rem; }
.nr-article__text p:last-child { margin-bottom: 0; }

.nr-article__kicker {
    margin: 0 0 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.nr-article__body h2 {
    margin: 2rem 0 1.1rem;
    font-size: clamp(1.15rem, 1.5vw, 1.5rem);
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--gold);
}

.nr-article__body h2:first-child,
.nr-article__kicker + h2 { margin-top: 0; }

.nr-article__body h3 {
    margin: 1.9rem 0 0.6rem;
    font-size: clamp(1rem, 1.15vw, 1.18rem);
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--ink);
}

.nr-article__figure { margin: 1.5rem 0; }
.nr-article__figure img { width: 100%; border-radius: 10px; }

.nr-more {
    background: var(--white);
    padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 4rem);
}

.nr-more__inner { max-width: var(--max); margin-inline: auto; }

.nr-more__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0 0 2.5rem;
}

.nr-more__heading-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--teal);
}

.nr-more__heading-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--teal);
    color: var(--white);
    font-weight: 700;
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nr-more__action { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ============================================================
   MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .ng-testimonials__track { transition: none; }
    .ng-btn:hover, .ng-cta__start:hover, .ng-hero__newsroom:hover { transform: none; }
}

/* ============================================================
   DESKTOP — títulos en una línea cuando hay espacio
   ============================================================ */

@media (min-width: 1100px) {
    .ng-hero__title-line,
    .ng-cta__title-line {
        white-space: nowrap;
    }
}

/* ============================================================
   TABLET / PORTÁTIL
   ============================================================ */

@media (max-width: 1100px) {
    .ng-why__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ng-hero__copy { max-width: min(52%, 100%); }
}

@media (max-width: 1024px) {
    .nr-updates__grid,
    .nr-more__grid { --nr-cols: 2; }
}

@media (max-width: 900px) {
    /* Igual que el banner del newsroom: se alarga el recorte y un velo crema
       sostiene el texto sobre la foto, en vez de encoger la tipografía. */
    .ng-hero__img {
        aspect-ratio: 4 / 3;
        object-fit: cover;
        object-position: 78% center;
    }

    .ng-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(246, 238, 229, 0.97) 0%, rgba(246, 238, 229, 0.94) 32%, rgba(246, 238, 229, 0.78) 47%, rgba(246, 238, 229, 0.22) 67%, rgba(246, 238, 229, 0) 84%);
        pointer-events: none;
    }

    .ng-hero__copy {
        max-width: 100%;
        padding: clamp(1rem, 4vw, 1.5rem) clamp(0.9rem, 3.5vw, 1.35rem) 1.5rem;
    }

    .ng-hero__brand { margin-bottom: 0.75rem; }
    .ng-hero__logo { width: clamp(72px, 12vw, 104px); }
    .ng-hero__title {
        max-width: 20ch;
        font-size: clamp(1.15rem, 4.6vw, 2.2rem);
        line-height: 1.16;
        letter-spacing: 0.03em;
    }

    .ng-hero__title-line {
        text-shadow:
            0 1px 0 rgba(255, 255, 255, 0.88),
            0 2px 10px rgba(245, 241, 234, 0.95),
            0 0 22px rgba(245, 241, 234, 0.75);
    }

    .ng-hero__newsroom {
        right: max(1rem, env(safe-area-inset-right));
        bottom: max(1rem, env(safe-area-inset-bottom));
    }

    .ng-intro__inner,
    .ng-results__inner {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin-inline: auto;
    }

    .ng-intro__media,
    .ng-results__media {
        max-width: 520px;
        width: 100%;
        margin-inline: auto;
    }

    .ng-intro__content,
    .ng-results__copy,
    .ng-opportunity__copy { max-width: 100%; }

    .ng-opportunity__bg-img { object-position: center; }

    .ng-steps__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
        gap: 2.25rem;
    }

    .ng-audience__row { gap: 0.95rem 1.5rem; }

    .ng-testimonials__card { flex-basis: calc((100% - 1.15rem) / 2); }

    .ng-cta__inner { grid-template-columns: 1fr; }

    .ng-cta__copy {
        min-height: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: clamp(90px, 32vw, 180px) 55%;
        padding: clamp(1.75rem, 6vw, 3rem) clamp(1.2rem, 5vw, 2.5rem);
    }

    .ng-cta__panel { padding: 1.25rem var(--gutter) 1.75rem; }
    .ng-cta__form { max-width: 100%; }
    .ng-cta__check { white-space: normal; }

    .ng-footer__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 2rem;
    }

    .ng-footer__brand { order: 1; }
    .ng-footer__links { align-items: center; order: 2; }
    .ng-footer__contact,
    .ng-footer__info { align-items: center; }
    .ng-footer__contact { order: 3; }

    .ng-legal-hero__title { padding-inline: var(--gutter); }

    .nr-banner { min-height: clamp(320px, 58vh, 520px); }
    .nr-banner__title { padding-bottom: 2rem; }

    .nr-intro,
    .nr-updates,
    .nr-statement,
    .nr-tips,
    .nr-split,
    .nr-article,
    .nr-more {
        padding-left: var(--gutter);
        padding-right: var(--gutter);
    }

    .nr-intro__inner,
    .nr-split__inner,
    .nr-split--reverse .nr-split__inner { grid-template-columns: 1fr; }

    .nr-intro__inner {
        max-width: 640px;
        margin-inline: auto;
    }

    .nr-split--reverse .nr-split__visual { order: -1; }
}

/* ============================================================
   MÓVIL
   ============================================================ */

@media (max-width: 600px) {
    .ng-hero__img { aspect-ratio: 1 / 1; object-position: 72% center; }
    .ng-hero__copy { padding: 1.1rem 0.9rem 1.1rem; }
    .ng-hero__brand { margin-bottom: 0.6rem; }
    .ng-hero__logo { width: 64px; }
    .ng-hero__title {
        max-width: 100%;
        font-size: clamp(1.05rem, 5.4vw, 1.7rem);
        line-height: 1.18;
        letter-spacing: 0.025em;
    }

    .ng-intro__actions { gap: 0.55rem; }

    .ng-why__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
    }

    .ng-steps__item { min-height: 220px; }

    .ng-audience__panel {
        border-radius: 28px;
        padding: 1.5rem 1.15rem 1.75rem;
    }

    .ng-audience__row {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0.85rem;
    }

    .ng-testimonials__slider {
        grid-template-columns: 28px minmax(0, 1fr) 28px;
        gap: 0.2rem;
    }

    .ng-testimonials__card {
        flex-basis: 100%;
        min-height: 190px;
        padding: 1.15rem 1.1rem 1.05rem;
    }

    .ng-cta__submit { width: 100%; align-self: stretch; }

    .ng-cta__interest-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
    }

    .ng-legal-hero { min-height: clamp(200px, 50vw, 280px); }
    .ng-legal-hero__bg { background-position: center 70%; }
    .ng-legal-hero__title {
        padding: 0 1rem clamp(2.75rem, 14vw, 4.25rem);
        letter-spacing: 0.04em;
    }

    .nr-updates__grid,
    .nr-more__grid {
        --nr-cols: 1;
        max-width: 400px;
        margin-inline: auto;
    }

    .nr-tips__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-inline: auto;
    }

    .nr-banner__title { letter-spacing: 0.04em; }
}

@media (max-width: 380px) {
    .ng-hero__copy { padding: 0.9rem 0.75rem 1rem; }
    .ng-hero__logo { width: 56px; }
    .ng-hero__title { font-size: 1rem; }
    .ng-intro__actions { flex-direction: column; align-items: flex-start; }
    .ng-btn { white-space: normal; text-align: center; }
    .ng-cta__copy { border-bottom-right-radius: 70px 45%; }
}

/* ============================================================
   PANTALLAS GRANDES
   ============================================================ */

@media (min-width: 1600px) {
    :root {
        --max: min(1520px, 82vw);
        --gutter: clamp(2rem, 4vw, 4.25rem);
        --section: clamp(5.5rem, 6.5vw, 8rem);
    }

    .ng-hero__copy { max-width: min(46%, 50rem); }
    .nr-split__visual img { max-height: 520px; }
}

@media (min-width: 2000px) {
    :root {
        --max: min(1760px, 74vw);
        --gutter: 4.2vw;
        --section: 7.2vw;
        --copy: min(50rem, 38vw);
        --logo-hero: clamp(220px, 10.2vw, 300px);
        --logo-legal: clamp(140px, 8vw, 210px);
        --logo-footer: clamp(168px, 10vw, 236px);
    }

    .ng-hero__copy {
        max-width: min(46%, 56rem);
        padding: 5.2vw 5vw 6vw 4.4vw;
    }

    .ng-hero__title-line,
    .ng-cta__title-line { white-space: nowrap; }

    .ng-hero__newsroom {
        right: 3.2vw;
        bottom: 2.8vw;
    }

    .ng-why__item { padding: 2.1vw 1.5vw 2.2vw; }
    .ng-steps {
        padding-top: 3.75rem;
        padding-bottom: 3.75rem;
    }
    .ng-steps__item { min-height: clamp(320px, 22vw, 440px); }
    .ng-audience__inner { max-width: min(var(--max), 86vw); }
    .ng-cta__form { max-width: 640px; }
    .ng-legal__content { max-width: 980px; padding-top: 4.5rem; padding-bottom: 6.5rem; }
    .ng-faq { max-width: 920px; }
    .nr-split__visual img,
    .nr-article__media img { max-height: 560px; }
    .nr-banner { min-height: clamp(560px, 58vh, 780px); }
    .nr-banner--article { min-height: clamp(360px, 38vh, 520px); }
}

@media (min-width: 2600px) {
    :root {
        --max: min(1980px, 68vw);
        --fs-hero: clamp(5.1rem, 4.5vw, 7.4rem);
        --fs-cta: clamp(4.1rem, 3.8vw, 6.25rem);
        --fs-banner: clamp(5.2rem, 5vw, 7.6rem);
        --fs-h2: clamp(2.2rem, 2.2vw, 3.1rem);
        --fs-lead: clamp(1.18rem, 1.05vw, 1.48rem);
    }
}
