﻿/* =========================
   CARD EXCURSÃO
========================= */
.excursao-card {
    position: relative;
    border-radius: 16px !important;
    overflow: hidden;
    transition: all .25s ease;
    background: #fff;
    border: 1px solid #e9ecef !important;
    box-shadow: 0 4px 14px rgba(0,0,0,.06) !important;
}

    .excursao-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0,0,0,.12) !important;
    }

.excursao-card-img {
    position: relative;
    height: 260px;
    background: #f8f9fa;
    overflow: hidden;
}

    .excursao-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: none !important;
        transition: transform .35s ease;
    }

.excursao-card:hover .excursao-card-img img {
    transform: scale(1.04);
}

.excursao-sem-imagem {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    background: #f1f3f5;
}

/* =========================
   OVERLAY
========================= */
.excursao-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( to bottom, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.75) 100% );
}

/* =========================
   BADGE PACOTE
========================= */
.excursao-card::before {
    content: "PACOTE";
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 6;
    background: rgba(255,255,255,.96);
    color: #0d4f8b;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 7px;
    line-height: 1;
}

/* =========================
   CRÉDITO
========================= */
.excursao-credito {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 6;
    font-size: 10px;
    color: rgba(255,255,255,0.85);
    background: rgba(0,0,0,0.28);
    padding: 4px 8px;
    border-radius: 6px;
    max-width: 48%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* =========================
   DESTINO
========================= */
.excursao-destino {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 54px;
    z-index: 5;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0,0,0,.45);
    margin: 0;
}

/* =========================
   PREÇOS
========================= */
.excursao-precos {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: #fff;
}

.excursao-preco-bloco {
    display: flex;
    flex-direction: column;
}

    .excursao-preco-bloco.text-end {
        align-items: flex-end;
    }

.excursao-preco-label {
    font-size: 12px;
    opacity: .88;
    line-height: 1.1;
    margin-bottom: 3px;
    color: rgba(255,255,255,.88);
}

.excursao-preco-valor {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
}

/* =========================
   RODAPÉ
========================= */
.excursao-card .card-body {
    padding: 14px 16px;
}

    .excursao-card .card-body span {
        color: #5f6b7a;
        font-size: 14px;
    }

    .excursao-card .card-body i {
        color: #0d4f8b;
    }

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .excursao-card-img {
        height: 220px;
    }

    .excursao-destino {
        font-size: 18px;
        bottom: 48px;
    }

    .excursao-preco-valor {
        font-size: 16px;
    }

    .excursao-credito {
        max-width: 45%;
        font-size: 9px;
    }
}
