:root {
    --bg: #050713;
    --bg-soft: #080b18;
    --panel: #0d1122;

    --white: #f7f8ff;
    --text: #a8aec1;
    --muted: #747b91;

    --lime: #baff28;
    --cyan: #25e5ff;
    --purple: #7451ff;
    --pink: #ff3d9f;

    --border: rgba(255, 255, 255, .10);

    --heading: "Montserrat", sans-serif;
    --body: "Manrope", sans-serif;

    --container: 1180px;
}


/* RESET */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--white);
    background: var(--bg);
    font-family: var(--body);
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus,
a:focus {
    outline: 3px solid var(--lime);
    outline-offset: 4px;
}

@supports selector(:focus-visible) {

    button:focus:not(:focus-visible),
    a:focus:not(:focus-visible) {
        outline: none;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
    width: 100%;
    max-width: 100%;
}

.container {
    width: calc(100% - 40px);
    max-width: var(--container);
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 120px 0;
}


/* BACKGROUND */

.background-effects {
    position: fixed;
    inset: 0;
    z-index: -10;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: .12;
}

.orb-one {
    width: 600px;
    height: 600px;
    right: -300px;
    top: -250px;
    background: var(--purple);
}

.orb-two {
    width: 500px;
    height: 500px;
    left: -280px;
    top: 40%;
    background: var(--cyan);
}

.orb-three {
    width: 500px;
    height: 500px;
    right: -250px;
    bottom: -250px;
    background: var(--pink);
}


/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5000;
    border-bottom: 1px solid transparent;
    transition: .3s ease;
}

.header.scrolled {
    background: rgba(5, 7, 19, .92);
    border-color: var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-container {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 25px;
}


/* BRAND */

.brand,
.mobile-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 13px;
    color: #071006;
    background: linear-gradient(135deg, var(--lime), var(--cyan));
    font-family: var(--heading);
    font-weight: 900;
}

.brand-logo-mark {
    width: 48px;
    height: 48px;
    display: block;
    flex-shrink: 0;
    padding: 2px;
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .28);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong,
.mobile-brand strong {
    display: block;
    font-family: var(--heading);
    font-size: 14px;
}

.brand-copy small,
.mobile-brand small {
    display: block;
    margin-top: 5px;
    color: var(--lime);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .12em;
}


/* DESKTOP NAV */

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.desktop-nav a {
    position: relative;
    color: var(--text);
    font-size: 11px;
    font-weight: 800;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--lime);
    transition: width .25s ease;
}

.desktop-nav a:hover {
    color: white;
}

.desktop-nav a:hover::after {
    width: 100%;
}


/* BUTTONS */

.btn {
    min-height: 46px;
    padding: 12px 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 13px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 900;
    transition: .25s ease;
}

.btn-primary {
    color: #071006;
    background: linear-gradient(135deg, var(--lime), #dcff79);
    box-shadow: 0 15px 40px rgba(186, 255, 40, .12);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(186, 255, 40, .22);
}

.btn-outline {
    color: white;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
}

.btn-dark {
    color: white;
    background: var(--bg);
}

.btn-large {
    min-height: 57px;
    padding: 16px 28px;
    font-size: 12px;
}


/* =====================================================
   HAMBURGER
===================================================== */

.menu-toggle {
    width: 48px;
    height: 48px;
    margin-left: auto;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 14px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    position: relative;
    z-index: 5001;
}

.menu-toggle span {
    width: 23px;
    height: 2px;
    display: block;
    border-radius: 20px;
    background: white;
    pointer-events: none;
}


/* =====================================================
   NUEVO MENÚ RESPONSIVE

   hidden ES LA FUENTE DE VERDAD.
===================================================== */

.mobile-navigation-layer[hidden] {
    display: none !important;
}

.mobile-navigation-layer {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: block;
}

.mobile-navigation-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.mobile-navigation-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 92vw;
    max-width: 430px;
    width: min(430px, 92vw);
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(116, 81, 255, .22),
            transparent 38%
        ),
        #080a18;
    border-left: 1px solid var(--border);
    box-shadow: -30px 0 90px rgba(0, 0, 0, .55);
}

.mobile-navigation-header {
    min-height: 84px;
    padding: 18px 22px;
    position: sticky;
    top: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(8, 10, 24, .95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mobile-close {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 50%;
    color: white;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--border);
    font-size: 21px;
}

.mobile-navigation-content {
    padding: 28px 22px 45px;
}

.mobile-menu-label {
    color: var(--lime);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .2em;
}

.mobile-links {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
}

.mobile-links a {
    min-height: 68px;
    display: grid;
    grid-template-columns: 35px 1fr auto;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}

.mobile-links a > span {
    color: var(--lime);
    font-size: 8px;
    font-weight: 900;
}

.mobile-links a > strong {
    font-family: var(--heading);
    font-size: 17px;
}

.mobile-links a > i {
    color: var(--lime);
    font-size: 12px;
}

.mobile-social-area {
    margin-top: 32px;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: white;
    background: rgba(255, 255, 255, .055);
    border: 1px solid var(--border);
    transition: .25s ease;
}

.social-icon:hover {
    color: #071006;
    background: var(--lime);
    border-color: var(--lime);
    transform: translateY(-3px);
}

.mobile-cta-box {
    margin-top: 30px;
    padding: 22px;
    border-radius: 20px;
    background: linear-gradient(
        145deg,
        rgba(186, 255, 40, .10),
        rgba(37, 229, 255, .035)
    );
    border: 1px solid rgba(186, 255, 40, .16);
}

.mobile-cta-box > span {
    display: block;
    color: var(--lime);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .12em;
}

.mobile-cta-box > strong {
    display: block;
    margin: 7px 0 17px;
    font-size: 14px;
}

.mobile-cta-box .btn {
    width: 100%;
}


/* HERO */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 145px 0 100px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 55px 55px;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr);
    gap: 65px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 25px;
    padding: 8px 13px;
    border-radius: 100px;
    color: var(--lime);
    background: rgba(186, 255, 40, .06);
    border: 1px solid rgba(186, 255, 40, .16);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .16em;
}

.eyebrow i {
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 15px var(--lime);
}

.hero-title {
    font-family: var(--heading);
    font-size: clamp(3.8rem, 7vw, 7rem);
    line-height: .86;
    letter-spacing: -.075em;
    font-weight: 900;
}

.hero-line {
    display: block;
}

.gradient-text {
    color: transparent;
    background: linear-gradient(
        90deg,
        var(--lime),
        var(--cyan),
        var(--pink)
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-description {
    max-width: 630px;
    margin-top: 30px;
    color: var(--text);
    font-size: 16px;
}

.hero-description strong {
    color: white;
}

.hero-benefits {
    margin-top: 27px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-benefits span {
    padding: 8px 12px;
    border-radius: 10px;
    color: #e4e7f1;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    font-size: 10px;
    font-weight: 800;
}

.hero-benefits b {
    margin-right: 5px;
    color: var(--lime);
}

.hero-actions {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-note {
    margin-top: 13px;
    color: var(--muted);
    font-size: 9px;
}


/* HERO IMAGE */

.hero-visual {
    min-height: 600px;
    position: relative;
    display: grid;
    place-items: center;
}

.hero-image-card {
    width: 390px;
    height: 530px;
    position: relative;
    z-index: 3;
    overflow: hidden;
    border-radius: 200px 200px 35px 35px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: linear-gradient(145deg, #4936a6, #09202b);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .4);
}

.hero-image-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 35%,
        rgba(5, 7, 19, .2) 58%,
        rgba(5, 7, 19, .95) 100%
    );
}

.image-message {
    position: absolute;
    left: auto;
    right: 32px;
    bottom: 30px;
    text-align: right;
}

.image-message span {
    display: block;
    color: var(--lime);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .15em;
}

.image-message strong {
    display: block;
    margin-top: 5px;
    font-size: 21px;
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .07);
}

.ring-one {
    width: 510px;
    height: 510px;
}

.ring-two {
    width: 620px;
    height: 620px;
    border-color: rgba(186, 255, 40, .08);
}

.hero-number {
    position: absolute;
    right: -20px;
    top: 15px;
    color: rgba(255, 255, 255, .035);
    font-family: var(--heading);
    font-size: 230px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.1em;
}


/* FLOATING */

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 15px;
    border-radius: 15px;
    background: rgba(13, 17, 34, .9);
    border: 1px solid var(--border);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.floating-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #071006;
    background: var(--lime);
    font-weight: 900;
}

.floating-card small {
    display: block;
    color: var(--text);
    font-size: 7px;
}

.floating-card strong {
    display: block;
    font-size: 11px;
}

.floating-one {
    left: -15px;
    top: 25%;
}

.floating-two {
    right: -30px;
    bottom: 22%;
}

.floating-three {
    left: 4%;
    bottom: 5%;
}


/* HEADINGS */

.section-heading {
    max-width: 760px;
    margin-bottom: 60px;
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.section-label {
    color: var(--lime);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .18em;
}

.section-heading h2,
.lifestyle-copy h2,
.journey-heading h2 {
    margin-top: 14px;
    font-family: var(--heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: .96;
    letter-spacing: -.06em;
}

.section-heading h2 strong,
.lifestyle-copy h2 strong,
.journey-heading h2 strong {
    display: block;
    color: var(--lime);
}

.section-heading p,
.lifestyle-copy > p {
    margin-top: 20px;
    color: var(--text);
    font-size: 14px;
}


/* PROBLEM */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.feature-card {
    min-height: 280px;
    position: relative;
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, .07),
        rgba(255, 255, 255, .02)
    );
    border: 1px solid var(--border);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #596078;
    font-size: 9px;
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 35px;
    border-radius: 15px;
    color: var(--lime);
    background: rgba(186, 255, 40, .07);
}

.feature-card h3 {
    margin-bottom: 8px;
    font-size: 16px;
}

.feature-card p {
    color: var(--text);
    font-size: 12px;
}


/* MANIFESTO */

.manifesto-section {
    padding: 70px 0 130px;
}

.manifesto-card {
    padding: 85px 30px;
    overflow: hidden;
    text-align: center;
    border-radius: 35px;
    background:
        radial-gradient(circle at 20% 100%, rgba(116, 81, 255, .18), transparent 35%),
        radial-gradient(circle at 80% 0%, rgba(37, 229, 255, .12), transparent 35%),
        rgba(255, 255, 255, .025);
    border: 1px solid var(--border);
}

.manifesto-card h2 {
    margin-top: 25px;
    font-family: var(--heading);
}

.manifesto-card h2 span {
    display: block;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: .85;
    letter-spacing: -.07em;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(186, 255, 40, .9);
}

.manifesto-card p {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 800;
}


/* VIDEO */

.video-container {
    max-width: 1000px;
    margin-inline: auto;
    padding: 10px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .3);
}

.video-container video {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 22px;
    background: black;
}

.video-cta {
    margin-top: 30px;
    text-align: center;
}

.video-cta p {
    margin-bottom: 14px;
    color: var(--text);
}


/* METHOD */

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.method-card {
    min-height: 360px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 24px;
    background: rgba(10, 13, 29, .96);
    border: 1px solid var(--border);
    transform-style: preserve-3d;
    will-change: transform;
}

.method-card.featured {
    border-color: rgba(186, 255, 40, .25);
    background: linear-gradient(
        150deg,
        rgba(186, 255, 40, .08),
        rgba(10, 13, 29, .96)
    );
}

.method-number {
    color: rgba(255, 255, 255, .045);
    font-family: var(--heading);
    font-size: 95px;
    font-weight: 900;
    line-height: 1;
}

.method-card small {
    color: var(--cyan);
    font-size: 8px;
    font-weight: 900;
}

.method-card h3 {
    margin: 5px 0 10px;
    color: var(--lime);
    font-family: var(--heading);
    font-size: 27px;
}

.method-card p {
    color: var(--text);
    font-size: 12px;
}


/* LIFESTYLE */

.lifestyle-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lifestyle-image {
    height: 580px;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--border);
}

.lifestyle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.check-list {
    margin: 28px 0;
    list-style: none;
}

.check-list li {
    margin-bottom: 11px;
    color: var(--text);
}

.check-list span {
    margin-right: 8px;
    color: var(--lime);
}


/* INCLUDES */

.includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.include-card {
    min-height: 220px;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .035);
}

.include-card > span {
    color: var(--lime);
    font-family: var(--heading);
    font-size: 10px;
    font-weight: 900;
}

.include-card h3 {
    margin-top: 65px;
    font-size: 16px;
}

.include-card p {
    margin-top: 8px;
    color: var(--text);
    font-size: 12px;
}


/* JOURNEY */

.journey-section {
    background: var(--bg-soft);
}

.journey-heading {
    margin-bottom: 75px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.counter-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.counter-box > strong {
    color: var(--lime);
    font-family: var(--heading);
    font-size: 80px;
    line-height: 1;
}

.counter-box > div {
    display: flex;
    flex-direction: column;
}

.counter-box span {
    font-weight: 900;
}

.counter-box small {
    color: var(--text);
    font-size: 7px;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    padding-top: 45px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--lime),
        var(--cyan),
        var(--pink)
    );
}

.timeline article {
    position: relative;
}

.timeline i {
    position: absolute;
    top: -44px;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 7px rgba(186, 255, 40, .07);
}

.timeline article > span {
    color: var(--cyan);
    font-size: 8px;
    font-weight: 900;
}

.timeline h3 {
    margin: 5px 0;
    font-family: var(--heading);
}

.timeline p {
    color: var(--text);
    font-size: 12px;
}


/* GALLERY */

.gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    grid-template-rows: 280px 280px;
    gap: 17px;
}

.gallery-grid figure {
    overflow: hidden;
    border-radius: 25px;
    border: 1px solid var(--border);
    background: var(--panel);
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.gallery-grid figure:hover img {
    transform: scale(1.05);
}

.gallery-main {
    grid-row: 1 / 3;
}


/* CTA */

.cta-section {
    padding: 100px 0;
}

.cta-card {
    min-height: 520px;
    padding: 60px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #071006;
    border-radius: 38px;
    background: linear-gradient(
        120deg,
        var(--lime),
        #e5ff88 50%,
        var(--cyan)
    );
}

.cta-card > span {
    font-size: 8px;
    font-weight: 900;
}

.cta-card h2 {
    margin: 15px 0 22px;
    font-family: var(--heading);
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: .87;
    letter-spacing: -.07em;
}

.cta-card h2 strong {
    display: block;
}

.cta-card p {
    margin-bottom: 28px;
    font-weight: 700;
}


/* QUESTIONS */

.questions-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 0% 50%, rgba(37, 229, 255, .07), transparent 30%),
        radial-gradient(circle at 100% 50%, rgba(255, 61, 159, .07), transparent 30%),
        #060814;
}

.questions-header {
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: end;
}

.questions-header h2 {
    margin-top: 14px;
    font-family: var(--heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: .9;
    letter-spacing: -.07em;
}

.questions-header h2 strong {
    display: block;
    color: var(--lime);
}

.questions-header > p {
    color: var(--text);
    font-size: 14px;
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.question-card {
    min-height: 310px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, .055),
        rgba(255, 255, 255, .018)
    );
    transform-style: preserve-3d;
    will-change: transform;
}

.question-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.question-top span {
    color: var(--lime);
    font-size: 9px;
    font-weight: 900;
}

.question-top b {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--lime);
    background: rgba(186, 255, 40, .08);
    border: 1px solid rgba(186, 255, 40, .12);
}

.question-card h3 {
    margin-top: 50px;
    font-family: var(--heading);
    font-size: 19px;
}

.question-card p {
    margin-top: 15px;
    color: var(--text);
    font-size: 12px;
}

.question-card.highlight {
    background: linear-gradient(
        145deg,
        rgba(186, 255, 40, .10),
        rgba(37, 229, 255, .035)
    );
    border-color: rgba(186, 255, 40, .22);
}

.question-button {
    margin-top: 22px;
    align-self: flex-start;
    cursor: pointer;
    color: var(--lime);
    background: transparent;
    font-size: 10px;
    font-weight: 900;
}


/* FINAL */

.final-section {
    padding: 140px 0 160px;
    text-align: center;
}

.final-content h2 {
    margin-top: 20px;
    font-family: var(--heading);
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: .83;
    letter-spacing: -.08em;
}

.final-content h2 strong {
    display: block;
    color: var(--lime);
}

.final-content p {
    margin: 30px 0;
    color: var(--text);
}

.final-content b {
    color: white;
}


/* FOOTER */

.footer {
    padding: 60px 0;
    background: #03050c;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
}

.footer-brand p {
    max-width: 300px;
    margin-top: 15px;
    color: var(--text);
    font-size: 11px;
}

.footer-socials {
    margin-top: 22px;
    display: flex;
    gap: 9px;
}

.footer-socials .social-icon {
    width: 40px;
    height: 40px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    color: var(--text);
    font-size: 11px;
}

.footer-links a:hover {
    color: var(--lime);
}

.footer-legal {
    color: var(--muted);
    text-align: right;
    font-size: 9px;
}

.footer-legal p {
    margin-bottom: 15px;
}


/* WHATSAPP */

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 4000;
    padding: 8px 15px 8px 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    cursor: pointer;
    color: white;
    background: #19b968;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
}

.wa-circle {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #19b968;
    background: white;
    font-size: 25px;
}

.wa-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wa-text small {
    font-size: 6px;
}

.wa-text strong {
    font-size: 10px;
}

.footer-legal-links {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 16px;
}

.footer-legal-links a {
    color: var(--text);
    font-size: 9px;
    font-weight: 800;
    transition: color .2s ease;
}

.footer-legal-links a:hover {
    color: var(--lime);
}


/* PÁGINAS LEGALES */

.legal-page {
    min-height: 100vh;
    padding: 120px 0 80px;
}

.legal-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    min-height: 78px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    background: rgba(5, 7, 19, .94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.legal-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.legal-back-link {
    color: var(--lime);
    font-size: 10px;
    font-weight: 900;
}

.legal-document {
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 58px);
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(13, 17, 34, .84);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .22);
}

.legal-document h1 {
    margin: 12px 0 14px;
    font-family: var(--heading);
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    line-height: .95;
    letter-spacing: -.06em;
}

.legal-document h2 {
    margin: 38px 0 12px;
    color: var(--lime);
    font-family: var(--heading);
    font-size: 20px;
}

.legal-document h3 {
    margin: 24px 0 9px;
    color: var(--white);
    font-size: 15px;
}

.legal-document p,
.legal-document li {
    color: var(--text);
    font-size: 14px;
}

.legal-document p + p {
    margin-top: 12px;
}

.legal-document ul,
.legal-document ol {
    margin: 12px 0 0 22px;
}

.legal-document li + li {
    margin-top: 8px;
}

.legal-meta,
.legal-note {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(186, 255, 40, .07);
    border: 1px solid rgba(186, 255, 40, .18);
}

.legal-note {
    margin-top: 22px;
    background: rgba(37, 229, 255, .06);
    border-color: rgba(37, 229, 255, .18);
}

.legal-document a {
    color: var(--cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* FALLBACKS PARA NAVEGADORES SIN EFECTO DE CRISTAL */

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {

    .header.scrolled {
        background: rgba(5, 7, 19, .98);
    }

    .mobile-navigation-backdrop {
        background: rgba(0, 0, 0, .9);
    }

    .mobile-navigation-header,
    .floating-card {
        background: #080a18;
    }
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* TABLET */

@media (max-width: 1050px) {

    .desktop-nav,
    .desktop-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-benefits,
    .hero-actions {
        justify-content: center;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lifestyle-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .questions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* DESKTOP */

@media (min-width: 1051px) {

    .mobile-navigation-layer {
        display: none !important;
    }
}


/* MOBILE */

@media (max-width: 800px) {

    .section {
        padding: 90px 0;
    }

    .hero {
        min-height: auto;
        padding: 125px 0 80px;
    }

    .hero-title {
        font-size: clamp(3.4rem, 15vw, 6rem);
    }

    .hero-visual {
        min-height: 520px;
    }

    .hero-image-card {
        width: 320px;
        height: 450px;
    }

    .ring-one {
        width: 410px;
        height: 410px;
    }

    .ring-two {
        width: 490px;
        height: 490px;
    }

    .hero-number {
        font-size: 170px;
    }

    .method-grid {
        grid-template-columns: 1fr;
    }

    .method-card {
        min-height: 280px;
    }

    .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-heading {
        display: block;
    }

    .counter-box {
        margin-top: 30px;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 0 0 35px;
    }

    .timeline::before {
        top: 0;
        bottom: 0;
        left: 7px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .timeline i {
        top: 3px;
        left: -35px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-main {
        grid-row: auto;
    }

    .gallery-grid figure {
        height: 360px;
    }

    .questions-header {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .questions-grid {
        grid-template-columns: 1fr;
    }

    .question-card {
        min-height: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-legal {
        text-align: left;
    }
}


/* SMALL MOBILE */

@media (max-width: 560px) {

    .container {
        width: calc(100% - 28px);
    }

    .nav-container {
        min-height: 76px;
    }

    .brand-icon {
        width: 44px;
        height: 44px;
    }

    .brand-logo-mark {
        width: 44px;
        height: 44px;
    }

    .brand-copy strong {
        font-size: 13px;
    }

    .menu-toggle {
        width: 46px;
        height: 46px;
    }

    .mobile-navigation-panel {
        width: 92vw;
    }

    .mobile-navigation-header {
        min-height: 76px;
        padding: 15px 17px;
    }

    .mobile-navigation-content {
        padding: 24px 17px 35px;
    }

    .mobile-links a {
        min-height: 63px;
    }

    .mobile-links a > strong {
        font-size: 15px;
    }

    .hero {
        padding-top: 110px;
    }

    .hero-title {
        font-size: clamp(3rem, 14vw, 4rem);
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 450px;
    }

    .hero-image-card {
        width: min(285px, 78vw);
        height: 400px;
    }

    .ring-one {
        width: 350px;
        height: 350px;
    }

    .ring-two {
        display: none;
    }

    .hero-number {
        right: 5px;
        font-size: 130px;
    }

    .floating-card {
        padding: 9px 11px;
    }

    .floating-icon {
        width: 39px;
        height: 39px;
    }

    .floating-one {
        left: -5px;
        top: 20%;
    }

    .floating-two {
        right: -5px;
        bottom: 20%;
    }

    .floating-three {
        display: none;
    }

    .problem-grid,
    .includes-grid {
        grid-template-columns: 1fr;
    }

    .manifesto-card {
        padding: 60px 15px;
    }

    .lifestyle-image {
        height: 430px;
    }

    .cta-card {
        min-height: 450px;
        border-radius: 27px;
    }

    .questions-header h2 {
        font-size: clamp(2.8rem, 14vw, 4.3rem);
    }

    .question-card {
        padding: 24px;
    }

    .question-card h3 {
        margin-top: 35px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 7px;
    }

    .wa-text {
        display: none;
    }
}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
