.landing-contacto {
    min-height: 100vh;
}

.cta_final {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 160px 32px 104px;
    overflow: hidden;
}

.cta_final::before {
    content: "";
    position: absolute;
    top: 48px;
    left: 50%;
    width: min(680px, 80vw);
    height: 280px;
    border-radius: 9999px;
    background: rgba(0, 107, 44, 0.08);
    filter: blur(54px);
    transform: translateX(-50%);
    pointer-events: none;
}

.cta_final > * {
    position: relative;
    z-index: 1;
}

.cta_final h1,
.cta_final p,
.cta-group {
    width: 100%;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.cta_final h1 {
    margin-top: 0;
    margin-bottom: 0;
    color: var(--on-surface);
    font-size: clamp(28px, 3.8vw, 46px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.02;
    text-align: center;
}

.cta_final p {
    margin-top: 0;
    margin-bottom: 0;
    padding: 20px 24px;
    border-left: 4px solid var(--primary);
    border-radius: 20px;
    background: rgba(0, 107, 44, 0.06);
    color: rgba(28, 27, 27, 0.82);
    font-size: clamp(16px, 1.35vw, 18px);
    font-weight: 600;
    line-height: 1.7;
    text-align: center;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.cta-group .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 16px 28px;
    border: 1px solid rgba(0, 107, 44, 0.16);
    background: rgba(255, 255, 255, 0.86);
    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 18px 44px -30px rgba(28, 27, 27, 0.24);
}

.cta-group .btn:first-child {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
    color: var(--on-primary);
    border-color: transparent;
    box-shadow: var(--editorial-shadow);
}

.cta-group .btn:hover {
    transform: translateY(-1px);
}

.cta_final .newsletter_form h3 {
    margin: 0;
    color: #236b53;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.12;
    text-align: center;
}

@media (max-width: 1023px) {
    .cta_final {
        padding-top: 160px;
        padding-bottom: 88px;
    }
}

@media (max-width: 767px) {
    .cta_final {
        gap: 20px;
        padding: 120px 24px 72px;
    }

    .cta_final p {
        padding: 16px 18px;
    }

    .cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-group .btn {
        width: 100%;
    }
}
