/* ==========================================================
   COSTA PLATFORM — HOME TOURS SECTION
   Seção 2 — Passeios mais vendidos
   ========================================================== */

#cst-home-tours {
    position: relative;
    overflow: hidden;
    scroll-margin-top: 72px;
}

#cst-home-tours .cst-section-header {
    margin-bottom: 56px;
}

#cst-home-tours .elementor-widget-loop-grid {
    margin-bottom: 0 !important;
}

.cst-tours-trust-bar {
    width: min(100%, 1480px);
    margin: 52px auto 0;
    padding: 22px 28px;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;

    border: 1px solid rgba(6, 43, 87, 0.08);
    border-radius: 22px;

    background:
        linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.82));

    box-shadow:
        0 22px 56px rgba(6, 43, 87, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.85);

    backdrop-filter: blur(14px);
}

.cst-tours-trust-bar__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    padding: 0 22px;
    border-right: 1px solid rgba(6, 43, 87, 0.10);
}

.cst-tours-trust-bar__item:last-child {
    border-right: 0;
}

.cst-tours-trust-bar__icon {
    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #B88918;
    font-size: 26px;
    line-height: 1;
}

.cst-tours-trust-bar strong {
    display: block;

    color: #062B57;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
}

.cst-tours-trust-bar span span {
    display: block;

    margin-top: 4px;
    color: rgba(6, 43, 87, 0.62);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 500;
}

.cst-tours-final-cta {
    width: min(100%, 760px);
    margin: 28px auto 0;
    text-align: center;
}

.cst-tours-final-cta__button {
    min-width: 420px;
    min-height: 58px;
    padding: 0 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border-radius: 999px;
    background:
        linear-gradient(180deg, #e5bf3d 0%, #d4af37 100%);

    color: #ffffff;
    text-decoration: none;

    font-size: 17px;
    line-height: 1;
    font-weight: 900;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.24),
        0 18px 38px rgba(212, 175, 55, 0.28);

    transition:
        transform 260ms ease,
        box-shadow 260ms ease;
}

.cst-tours-final-cta__button:hover {
    transform: translateY(-2px);
    color: #ffffff;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.30),
        0 24px 46px rgba(212, 175, 55, 0.36);
}

.cst-tours-final-cta__button span {
    transition: transform 260ms ease;
}

.cst-tours-final-cta__button:hover span {
    transform: translateX(5px);
}

.cst-tours-final-cta__text {
    margin: 20px 0 8px;

    color: rgba(6, 43, 87, 0.70);
    font-size: 16px;
    line-height: 1.55;
}

.cst-tours-final-cta__text strong {
    display: block;
    color: #062B57;
    font-weight: 850;
}

.cst-tours-final-cta__text span {
    display: block;
}

.cst-tours-final-cta__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #062B57;
    font-size: 15px;
    font-weight: 850;
    text-decoration: none;
}

.cst-tours-final-cta__link:hover {
    color: #B88918;
}

.cst-tours-final-cta__link span {
    transition: transform 260ms ease;
}

.cst-tours-final-cta__link:hover span {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .cst-tours-trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .cst-tours-trust-bar__item {
        justify-content: flex-start;
        border-right: 0;
        padding: 0;
    }
}

@media (max-width: 767px) {
    #cst-home-tours {
        scroll-margin-top: 76px;
    }

    #cst-home-tours .cst-section-header {
        margin-bottom: 34px;
    }

    .cst-tours-trust-bar {
        grid-template-columns: 1fr;
        margin-top: 34px;
        padding: 24px;
        gap: 18px;
        border-radius: 20px;
    }

    .cst-tours-final-cta {
        margin-top: 28px;
    }

    .cst-tours-final-cta__button {
        width: 100%;
        min-width: 0;
        min-height: 54px;
        font-size: 15px;
    }

    .cst-tours-final-cta__text {
        font-size: 15px;
    }
}