.passeio-container {
    margin-top: 100px;
    margin-bottom: 40px;
    padding: 30px 20px;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.tour-section {
    padding-top: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 30px;
}

.tour-section:last-child {
    border-bottom: none;
}

.col-titulo {
    text-align: center;
    padding: 15px 25px;
    margin-bottom: 25px;
    border-radius: 15px;
    background: linear-gradient(135deg, #1e7e34, #28a745);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.col-titulo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.attraction-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: calc(100% - 25px);
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.attraction-card .img-wrapper {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.attraction-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-card:hover .img-wrapper img {
    transform: scale(1.05);
}

.attraction-card .card-body-custom {
    padding: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
}

.attraction-card .card-body-custom h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.tour-cta {
    text-align: center;
    margin: 25px 0 15px 0;
}

.btn-whatsapp-tour {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-tour:hover {
    background: #1ebc59;
    color: white;
    text-decoration: none;
    transform: scale(1.03);
}

/* Responsividade */
@media (max-width: 575.98px) {
    .passeio-container {
        margin-top: 85px;
        padding: 20px 10px;
    }

    .col-titulo h2 {
        font-size: 1.4rem;
    }

    .attraction-card .img-wrapper {
        height: 160px;
    }
}