@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700;800&display=swap');

/* ================================================================
   Gerenciador Visite Olímpia — Frontend Styles v3.5
   Mobile-first · Carrossel · Galeria · Lightbox · Busca
   ================================================================ */

/* ── Variáveis ──────────────────────────────────────────────── */
:root {
    /* CORES PRINCIPAIS DO SITE: altere aqui se a identidade visual mudar. */
    --vo-purple:      #8832d4;
    --vo-purple-dark: #6f24b4;
    --vo-purple-soft: #f4ebff;
    --vo-orange:      #fc984c;
    --vo-orange-dark: #e8792e;

    /* CORES DE TEXTO: titulos e descricoes seguem o padrao solicitado. */
    --vo-title:       #333333;
    --vo-text:        #333333;
    --vo-text-muted:  #777777;

    /* CORES DE APOIO: bordas, fundos e WhatsApp. */
    --vo-green:       var(--vo-purple);
    --vo-green-dark:  var(--vo-purple-dark);
    --vo-green-light: var(--vo-purple-soft);
    --vo-whatsapp:    #25D366;
    --vo-border:      #eadff7;
    --vo-bg:          #faf8fd;
    --vo-white:       #ffffff;

    /* RAIO, SOMBRA E FONTE: pontos principais para mexer no visual dos cards. */
    --vo-radius:      12px;
    --vo-radius-sm:   8px;
    --vo-shadow:      0 8px 24px rgba(77, 38, 118, .08);
    --vo-shadow-md:   0 14px 34px rgba(77, 38, 118, .14);
    --vo-shadow-lg:   0 22px 54px rgba(77, 38, 118, .18);
    --vo-font:        'Quicksand', system-ui, -apple-system, sans-serif;
    --vo-transition:  .25s ease;
}

/* ── Reset mínimo ───────────────────────────────────────────── */
.vo-single *, .vo-catalogo-wrap *, .vo-carousel-wrap * {
    box-sizing: border-box;
}

/* ================================================================
   BARRA DE BUSCA
   Para alterar o visual da busca: mexa principalmente em --vo-purple,
   --vo-orange e nas regras .vo-search-bar / .vo-search-btn abaixo.
   ================================================================ */
.vo-search-bar {
    /* BUSCA: altere border-radius para deixar mais ou menos arredondado. */
    background: #fff;
    border: 0px solid rgba(136, 50, 212, .18);
    border-radius: 999px;
    padding: 10px;
    margin-bottom: 30px;
    box-shadow: 0 10px 28px rgba(77, 38, 118, .10);
}

.vo-search-inner {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(180px, 260px) auto auto;
    gap: 8px;
    align-items: center;
}

.vo-search-field {
    position: relative;
}

.vo-search-icon {
    display: none;
}

.vo-search-field input,
.vo-search-select select {
    width: 100% !important;
    min-height: 50px !important;
    border: 1px solid transparent !important;
    border-radius: 999px !important;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--vo-font);
    color: var(--vo-title);
    background: var(--vo-bg);
    outline: none;
    transition: border-color var(--vo-transition), box-shadow var(--vo-transition), background var(--vo-transition);
}

.vo-search-field input {
    padding: 12px 18px;
}

.vo-search-select select {
    padding: 12px 18px;
    cursor: pointer;
}

.vo-search-field input:focus,
.vo-search-select select:focus {
    background: #fff;
    border-color: var(--vo-purple);
    box-shadow: 0 0 0 4px rgba(136, 50, 212, .13);
}

.vo-search-btn {
    min-height: 50px;
    padding: 0 28px;
    background: var(--vo-orange);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--vo-font);
    transition: background var(--vo-transition), transform .15s ease;
}

.vo-search-btn:hover {
    background: var(--vo-orange-dark);
    transform: translateY(-1px);
}

.vo-search-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: var(--vo-purple-soft);
    color: var(--vo-purple);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: background var(--vo-transition), color var(--vo-transition);
}

.vo-search-clear:hover {
    background: var(--vo-purple);
    color: #fff;
}

.vo-search-result-info {
    font-size: 14px;
    font-weight: 500;
    color: var(--vo-text-muted);
    margin: -14px 0 20px;
}

.vo-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 20px;
    color: var(--vo-text-muted);
    font-size: 16px;
    font-weight: 500;
}

/* ================================================================
   GRID DE CATÁLOGO
   ================================================================ */
.vo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: 24px;
    width: 100%;
    margin: 0;
}

/* ================================================================
   CARD DO CATALOGO
   Para mudar borda, sombra ou espacamento dos cards do catalogo, comece aqui.
   ================================================================ */
.vo-card {
    background: var(--vo-white);
    border: 1px solid rgba(136, 50, 212, .16);
    border-radius: var(--vo-radius);
    overflow: hidden;
    box-shadow: var(--vo-shadow);
    transition: transform var(--vo-transition), box-shadow var(--vo-transition), border-color var(--vo-transition);
    display: flex;
    flex-direction: column;
}

.vo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(136, 50, 212, .32);
    box-shadow: var(--vo-shadow-md);
}

.vo-card > a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

/* thumb */
.vo-card-thumb {
    position: relative;
    overflow: hidden;
    height: 210px;
    background: var(--vo-bg);
    flex-shrink: 0;
}

.vo-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.vo-card:hover .vo-card-thumb img {
    transform: scale(1.06);
}

.vo-card-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: linear-gradient(135deg, #e8f7f0, #d1fae5);
}

.vo-duration-badge {
    /* Badge de duracao sobre a imagem: altere posicao e cor aqui. */
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    max-width: calc(100% - 24px);
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(51, 51, 51, .90);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

.vo-duration-badge::before {
    content: "?";
    font-size: 12px;
}

.vo-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--vo-purple);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 5px 10px;
    border-radius: 50px;
    z-index: 1;
}

/* conteúdo */
.vo-card-content {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vo-card-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 8px;
    color: var(--vo-title);
}

.vo-card-resumo {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--vo-text-muted);
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vo-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.vo-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--vo-text-muted);
    background: var(--vo-purple-soft);
    padding: 5px 10px;
    border-radius: 50px;
    border: 1px solid rgba(136, 50, 212, .14);
}

.vo-card-price {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--vo-border);
}

.vo-card-price small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--vo-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 2px;
}

.vo-card-price strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--vo-orange);
    line-height: 1.2;
}

/* ================================================================
   BOTÕES
   ================================================================ */
.vo-btn, a.vo-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--vo-orange);
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0;
    text-decoration: none !important;
    transition: background var(--vo-transition), transform .15s ease;
}

.vo-btn:hover, a.vo-btn:hover {
    background: var(--vo-orange-dark);
    transform: translateY(-1px);
    color: #fff !important;
}

/* ================================================================
   CARROSSEL [vo_destaques]
   Visual aproximado do catalogo: borda, imagem superior e conteudo abaixo.
   Para mudar quantos cards aparecem, ajuste os flex-basis nos media queries.
   ================================================================ */
.vo-carousel-wrap {
    width: 100%;
    margin: 36px 0;
    overflow: hidden;
}

.vo-carousel-titulo {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 600;
    color: var(--vo-title);
    margin: 0 0 20px;
    text-align: center;
}

.vo-carousel-viewport {
    overflow: hidden;
    border-radius: var(--vo-radius);
    position: relative;
}

.vo-carousel-track {
    display: flex;
    transition: transform .45s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
}

.vo-carousel-slide {
    flex: 0 0 100%;
    min-width: 0;
}

/* em telas maiores mostra 2 ou 3 slides */
@media (min-width: 640px) {
    .vo-carousel-slide { flex: 0 0 50%; }
}
@media (min-width: 1024px) {
    .vo-carousel-slide { flex: 0 0 33.333%; }
}

.vo-carousel-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    margin: 0 8px;
    border: 1px solid rgba(136, 50, 212, .16);
    border-radius: var(--vo-radius);
    overflow: hidden;
    box-shadow: var(--vo-shadow);
    background: var(--vo-white);
    transition: transform var(--vo-transition), box-shadow var(--vo-transition), border-color var(--vo-transition);
}

.vo-carousel-card:hover {
    transform: translateY(-5px);
    border-color: rgba(136, 50, 212, .32);
    box-shadow: var(--vo-shadow-md);
}

.vo-carousel-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.vo-carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.vo-carousel-card:hover .vo-carousel-img img {
    transform: scale(1.05);
}

.vo-carousel-overlay {
    /* Mantido por compatibilidade com o HTML antigo; nao exibimos overlay no novo visual. */
    display: none;
}

.vo-carousel-info {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vo-carousel-badge {
    display: inline-block;
    width: fit-content;
    font-size: 11px;
    font-weight: 700;
    color: var(--vo-purple);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
}

.vo-carousel-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 8px;
    color: var(--vo-title);
}

.vo-carousel-resumo {
    font-size: 13px;
    font-weight: 500;
    color: var(--vo-text-muted);
    line-height: 1.5;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vo-carousel-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--vo-border);
}

.vo-carousel-city {
    font-size: 12px;
    font-weight: 600;
    color: var(--vo-text-muted);
}

.vo-carousel-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--vo-orange);
}

.vo-card-city,
.vo-carousel-city {
    color: var(--vo-text);
    font-weight: 700;
}

/* controles */
.vo-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

/* ================================================================
   BOTOES DE NAVEGAÇÃO DO CARROSSEL (OTIMIZADOS)
   ================================================================ */
button.vo-carousel-prev,
button.vo-carousel-next {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 50% !important;
    border: 1.5px solid rgba(136, 50, 212, 0.2) !important;
    background: var(--vo-white) !important;
    font-size: 0 !important;        /* esconde o texto "anterior"/"próximo" */
    line-height: 1;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--vo-orange);
    opacity: .6;
    transition: opacity var(--vo-transition), transform var(--vo-transition);
    padding: 0 !important;
    box-shadow: none;
}

button.vo-carousel-prev::after  { content: "‹"; font-size: 22px; }
button.vo-carousel-next::after  { content: "›"; font-size: 22px; }

button.vo-carousel-prev:hover,
button.vo-carousel-next:hover {
    opacity: 1;
    transform: scale(1.12);
    background: var(--vo-white) !important;
    border: 1.5px solid rgba(136, 50, 212, 0.6) !important;
}

.vo-carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.vo-carousel-dot {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--vo-border);
    cursor: pointer;
    transition: background var(--vo-transition), width var(--vo-transition), border-radius var(--vo-transition);
    border: none;
    padding: 0;
}

/* Bolinha ativa: mantém o formato redondo, alterando apenas a cor e um leve destaque de tamanho */
.vo-carousel-dot.active {
    background: var(--vo-orange);
    width: 10px;        /* Mantém a largura idêntica à altura */
    border-radius: 50%; /* Garante que permaneça uma bolinha */
    transform: scale(1.2); /* Um leve feedback visual de expansão para indicar o ativo */
}

/* ================================================================
   PÁGINA SINGLE
   ================================================================ */
.vo-single {
    max-width: 1180px;
    margin: 40px auto;
    padding: 0 16px;
    font-family: var(--vo-font);
}

/* hero */
.vo-hero {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--vo-shadow-md);
}

.vo-hero img {
    width: 100%;
    height: clamp(240px, 45vw, 480px);
    object-fit: cover;
    display: block;
}

/* galeria */
.vo-gallery {
    position: relative;
    margin-bottom: 36px;
    overflow: hidden;
    border-radius: var(--vo-radius);
}

.vo-gallery-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 2px 10px;
    scroll-behavior: smooth;
}

.vo-gallery-track::-webkit-scrollbar { display: none; }

.vo-gallery-item {
    flex: 0 0 auto;
    width: clamp(140px, 30vw, 220px);
    height: clamp(95px, 20vw, 150px);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    box-shadow: var(--vo-shadow);
    transition: transform var(--vo-transition);
}

.vo-gallery-item:hover { transform: scale(1.03); }

.vo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vo-gallery-prev,
.vo-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.9);
    box-shadow: var(--vo-shadow);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--vo-transition);
    z-index: 2;
    color: var(--vo-text);
}

.vo-gallery-prev { left: 4px; }
.vo-gallery-next { right: 4px; }
.vo-gallery-prev:hover, .vo-gallery-next:hover { background: var(--vo-white); }

/* lightbox */
.vo-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.93);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.vo-lightbox.open { display: flex; }

.vo-lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 0 60px rgba(0,0,0,.5);
}

.vo-lightbox-close,
.vo-lightbox-prev,
.vo-lightbox-next {
    position: absolute;
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--vo-transition);
}

.vo-lightbox-close:hover,
.vo-lightbox-prev:hover,
.vo-lightbox-next:hover { background: rgba(255,255,255,.3); }

.vo-lightbox-close { top: 20px; right: 20px; font-size: 20px; }
.vo-lightbox-prev  { left: 16px; top: 50%; transform: translateY(-50%); }
.vo-lightbox-next  { right: 16px; top: 50%; transform: translateY(-50%); }

/* layout single */
.vo-container {
    /* PAGINA UNICA DESKTOP: coluna principal ampla + box de preco menor na direita. */
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    grid-template-rows: auto auto auto;
    gap: 24px 34px;
    align-items: start;
}

.vo-single-title {
    grid-column: 1 / -1;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    color: var(--vo-title);
    margin: 0 0 6px;
    line-height: 1.2;
}

.vo-single-resumo {
    grid-column: 1 / -1;
    font-size: 17px;
    font-weight: 500;
    color: var(--vo-text-muted);
    line-height: 1.6;
    margin: 0 0 28px;
}

.vo-content-col {
    min-width: 0;
    grid-column: 1;
}

.vo-sidebar {
    position: sticky;
    top: 20px;
    grid-column: 2;
    grid-row: 3;
}

/* info boxes */
.vo-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.vo-info-box {
    background: #fff;
    border: 1px solid var(--vo-border);
    border-radius: 14px;
    padding: 15px 16px;
    box-shadow: 0 8px 20px rgba(77, 38, 118, .06);
}

.vo-info-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--vo-text-muted);
    margin-bottom: 4px;
}

.vo-info-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--vo-text);
}

/* descrição */
.vo-descricao {
    /* DESCRICAO DA VIAGEM: area principal, ampla e sem ficar espremida no desktop. */
    width: 100%;
    background: #fff;
    border: 1px solid var(--vo-border);
    border-radius: 16px;
    padding: 24px 26px;
    box-shadow: 0 10px 26px rgba(77, 38, 118, .07);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.85;
    color: var(--vo-text-muted);
}

.vo-descricao p {
    margin: 0 0 16px;
}

.vo-descricao p:last-child {
    margin-bottom: 0;
}

/* CTA box */
.vo-cta-box {
    background: #fff;
    border: 1px solid rgba(136, 50, 212, .18);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--vo-shadow-md);
    text-align: center;
}

.vo-price-label {
    font-size: 12px;
    color: var(--vo-text-muted);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 4px;
}

.vo-preco {
    /* PRECO PRINCIPAL: cor padrao usada nos cards, carrossel e pagina unica. */
    font-size: clamp(28px, 5vw, 38px);
    font-weight: 800;
    color: var(--vo-orange);
    line-height: 1.1;
    margin-bottom: 4px;
}

.vo-preco-from {
    font-size: 13px;
    color: var(--vo-text-muted);
    margin-bottom: 20px;
}

/* ── Preço parcelado 10x sem juros ──────────────── */
.vo-preco-parcelado {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.vo-badge-10x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--vo-orange);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 8px;
    line-height: 1.2;
    flex-shrink: 0;
}

.vo-preco-valor {
    font-size: clamp(28px, 5vw, 38px);
    font-weight: 800;
    color: var(--vo-orange);
    line-height: 1.1;
}

/* ── CTA form fields (single-produto) ──────────────────── */
.vo-cta-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.vo-cta-field {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--vo-border);
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--vo-font);
    color: var(--vo-title);
    background: var(--vo-bg);
    outline: none;
    transition: border-color var(--vo-transition), box-shadow var(--vo-transition);
    box-sizing: border-box;
    min-height: 48px;
    line-height: 1.3;

    /* ── iOS / Safari fixes ── */
    -webkit-appearance: none;
    appearance: none;
    max-width: 100%;
}

/* Placeholder styling for date inputs on iOS */
.vo-cta-field[type="date"]::-webkit-datetime-edit-text,
.vo-cta-field[type="date"]::-webkit-datetime-edit-month-field,
.vo-cta-field[type="date"]::-webkit-datetime-edit-day-field,
.vo-cta-field[type="date"]::-webkit-datetime-edit-year-field {
    color: var(--vo-text-muted);
}

.vo-cta-field[type="date"]:focus::-webkit-datetime-edit-text,
.vo-cta-field[type="date"]:focus::-webkit-datetime-edit-month-field,
.vo-cta-field[type="date"]:focus::-webkit-datetime-edit-day-field,
.vo-cta-field[type="date"]:focus::-webkit-datetime-edit-year-field {
    color: var(--vo-title);
}

.vo-cta-field:focus {
    border-color: var(--vo-purple);
    box-shadow: 0 0 0 3px rgba(136, 50, 212, .13);
}

/* ── Labels acima dos inputs de data ──────────────────── */
.vo-cta-label-acima {
    display: block;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: var(--vo-text-muted);
    margin-top: 4px;
    margin-bottom: -4px;
}

.vo-cta-checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--vo-text-muted);
    cursor: pointer;
    margin-top: 2px;
    text-align: left;
}

.vo-cta-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--vo-purple);
}

/* ── Classe utilitária para esconder elementos ────────── */
.vo-hidden {
    display: none !important;
}

/* ── Inputs disabled ──────────────────────────────────── */
.vo-cta-field:disabled {
    opacity: .45;
    cursor: not-allowed;
    background: #f0ecf5;
}

/* ── Passagem aérea: campo origem ──────────────────────── */
.vo-origem-field {
    transition: opacity .3s ease, max-height .3s ease;
    max-height: 60px;
    opacity: 1;
    overflow: hidden;
}

.vo-origem-field.vo-hidden {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    border-width: 0;
}

/* ── Lead capture fields separator ─────────────────────── */
.vo-lead-separator {
    border: none;
    border-top: 1px solid var(--vo-border);
    margin: 6px 0 4px;
}

@media (max-width: 900px) {
    .vo-cta-fields {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .vo-cta-field {
        padding: 12px 14px;
        font-size: 16px;
        min-height: 50px;
    }
}

/* whatsapp btn */
.vo-whatsapp, a.vo-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    background: var(--vo-whatsapp);
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background var(--vo-transition), transform .15s ease;
    margin-top: 0;
}

.vo-whatsapp::before, a.vo-whatsapp::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.vo-whatsapp:hover, a.vo-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    color: #fff !important;
}

/* ================================================================
   RESPONSIVO
   ================================================================ */
@media (max-width: 900px) {
    .vo-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 18px;
    }

    .vo-single-title,
    .vo-single-resumo,
    .vo-content-col,
    .vo-sidebar {
        grid-column: 1;
    }

    .vo-sidebar {
        position: static;
        grid-row: auto;
        order: -1;
        margin-bottom: 8px;
    }

    .vo-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .vo-cta-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 12px;
        text-align: left;
    }

    .vo-cta-box .vo-price-label,
    .vo-cta-box .vo-preco,
    .vo-cta-box .vo-preco-from,
    .vo-cta-box .vo-preco-parcelado,
    .vo-cta-box .vo-preco-valor { margin-bottom: 0; }

    .vo-cta-box .vo-whatsapp,
    .vo-cta-box a.vo-whatsapp { margin-top: 0; }
}

@media (max-width: 640px) {
    .vo-single { padding: 0 12px; margin: 24px auto; }

    .vo-hero { border-radius: 12px; margin-bottom: 14px; }

    .vo-grid { gap: 16px; }

    .vo-card-thumb { height: 190px; }

    .vo-search-bar {
        border-radius: 22px;
        padding: 12px;
    }
    .vo-search-inner { grid-template-columns: 1fr; }
    .vo-search-field,
    .vo-search-select,
    .vo-search-btn,
    .vo-search-clear { width: 100%; }
    .vo-search-select select { width: 100%; }
    .vo-search-clear { height: 46px; }

    .vo-cta-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vo-carousel-prev { left: 4px; }
    .vo-carousel-next { right: 4px; }

    .vo-info-grid { grid-template-columns: 1fr 1fr; }

    /* lightbox mobile */
    .vo-lightbox-prev { left: 4px; }
    .vo-lightbox-next { right: 4px; }
}

/* ── Touch swipe hint ───────────────────────────────────── */
@media (hover: none) {
    .vo-gallery-prev,
    .vo-gallery-next { display: none; }
}
