.cta{
    position: relative;
    width: 100%;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    background-image: url('/assets/cta-image.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.cta-overlay{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    inset: 0;
    background: linear-gradient(90deg, rgba(251,247,238,.95) 0%, rgba(251,247,238,.88) 40%, rgba(251,247,238,.15) 100%);
}

.cta-container{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-badge{
    width: fit-content;
    padding: .6rem 1.3rem;
    border-radius: 999px;
    background: rgba(205,129,149,.12);
    border: 1px solid rgba(205,129,149,.25);
    color: #CD8195;
    font-weight: 600;
}

.cta h2{
    color: #CD8195;
    font-family: 'Della Respira', 'sans-serif';
    font-weight: bold;
    font-size: 3.5rem;
    line-height: 0.9;
}

.cta p{
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 400;
    color: #98C5AE;
    max-width: 580px;
}

.cta-buttons{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.3rem;
    margin-bottom: .9rem;
}

.btn-primary{
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    background: transparent;
    color: #98C5AE;
    border: 2px solid #98C5A5;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    transition: .3s;
}

.btn-primary:hover{
    transform: translateY(-4px);
    background-color: #98C5AE;
    color: #FBF7EE;
    box-shadow: 0 15px 30px rgba(152,197,174,.35);
}

.btn-secondary{
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    border: 2px solid #CD8195;
    color: #CD8195;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    transition: .3s;
}

.btn-secondary:hover{
    box-shadow: 8px 8px 16px -3px rgba(243, 189, 203, 0.6);
    background: #CD8195;
    color: #FBF7EE;
}

@media (max-width: 992px){
    .cta{
        min-height: 560px;
        padding: 5rem 2rem;
        background-position: center right;
    }

    .cta-overlay{
        background: linear-gradient(90deg, rgbargba(251,247,238,.96) 0%, rgba(251,247,238,.92) 60%, rgba(251,247,238,.45) 100%);
    }

    .cta-container{
        max-width: 560px;
    }

    .cta h2{
        font-size: 2.8rem;
        line-height: 1.05;
    }

    .cta p{
        font-size: 1rem;
    }
}

@media (max-width: 768px){
    .cta{
        min-height: 100vh;
        padding: 2rem 1rem;
        background-position: 72% center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cta-overlay{
        position: relative;
        inset: auto;
        width: 100%;
        padding: 2rem 1.4rem;
        background: linear-gradient(180deg, rgba(251,247,238,.88) 0%, rgba(251,247,238,.75) 100%);
        border-radius: 1rem;
        backdrop-filter: blur(8px);
        align-items: center;
        text-align: center;
    }

    .cta-container{
        max-width: 100%;
        align-items: center;
        gap: 1.3rem;
    }

    .cta-badge{
        font-size: .82rem;
        padding: .55rem 1rem;
        max-width: 230px;
    }

    .cta h2{
        font-size: 2.35rem;
        line-height: 1.15;
        max-width: 320px;
    }

    .cta p{
        max-width: 320px;
        font-size: .95rem;
        line-height: 1.5;
        font-weight: 600;
    }

    .cta-buttons{
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: .5rem;
        gap: .9rem;
    }

    .btn-primary, .btn-secondary{
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: .95rem;
        border-width: 2px;
    }

    .btn-primary i, .btn-secondary i{
        font-size: 1rem;
    }
}