/* ── HERO ── */
.hero {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center 30%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(10, 42, 22, 0.93) 0%,
            rgba(15, 61, 34, 0.88) 45%,
            rgba(15, 61, 34, 0.55) 70%,
            rgba(10, 30, 18, 0.30) 100%);
    z-index: 1;
}

.hero-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(to top, rgba(10, 42, 22, .85), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 90px 0 70px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(183, 28, 28, .9);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 2px;
    margin-bottom: 26px;
}

.hero-h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 10px;
    letter-spacing: -.025em;
}

.hero-h1 em {
    font-style: italic;
    color: var(--v5);
}

.hero-sub {
    font-size: clamp(.78rem, 1.6vw, .95rem);
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .38);
    margin-bottom: 28px;
}

.hero-p {
    font-size: .96rem;
    font-weight: 400;
    line-height: 1.82;
    color: rgba(255, 255, 255, .7);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-p strong {
    color: var(--v5);
    font-weight: 600;
}

.btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-primary-hero {
    background: var(--rojo);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 15px 34px;
    border-radius: 3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .25s;
    box-shadow: 0 4px 24px rgba(183, 28, 28, .45);
    border: none;
}

.btn-primary-hero:hover {
    background: var(--rojo2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(183, 28, 28, .55);
}

.btn-primary-hero svg {
    transition: transform .2s;
}

.btn-primary-hero:hover svg {
    transform: translateX(4px);
}

.btn-ghost-hero {
    background: transparent;
    color: rgba(255, 255, 255, .65);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    padding: 15px 26px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .25s;
}

.btn-ghost-hero:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .05);
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hstat {
    flex: 1;
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    margin-right: 24px;
}

.hstat:last-child {
    border-right: none;
    margin-right: 0;
}

.hstat-n {
    font-size: 2rem;
    font-weight: 900;
    color: var(--v5);
    line-height: 1;
    letter-spacing: -.02em;
}

.hstat-l {
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-top: 5px;
}

/* ── TICKER ── */
.ticker {
    background: #111;
    border-top: 2px solid var(--v3);
    padding: 13px 0;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    width: max-content;
    animation: tk 35s linear infinite;
}

@keyframes tk {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.t-item {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 0 36px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    white-space: nowrap;
}

/* ── SECCIONES ── */
.sec {
    padding: 96px 0;
}

.sec-alt {
    background: #fff;
}

.sec-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--v3);
    margin-bottom: 16px;
}

.sec-h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    font-weight: 800;
    color: var(--gris1);
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: -.02em;
}

.sec-p {
    font-size: .93rem;
    color: var(--gris3);
    line-height: 1.85;
}

.sec-p strong {
    color: var(--v2);
    font-weight: 600;
}

/* ── OBJETIVO / QUOTE ── */
.quote-clean {
    padding: 10px 0 10px 28px;
    border-left: 4px solid var(--rojo);
}

.quote-clean p {
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-style: italic;
    font-weight: 700;
    color: var(--gris2);
    line-height: 1.65;
}

.quote-clean p strong {
    color: var(--rojo);
    font-style: normal;
}

.quote-clean cite {
    display: block;
    font-size: .72rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gris3);
    margin-top: 16px;
}

/* ── CARTA / STEPS ── */
.step-row {
    display: flex;
    gap: 20px;
    margin-bottom: 34px;
    align-items: flex-start;
}

.step-row:last-child {
    margin-bottom: 0;
}

.step-circle {
    width: 46px;
    height: 46px;
    background: var(--v1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}

.step-body h5 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--v1);
    margin-bottom: 8px;
}

.step-body p {
    font-size: .83rem;
    color: var(--gris3);
    line-height: 1.73;
}

.step-body strong {
    color: var(--gris1);
    font-weight: 600;
}

/* ── CTA FINAL ── */
.sec-cta {
    background: var(--gris1);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.sec-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 60%, rgba(26, 92, 51, .22) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(183, 28, 28, .1) 0%, transparent 50%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-label {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--v5);
    margin-bottom: 18px;
}

.cta-h2 {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -.025em;
}

.cta-h2 em {
    font-style: italic;
    color: var(--v5);
}

.cta-p {
    font-size: .93rem;
    color: rgba(255, 255, 255, .5);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.btn-cta-big {
    background: var(--rojo);
    color: #fff;
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 18px 44px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: .3s;
    box-shadow: 0 6px 28px rgba(183, 28, 28, .4);
    border: none;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}

.btn-cta-big:hover {
    background: var(--rojo2);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(183, 28, 28, .5);
}

.privacy-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .28);
    font-size: .73rem;
    font-weight: 500;
    letter-spacing: .05em;
    text-decoration: underline;
    cursor: pointer;
    display: block;
    margin: 18px auto 0;
    transition: .2s;
    font-family: 'Montserrat', sans-serif;
}

.privacy-btn:hover {
    color: rgba(255, 255, 255, .6);
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
    .hero-stats {
        flex-wrap: wrap;
    }

    .hstat {
        flex: 0 0 45%;
        border-right: none;
        margin-right: 0;
    }

    .hero-h1 {
        font-size: 2.2rem;
    }

    .quote-clean p {
        font-size: 1.1rem;
    }
}