/* =========================================================
   HOME-0009
   CTA FINAL - PRÓXIMA ESCAPADA
   ========================================================= */


.final-cta {
    position: relative;

    width: 100%;
    min-height: 460px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--color-green);
}


/* =========================================================
   IMAGEN
   ========================================================= */

.final-cta-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}


.final-cta-background img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1.01);

    transition:
        transform 10s ease;
}


.final-cta:hover .final-cta-background img {
    transform: scale(1.04);
}


/* =========================================================
   OSCURECIDO
   ========================================================= */

.final-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(12, 27, 18, 0.90) 0%,
            rgba(12, 27, 18, 0.76) 42%,
            rgba(12, 27, 18, 0.38) 72%,
            rgba(12, 27, 18, 0.22) 100%
        );
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.final-cta-container {
    position: relative;
    z-index: 3;

    width: min(1240px, calc(100% - 70px));

    margin: 0 auto;

    padding:
        80px 0;
}


.final-cta-content {
    max-width: 760px;

    color: #ffffff;
}


/* =========================================================
   TEXTO SUPERIOR
   ========================================================= */

.final-cta-eyebrow {
    margin:
        0 0 10px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1.3px;
}


/* =========================================================
   TÍTULO
   ========================================================= */

.final-cta-content h2 {
    max-width: 750px;

    margin:
        0 0 18px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    color: #ffffff;

    font-size: 48px;
    line-height: 1.1;
    font-weight: 500;
}


/* =========================================================
   DESCRIPCIÓN
   ========================================================= */

.final-cta-text {
    max-width: 720px;

    margin:
        0 0 32px;

    color:
        rgba(255, 255, 255, 0.94);

    font-size: 17px;
    line-height: 1.6;
}


/* =========================================================
   BOTÓN
   ========================================================= */

.final-cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 56px;

    padding:
        0 24px;

    background:
        var(--color-sand);

    border-radius: 5px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}


.final-cta-button:hover {
    transform:
        translateY(-2px);

    background:
        var(--color-sand-hover);

    color: #ffffff;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .final-cta {
        min-height: 430px;
    }


    .final-cta-container {
        width:
            calc(100% - 50px);

        padding:
            70px 0;
    }


    .final-cta-content h2 {
        font-size: 42px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .final-cta {
        min-height: 470px;
    }


    .final-cta-container {
        width:
            calc(100% - 40px);

        padding:
            65px 0;
    }


    .final-cta-overlay {
        background:
            rgba(12, 27, 18, 0.72);
    }


    .final-cta-background img {
        object-position: center;
    }


    .final-cta-content {
        max-width: none;
    }


    .final-cta-content h2 {
        max-width: 430px;

        font-size: 36px;
    }


    .final-cta-text {
        max-width: 440px;

        font-size: 16px;
    }


    .final-cta-button {
        min-height: 54px;

        padding:
            0 20px;

        font-size: 15px;
    }

}


/* =========================================================
   MOBILE PEQUEÑO
   ========================================================= */

@media (max-width: 420px) {

    .final-cta {
        min-height: 450px;
    }


    .final-cta-container {
        width:
            calc(100% - 30px);
    }


    .final-cta-content h2 {
        font-size: 32px;
    }


    .final-cta-text {
        font-size: 15px;
    }

}

