/*- INCLUINDO O CSS ATUALIZADO */
/* ── RESET E BASE ── */
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Outfit', sans-serif;
    background: #f4f6fb;
    color: #222;
    line-height: 1.6;
}
a {
    color: inherit;
    text-decoration: none;
}
/* ── LAYOUT DE COLUNAS (BOOTSTRAP ADAPTADO) ── */
.main-column {
    min-width: 0;
}
/* Sidebar Sticky - Ajustado para funcionar dentro do grid do Bootstrap */
.sidebar {
    position: sticky;
    top: 20px;
    z-index: 10;
}
/* ── NAVEGAÇÃO (NAVBAR) ── */
.navbar-logo {
    height: 52px;
}
.det-nav {
    background: #1a1a2e;
    padding: 14px 0;
}
.det-nav .inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.det-nav .brand {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}
.det-nav .back-btn {
    display: inline-flex;
    align-items: center;
    background: var(--cor-primaria);
    color: #fff;
    padding: 10px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}
.det-nav .back-btn:hover {
    background: var(--cor-hover);
}
/* ── SEÇÃO HERO (DESTAQUE) ── */
.hero-detalhes {
    position: relative;
    height: 380px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
}
.hero-detalhes img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55;
}
.hero-detalhes .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}
.hero-detalhes h1 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 800;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
    margin-bottom: 12px;
}
.hero-dates {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-dates .badge-date {
    background: rgba(255, 255, 255, .5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: .9rem;
    font-weight: 500;
}
/* ── COMPONENTES DE CARDS E SEÇÕES ── */
.card-sec {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
}
.card-sec:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.card-sec:last-child {
    margin-bottom: 0;
}
.inclusoes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}
.inclusoes-grid .card-sec {
    margin-bottom: 0;
    height: 100%;
}
.sec-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cor-secundaria);
    margin-bottom: 15px;
}
.sec-title .icon {
    color: var(--cor-primaria);
    background: rgba(245, 128, 20, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
/* ── GALERIA (SWIPER) ── */
.swiper {
    border-radius: 12px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 16px;
}
.swiper-main {
    height: 450px;
}
.swiper-main .swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
.swiper-thumb {
    height: 80px;
}
.swiper-thumb .swiper-slide {
    opacity: 0.6;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
}
.swiper-thumb .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-thumb .swiper-slide-thumb-active {
    opacity: 1;
    outline: 3px solid var(--cor-primaria) !important;
}
.swiper-container-main {
    width: 100%;
}
.swiper-button-next {
    color: var(--cor-primaria) !important;
}
.swiper-button-prev {
    color: var(--cor-primaria) !important;
}
/* ── CONTEÚDO E TEXTOS ── */
.desc-text {
    color: #555;
    line-height: 1.8;
    white-space: pre-line;
}
/* ── HOSPEDAGEM E QUARTOS ── */
.hosp-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 16px;
}
.hosp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px;
}
.hosp-item h4 {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #999;
    margin-bottom: 4px;
}
.hosp-item p {
    font-weight: 600;
    color: #1a1a2e;
}
.hosp-sections {
    display: flex;
    flex-direction: column;
}
.hosp-section {
    border-top: 1px solid #edf1f7;
    padding-top: 14px;
    margin-top: 14px;
}
.hosp-section:first-child {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}
.hosp-subtitle {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #999;
    margin-bottom: 8px;
    font-weight: 700;
}
.hosp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.hosp-tag {
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #555;
}
.quarto-badge {
    display: inline-block;
    background: #f0f5ff;
    border: 1px solid #c7d7fc;
    color: #1a4bcc;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 500;
    margin: 3px;
}
/* ── TABELA DE CRIANÇAS ── */
.criancas-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
    margin-top: 8px;
}
.criancas-table th {
    background: #f4f6fb;
    padding: 8px 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid #e8ecf5;
}
.criancas-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #f0f2f8;
}
/* ── EMBARQUE E AEROPORTOS ── */
.embarque-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.embarque-item {
    background: #f8f9fc;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.aeroporto-item {
    background: #eef3ff;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
/* ── LISTAS (INCLUSOS / NÃO INCLUSOS) ── */
.list-items {
    list-style: none;
    padding-left: 1rem !important;
}
.list-items li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f2f8;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .92rem;
}
.list-items li:last-child {
    border: none;
}
.list-items .icon-ok {
    color: #1cc88a;
    font-size: .85rem;
}
.list-items .icon-no {
    color: #e74a3b;
    font-size: .85rem;
}
.list-items .icon-bag {
    color: #f58014;
    font-size: .85rem;
}
/* ── ITINERÁRIO (LINHA DO TEMPO) ── */
.itinerary-timeline {
    position: relative;
    padding-left: 32px;
}
.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #f58014, #e74a3b);
}
.itin-day {
    position: relative;
    margin-bottom: 20px;
}
.itin-dot {
    position: absolute;
    left: -26px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f58014;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #f58014;
}
.itin-title {
    font-weight: 700;
    color: #f58014;
    font-size: .95rem;
    margin-bottom: 4px;
}
.itin-desc {
    color: #555;
    font-size: .9rem;
    line-height: 1.65;
}
/* ── POLÍTICAS E INVESTIMENTO ── */
.politica-box {
    background: linear-gradient(135deg, #fff8ec, #fff3e0);
    border: 1px solid #ffd082;
    border-radius: 12px;
    padding: 20px 24px;
}
.invest-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-radius: 16px;
    padding: 28px;
    color: #fff;
    box-shadow: 0 8px 32px rgba(15, 52, 96, .4);
}
.invest-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #f58014;
    font-weight: 600;
    margin-bottom: 6px;
}
.invest-price {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.invest-sub {
    font-size: .85rem;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 20px;
}
.invest-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin: 18px 0;
}
.invest-section-title {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 10px;
}
/* ── PARCELAMENTO E PAGAMENTO ── */
.parcela-box {
    background: rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 12px;
}
.parcela-main {
    font-size: 1.4rem;
    font-weight: 700;
}
.parcela-sub {
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
}
.pag-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    padding: 5px 0;
}
.pag-item i {
    color: #1cc88a;
    font-size: .8rem;
}
/* ── BOTÕES DE AÇÃO ── */
.btn-reservar {
    background: var(--cor-primaria);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.2s;
}
.btn-reservar:hover {
    background: var(--cor-hover);
    transform: translateY(-1px);
}
.btn-reservar-slide {
    display: block;
    width: 100%;
    background: var(--cor-primaria);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    margin-top: 18px;
    transition: background 0.2s;
    letter-spacing: .02em;
}
.mobile-sticky-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    height: 80px;
    bottom: 0;
    z-index: 99995;
    background: #ececec;
    border-top: 1px solid #d9d9d9;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
    padding: 10px 15px calc(8px + env(safe-area-inset-bottom));
}
.mobile-sticky-bar .inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}
.mobile-sticky-bar .preco-label {
    color: #6f6f6f;
    font-size: .9rem;
    line-height: 1;
    margin-bottom: 2px;
}
.mobile-sticky-bar .preco-valor {
    color: var(--cor-primaria);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.02em;
}
.mobile-sticky-bar .btn-mobile-reservar {
    background: var(--cor-primaria);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px 22px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}
.mobile-sticky-bar .btn-mobile-reservar:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}
/* Loading overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.loading-overlay .spinner-lg {
    width: 56px;
    height: 56px;
    border: 4px solid #f1f5f9;
    border-top: 4px solid var(--cor-primaria);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.loading-overlay p {
    color: var(--cor-secundaria);
    font-size: 1rem;
    font-weight: 600;
}
/* Responsive */
@media (max-width: 576px) {
    .modal-box {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 16px 16px 0 0;
        position: fixed;
        bottom: 0;
        max-height: 85vh;
    }
    .modal-header {
        padding: 20px 20px 16px;
        border-radius: 16px 16px 0 0;
    }
    .modal-header h3 {
        font-size: 1.25rem;
    }
    .modal-body {
        padding: 20px;
    }
    .modal-body .price-preview {
        padding: 18px 16px;
        margin: 20px 0;
    }
    .modal-body .price-preview .val {
        font-size: 1.75rem;
    }
    .modal-body .pix-credit {
        flex-direction: column;
        gap: 10px;
    }
    .modal-body .btn-gerar {
        padding: 16px 20px;
        font-size: 1rem;
    }
}
/* ── AGENTE E COMPARTILHAMENTO ── */
.agent-box {
    margin-top: 16px;
    background: rgba(255, 255, 255, .06);
    border-radius: 10px;
    text-align: center;
    padding: 15px;
}
.agent-box .agent-label {
    font-size: .72rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 4px;
}
.agent-box .agent-name {
    font-size: 1rem;
    font-weight: 700;
}
.agent-box .agent-agencia {
    font-size: .8rem;
    color: rgba(255, 255, 255, .6);
}
.share-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 8px 0;
}
.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    transition: .2s;
}
.share-btn:hover {
    transform: scale(1.12);
}
.share-btn.wpp {
    background: #25D366;
}
.share-btn.tele {
    background: #2CA5E0;
}
.share-btn.copy {
    background: #6c757d;
}
/* ── VÍDEO ── */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* ── COMPONENTES FLUTUANTES (WHATSAPP E SCROLL) ── */
.scroll-top {
    position: fixed;
    bottom: 27px !important;
    right: 30px !important;
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    opacity: 0;
    visibility: hidden;
    color: #fff;
    background: var(--cor-primaria);
    z-index: 100000;
    transition: all 0.35s ease-in-out;
    border-radius: 50%;
    transform: translateY(10px);
    pointer-events: none;
}
.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
#whatsapp-master {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
}
.whatsapp-master-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.whatsapp-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    animation: whatsapp_pulse 2s infinite;
}
.whatsapp-icon svg {
    width: 34px;
    height: 34px;
    display: block;
}
.whatsapp-icon svg path {
    fill: #ffffff !important;
}
@keyframes whatsapp_pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
/* ── FAQ (PERGUNTAS FREQUENTES) ── */
.faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 600;
    background: #fff;
}
.faq-answer {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 12px 18px;
}
.faq-arrow {
    transition: .3s;
}
.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}
/* ── RODAPÉ (FOOTER) ── */
.det-footer {
    background: #1a1a2e;
    color: rgba(255, 255, 255, .5);
    text-align: center;
    padding: 24px;
    font-size: .82rem;
    margin-top: 20px;
}
.footer-credit {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-credit:hover {
    color: #ff8000;
}
/* ── RESPONSIVIDADE ── */
@media (max-width: 992px) {
    .sidebar {
        position: static;
        width: 100%;
    }
    .hero-detalhes h1 {
        font-size: 1.8rem;
    }
    .card-sec {
        padding: 15px;
    }
    body {
        padding-bottom: 94px;
    }
    .mobile-sticky-bar {
        display: block;
    }
    .scroll-top {
        display: flex;
        bottom: 165px !important;
    }
    #whatsapp-master {
        bottom: 90px;
    }
}
@media (max-width: 768px) {
    .inclusoes-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .hosp-grid {
        grid-template-columns: 1fr 1fr;
    }
    .swiper-main {
        height: 300px;
    }
}
/* Botão voltar ao topo */
.btn-back-to-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--cor-primaria);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 9998;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: visible;
}
/* Hover */
.btn-back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: color-mix(in srgb, var(--cor-primaria) 80%, transparent);
}
/* Botão visível */
.btn-back-to-top.show {
    display: flex !important;
}
/* ==========================================
   SEÇÃO PASSEIOS (PACOTES DETALHES)
   ========================================== */
.passeios-section {
    margin-bottom: 40px;
}
.passeios-section .passeios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}
.passeio-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}
.passeio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.passeio-card .img-passeio-container {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.passeio-card .img-passeio {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.passeio-card:hover .img-passeio {
    transform: scale(1.05);
}
.passeio-card .passeio-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.passeio-badge-incluso {
    background: #10b981;
    color: #fff;
}
.passeio-badge-opcional {
    background: #f59e0b;
    color: #fff;
}
.passeio-card .card-body {
    padding: 20px;
}
.passeio-card .card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.4;
}
.passeio-card .card-text {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
    -webkit-line-clamp: 3;
}
.passeio-card .passeio-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}
.passeio-card .passeio-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #64748b;
}
.passeio-card .passeio-info-item i {
    color: var(--cor-primaria);
    width: 16px;
    text-align: center;
}
.passeio-card .passeio-valor {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cor-primaria);
    padding: 8px 12px;
    background: rgba(var(--cor-primaria), 0.08);
    border-radius: 6px;
    text-align: center;
}
.passeio-card .passeio-valor-gratis {
    color: #10b981;
}
/* Responsivo */
@media (max-width: 992px) {
    .passeios-section .passeios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .passeios-section .passeios-grid {
        grid-template-columns: 1fr;
    }
    .passeio-card .img-passeio-container {
        height: 160px;
    }
}
/* ==========================================
   GRID DE PACOTES
   ========================================== */
.pacotes-grid {
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}
/* Slider de Pacotes */
.pacotes-slider-wrapper {
    position: relative;
    margin: 0 auto 60px;
    overflow: visible;
    padding: 0;
}
.pacotes-slider-wrapper .slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}
.pacotes-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 10px 40px;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}
.pacotes-slider .pct-card {
    flex: 0 0 310px;
    max-width: 310px;
    scroll-snap-align: start;
}
.pacotes-slider::-webkit-scrollbar {
    height: 6px;
}
.pacotes-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}
.pacotes-slider::-webkit-scrollbar-thumb {
    background: var(--cor-primaria);
    border-radius: 3px;
    opacity: 0.7;
}
.pacotes-slider::-webkit-scrollbar-thumb:hover {
    opacity: 1;
}
.pacotes-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.pacotes-slider::-webkit-scrollbar {
    display: none;
}
.pacotes-slider:hover::-webkit-scrollbar {
    display: block;
}
.slider-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid var(--cor-primaria);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--cor-secundaria);
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}
.slider-nav-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}
.slider-nav-btn.prev {
    left: -40px;
}
.slider-nav-btn.next {
    right: -40px;
}
.slider-nav-btn.hidden {
    display: none !important;
}
.slider-nav-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}
.slider-nav-btn.prev:hover {
    transform: translateY(-50%) scale(1.1);
}
.slider-nav-btn.next:hover {
    transform: translateY(-50%) scale(1.1);
}
.pacotes-slider-wrapper .slider-nav-btn {
    display: flex;
}
@media (max-width: 991px) {
    .slider-nav-btn {
        display: none !important;
    }
}
@media (min-width: 992px) {
    .slider-nav-btn {
        display: flex !important;
    }
}
.slider-nav-btn.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
@media (min-width: 992px) {
    .pacotes-slider {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
}
@media (max-width: 767px) {
    .pacotes-slider .pct-card {
        flex: 0 0 300px;
        max-width: 300px;
    }
}
@media(min-width: 768px) {
    .pacotes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(min-width: 1024px) {
    .pacotes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* ==========================================
   PACKAGE CARD
   ========================================== */
.pct-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.pct-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}
.pct-img-wrap {
    position: relative;
    height: 180px;
    background: #eee;
}
.pct-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pct-badge-destaque {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--cor-primaria);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.pct-badge-vagas {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2e3b52;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.pct-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.pct-cat {
    background: #ebfcf4;
    color: #0f8f53;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    align-self: flex-start;
}
.pct-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--cor-secundaria);
    margin-bottom: 5px;
    line-height: 1.3;
}
.pct-dest {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
}
.pct-desc {
    font-size: 14px;
    color: var(--texto-card);
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pct-info-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #666;
}
.pct-info-bar span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.pct-footer {
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pct-price-box {
    display: flex;
    flex-direction: column;
}
.pct-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
}
.pct-price {
    font-size: 22px;
    font-weight: 900;
    color: var(--cor-secundaria);
}
.pct-price-sub {
    font-size: 11px;
    color: #777;
}