/* =========================================================
   TOUR CTA
   ========================================================= */

.tour-cta {
    position: relative;
    width: 100%;
    margin-top: 28px;
    padding: 30px 32px;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            #6f4a35
        );

    border-radius: 16px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.10);
}


/* Decorative circle */

.tour-cta::after {
    content: "";
    position: absolute;

    width: 180px;
    height: 180px;

    right: -70px;
    top: -80px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;

    pointer-events: none;
}


.tour-cta-content {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    max-width: 100%;
}


/* =========================================================
   TEXT
   ========================================================= */

.tour-cta-text {
    flex: 1;
    min-width: 0;
}


.tour-cta-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 7px;

    color: rgba(255, 255, 255, 0.72);

    font-family: var(--font-family);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.tour-cta h2 {
    margin: 0 0 7px;

    color: #ffffff;

    font-family: var(--font-family);

    font-size: 23px;
    font-weight: 800;

    line-height: 1.25;
}


.tour-cta p {
    max-width: 520px;

    margin: 0;

    color: rgba(255, 255, 255, 0.78);

    font-family: var(--font-family);

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.tour-cta-actions {
    display: flex;
    align-items: center;

    flex: 0 0 auto;

    gap: 8px;
}


.tour-cta-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 16px;

    border-radius: 9px;

    font-family: var(--font-family);

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;
    white-space: nowrap;

    transition:
        transform var(--transition-fast),
        background var(--transition-fast);
}


.tour-cta-actions a:hover {
    color: inherit;
}


.tour-cta-actions a:active {
    transform: scale(0.97);
}


.tour-cta-actions i {
    margin-right: 7px;
    font-size: 15px;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.tour-cta-whatsapp {
    background: #25d366;
    color: #ffffff;
}


.tour-cta-whatsapp:hover {
    background: #20bd5c;
    color: #ffffff !important;
}


/* =========================================================
   EMAIL
   ========================================================= */

.tour-cta-email {
    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.28);

    color: #ffffff;
}


.tour-cta-email:hover {
    background: rgba(255, 255, 255, 0.20);
    color: #ffffff !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .tour-cta {
        margin-top: 20px;
        padding: 24px 19px;
        border-radius: 14px;
    }


    .tour-cta-content {
        display: block;
    }


    .tour-cta-label {
        margin-bottom: 5px;
        font-size: 9px;
    }


    .tour-cta h2 {
        margin-bottom: 6px;
        font-size: 19px;
    }


    .tour-cta p {
        font-size: 12px;
        line-height: 1.55;
    }


    .tour-cta-actions {
        margin-top: 17px;
        gap: 7px;
    }


    .tour-cta-actions a {
        min-height: 37px;
        padding: 0 13px;
        font-size: 10px;
    }


    .tour-cta-actions i {
        margin-right: 6px;
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .tour-cta {
        padding: 21px 16px;
    }


    .tour-cta h2 {
        font-size: 18px;
    }


    .tour-cta p {
        font-size: 11.5px;
    }


    .tour-cta-actions a {
        flex: 1;
        min-height: 36px;
        padding: 0 9px;
        font-size: 10px;
    }

}