/* CTA de agendamento (comum a Custom, Transfer e Tours) */
.booking-text {
    max-width: 780px;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #000;
}

.booking-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #333;
}

.booking-features i {
    color: rgb(200, 0, 10);
    margin-right: 6px;
}

.btn-tour-cta {
    background-color: rgb(200, 0, 10);
    color: white;
    border: none;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-tour-cta:hover {
    background-color: rgb(160, 0, 8);
    color: white;
    transform: scale(1.03);
}

.tour-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: rgb(200, 0, 10);
    position: relative;
    display: inline-block;
}

.tour-cta-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: rgb(200, 0, 10);
    margin: 12px auto 0;
    border-radius: 10px;
}

.booking-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-tour-cta-outline {
    background-color: transparent;
    color: rgb(200, 0, 10);
    border: 2px solid rgb(200, 0, 10);
    padding: 12px 34px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-tour-cta-outline:hover {
    background-color: rgb(200, 0, 10);
    color: white;
    transform: scale(1.03);
}

@media (max-width: 767.98px) {
    .booking-text {
        font-size: 1.05rem;
        line-height: 1.5;
    }

    .tour-cta-title {
        font-size: 1.7rem;
    }

    .booking-features {
        gap: .85rem;
        font-size: .95rem;
    }
}
