.cta-section {
    background-color: var(--color-white);
    width: 100%;
}



/* Tarjeta principal con el degradado y esquinas superiores redondeadas */
.cta-card {
    position: relative;
    width: 100%;
    max-height: 352px;
    background: linear-gradient(180deg, #2D4371 0%, #1E2D4C 100%);
    border-radius: 96px 96px 0px 0px;
    overflow: hidden;
    padding: 80px 100px;
    display: flex;
    align-items: center;
}

/* Marca/Logo de fondo del lado izquierdo */
.cta-watermark {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 501px;
    height: 571px;
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
}

.watermark-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Grid de contenido sobre la tarjeta */
.cta-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* display: grid; */
    /* grid-template-columns: 1.3fr 0.7fr; */
    gap: 64px;
    align-items: center;
    max-width: 1312px;
    padding: 0 100px;
    margin: 0 auto;
}

/* --- TEXTOS --- */
.cta-text-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: min(752px, 100%);
}

/* Sé parte del encuentro que piensa el futuro de la profesión. */
.cta-title {
    font-family: var(--font-Montserrat);
    font-weight: 700;
    font-size: clamp(1.8rem, 2.3vw, 2.5rem);
    line-height: 48px;
    letter-spacing: 0px;
}

.cta-title .green-text {
    color: var(--color-secondary);
    display: inline;
}

.cta-title .white-text {
    color: #F2F2F2;
    font-size: clamp(1.8rem, 2.3vw, 2.5rem);
    display: inline;
}

/* Subtexto descriptivo */
.cta-desc {
    font-family: var(--font-Roboto);
    font-weight: 400;
    font-size: 1rem;
    line-height: 24px;
    letter-spacing: 0.25px;
    color: #F2F2F2;
    max-width: 700px;
}

/* --- BOTÓN --- */
.cta-button-side {
    display: flex;
    justify-content: center;
}

.btn-cta {
    background-color: var(--color-secondary);

    color: var(--color-white);
    padding: 16px 48px;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-Roboto);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.2px;
    text-align: center;
}



/* --- RESPONSIVE --- */
@media (max-width: 1200px) {


    .cta-card {
        padding: 60px 60px;
        border-radius: 64px 64px 0px 0px;
    }

    .cta-title {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 992px) {
    .cta-content {
        gap: 40px;
        text-align: start;
        padding: 0;
    }

    .cta-text-side {
        align-items: center;
    }

    .cta-button-side {
        justify-content: center;
    }

    .cta-watermark {
        width: 350px;
        height: 400px;
        left: 15%;
        transform: translate(-50%, -50%);
        top: 50%;
    }
}

@media (max-width: 768px) {

    .cta-card {
        padding: 48px 24px;
        border-radius: 48px 48px 0px 0px;
    }

    .cta-title {
        font-size: 28px;
        line-height: 36px;
    }

    .btn-cta {
        width: 100%;
        /* Botón de ancho completo en celulares */
    }
}

@media (max-width: 550px) {
    .cta-content {
        flex-direction: column;
        align-items: start;
    }

    .cta-card {
        max-height: 448px;
    }
}