/* ==========================================================================
   MarleyTur - Todos os Passeios Modern Styles
   ========================================================================== */

.page-header-title {
    text-align: center;
    padding: 120px 0 30px 0;
}

.page-header-title h1 {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff, #86efac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header-title p {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.tour-card-section {
    margin-bottom: 45px;
}

.tour-card-wrapper {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card-wrapper:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.tour-card-info {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #334155;
}

.tour-card-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.tour-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.badge-custom {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.badge-custom-blue {
    background: rgba(14, 165, 233, 0.12);
    color: #0369a1;
}

.tour-card-info p {
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.tour-card-carousel {
    position: relative;
}

.img-carousel {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.carousel-inner {
    border-radius: 0;
}

.bk-carousel {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    padding: 8px 18px;
    border-radius: 20px;
    background: rgba(11, 19, 43, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.bk-carousel h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff !important;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-custom:hover {
    background: #ffffff;
    color: #16a34a !important;
    border: 1px solid #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.45);
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
    .page-header-title {
        padding: 95px 0 20px 0;
    }

    .page-header-title h1 {
        font-size: 2.2rem;
    }

    .img-carousel {
        height: 280px;
    }

    .tour-card-info {
        padding: 25px 20px;
    }

    .tour-card-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .page-header-title {
        padding: 85px 15px 15px 15px;
    }

    .page-header-title h1 {
        font-size: 1.75rem;
    }

    .img-carousel {
        height: 230px;
    }

    .tour-card-info h3 {
        font-size: 1.3rem;
    }

    .tour-card-wrapper {
        border-radius: 18px;
    }
}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {}

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {}