/* ===========================================================
   CTA FINAL + FOOTER (solo landing)
   Bloque vinho con llamada a la acción y, debajo, el footer
   propio de la landing (logo ceos + columnas de links).
   =========================================================== */

.cta-final,
.cta-final *,
.landing-footer,
.landing-footer * {
    box-sizing: border-box;
}

/* ---------- Bloque CTA ---------- */
.cta-final {
    background: radial-gradient(140% 150% at 78% 0%, #611218 0%, #4d0d13 60%);
    padding: 74px 0 78px;
    font-family: var(--font-inter);
    color: #ffffff;
}

.cta-final-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--page-inset, 60px);
}

.cta-final-head {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.cta-final-kicker {
    margin: 0 0 24px;
    color: var(--landing-gold);
    font-family: var(--font-serif);
    font-size: var(--landing-kicker-size);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}

.cta-final-kicker::before {
    content: none;
}

.cta-final-title {
    font-family: var(--font-serif);
    margin: 0 0 10px;
    max-width: none;
    color: #ffffff;
    font-size: var(--landing-section-title-size);
    font-weight: 400;
    line-height: 1.02;
}

.cta-final-sub {
    max-width: 740px;
    margin: 0 auto;
    font-family: var(--font-inter);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--landing-cream);
}

.cta-final-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(34px, 5vw, 72px);
    max-width: 1440px;
    margin: 64px auto 0;
}

.cta-final-step {
    position: relative;
    text-align: left;
}

.cta-final-step::before {
    display: block;
    width: auto;
    height: auto;
    margin-bottom: 18px;
    border: 0;
    border-radius: 0;
    color: var(--landing-gold);
    content: "01";
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
}

.cta-final-step:nth-child(2)::before {
    content: "02";
}

.cta-final-step:nth-child(3)::before {
    content: "03";
}

.cta-final-step h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.15;
}

.cta-final-step p {
    max-width: 360px;
    margin: 0;
    color: var(--landing-cream);
    font-family: var(--font-inter);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
}

.cta-final-btn {
    display: block;
    width: max-content;
    margin: 0 auto;
    background: var(--landing-gold);
    color: #050505;
    font-family: var(--font-futura);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: uppercase;
    padding: 14px 26px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: background 0.2s ease, transform 0.1s ease;
}

.cta-final-btn:hover {
    background: var(--landing-gold-strong);
}

.cta-final-btn:active {
    transform: translateY(1px);
}

/* ---------- Footer landing ---------- */
.landing-footer {
    position: relative;
    overflow: hidden;
    padding: 72px 0 68px;
    border-top: 1px solid rgba(205, 163, 92, 0.42);
    background:
        radial-gradient(circle at 8% 0%, rgba(133, 31, 39, 0.32), transparent 34%),
        radial-gradient(circle at 92% 100%, rgba(205, 163, 92, 0.1), transparent 28%),
        linear-gradient(135deg, #171212 0%, #241214 52%, #100d0d 100%);
    color: var(--landing-cream);
    font-family: var(--font-inter);
}

.landing-footer::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--landing-gold) 50%, transparent 100%);
    content: "";
    opacity: 0.9;
}

.landing-footer-inner {
    position: relative;
    z-index: 1;
    display: grid;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--page-inset, 60px);
    grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
    gap: clamp(34px, 4vw, 68px);
    align-items: start;
}

.landing-footer-logo {
    position: relative;
    min-height: 150px;
    padding: 8px clamp(28px, 3vw, 52px) 8px 0;
}

.landing-footer-logo::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(205, 163, 92, 0.45), transparent);
    content: "";
}

.landing-footer-logo img {
    display: block;
    width: clamp(180px, 14vw, 230px);
    max-width: 100%;
    height: auto;
}

.landing-footer-col {
    min-width: 0;
    text-align: left;
}

.landing-footer-col h4 {
    position: relative;
    margin: 8px 0 26px;
    padding-bottom: 14px;
    color: var(--landing-gold);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.landing-footer-col h4::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--landing-gold);
    content: "";
    opacity: 0.8;
}

.landing-footer-col a {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 12px;
    color: rgba(255, 248, 238, 0.76);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    overflow-wrap: anywhere;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.landing-footer-col a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.landing-footer-col a:focus-visible {
    color: #ffffff;
    outline: 1px solid var(--landing-gold);
    outline-offset: 4px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .cta-final-inner {
        padding: 0 var(--page-inset, 40px);
    }

    .cta-final-sub {
        font-size: 17px;
    }

    .cta-final-steps {
        gap: 34px;
        margin-top: 58px;
    }

    .cta-final-step p {
        font-size: 17px;
    }

    .landing-footer {
        padding: 60px 0;
    }

    .landing-footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 56px;
    }

    .landing-footer-logo {
        grid-column: 1 / -1;
        min-height: 0;
        padding: 0 0 38px;
        text-align: center;
    }

    .landing-footer-logo::after {
        top: auto;
        right: auto;
        bottom: 0;
        left: 50%;
        width: min(360px, 80%);
        height: 1px;
        transform: translateX(-50%);
    }

    .landing-footer-logo img {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .cta-final {
        padding: 60px 0 64px;
    }

    .cta-final-inner {
        padding: 0 var(--page-inset, 24px);
    }

    .cta-final-title {
        font-size: 30px;
    }

    .cta-final-sub {
        font-size: 16px;
    }

    .cta-final-steps {
        grid-template-columns: 1fr;
        gap: 42px;
        margin-top: 48px;
    }

    .cta-final-step p {
        max-width: none;
    }

    .landing-footer {
        padding: 52px 0 56px;
    }

    .landing-footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 24px;
        padding: 0 26px;
    }

    .landing-footer-logo {
        padding-bottom: 32px;
    }

    .landing-footer-col h4 {
        margin-bottom: 20px;
    }
}

@media (max-width: 460px) {
    .landing-footer-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .landing-footer-logo {
        grid-column: 1;
    }
}