/* ========================================================================== */
/*  CAMINHO DA SERRA — CSS (REFATORADO PARA LAYOUT “LOJA” DAS IMAGENS)         */
/*  - Mantém identidade visual (cores/variáveis) e fonte (Poppins)             */
/*  - Bordas MAIS QUADRADAS (radius menor)                                    */
/*  - Novas sections: hero-shop, cats, products-grid, featured, list-card      */
/* ========================================================================== */

/* -------------------------------------------------------------------------- */
/*  1) Variáveis / Tema                                                        */
/* -------------------------------------------------------------------------- */
:root {
    --brand: #1B464C;
    --accent: #9CC249;
    --bg: #F4F5CA;
    --white: #FFFFFF;

    --text: #123338;
    --muted: rgba(18, 51, 56, .72);

    --shadow: 0 18px 45px rgba(0, 0, 0, .10);

    /* ✅ MAIS QUADRADO */
    --radius: 6px;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;

    --container: 1120px;
}

/* -------------------------------------------------------------------------- */
/*  2) Reset / Base                                                            */
/* -------------------------------------------------------------------------- */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: var(--white);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

[hidden] {
    display: none !important;
}

/* -------------------------------------------------------------------------- */
/*  3) Utilitários                                                             */
/* -------------------------------------------------------------------------- */
.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.mt-24 {
    margin-top: 24px;
}

.center {
    display: flex;
    justify-content: center;
}

/* -------------------------------------------------------------------------- */
/*  4) Botões                                                                  */
/* -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    /* mais quadrado */
    font-weight: 700;
    letter-spacing: .02em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease, opacity .12s ease;
    user-select: none;
}

.btn:active {
    transform: translateY(1px);
}

.btn--primary {
    background: var(--accent);
    color: #0c2218;
    box-shadow: 0 12px 26px rgba(156, 194, 73, .32);
}

.btn--primary:hover {
    box-shadow: 0 16px 40px rgba(156, 194, 73, .42);
}

.btn--ghost {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border-color: rgba(255, 255, 255, .32);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, .20);
}

.btn--block {
    width: 100%;
}

.btn--lg {
    padding: 14px 22px;
    border-radius: var(--radius-lg);
}

.shop-head__wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
}

/* tamanho correto do ícone */
.shop-head__wa svg {
    width: 18px;
    /* 👈 tamanho ideal */
    height: 18px;
    flex: 0 0 18px;
    fill: #fff;
    /* verde WhatsApp */
    display: block;
}

/* opcional: efeito hover */
.shop-head__wa:hover svg {
    transform: scale(1.06);
}


/* -------------------------------------------------------------------------- */
/*  5) Header / Navegação                                                      */
/* -------------------------------------------------------------------------- */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(27, 70, 76, .12);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 18px;
}

.brand--img {
    display: flex;
    align-items: center;
}

.brand__img {
    height: 34px;
    width: auto;
    display: block;
}

/* marca antiga (mantém caso use no mission) */
.brand__mark {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0) 55%),
        conic-gradient(from 210deg, var(--accent), #dfeaa8, var(--brand));
    box-shadow: 0 10px 26px rgba(0, 0, 0, .12);
}

.brand__mark--lg {
    width: 56px;
    height: 56px;
}

.nav {
    display: flex;
    gap: 22px;
    align-items: center;
    font-weight: 500;
    color: rgba(27, 70, 76, .86);
}

.nav a {
    padding: 10px 10px;
    border-radius: var(--radius-sm);
}

.nav a:hover {
    background: rgba(156, 194, 73, .14);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hamburger */
.icon-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(27, 70, 76, .18);
    background: #fff;
    cursor: pointer;
}

.icon-btn span {
    display: block;
    height: 2px;
    width: 20px;
    background: var(--brand);
    margin: 5px auto;
    border-radius: 999px;
}

/* Mobile nav */
.mobile-nav {
    border-top: 1px solid rgba(27, 70, 76, .10);
    padding: 12px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav a {
    padding: 12px 12px;
    border-radius: var(--radius-md);
    background: rgba(27, 70, 76, .06);
}

.mobile-nav__cta {
    margin-top: 6px;
}

/* WhatsApp icon button */
.wa-fab {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(27, 70, 76, .12);
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.wa-fab svg {
    width: 33px;
    height: 33px;
    fill: #25D366;
}

/* -------------------------------------------------------------------------- */
/*  6) HERO SHOP (banner / slider premium)                                     */
/* -------------------------------------------------------------------------- */
/* ==============================
   HERO SHOP — BASE
================================= */

.hero-shop {
    background: #fff;
    padding: 18px 0 0;
}

.hero-shop__inner {
    padding-bottom: 12px;
}

.hero-shop__slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(27, 70, 76, .10);
    box-shadow: var(--shadow);
    background: #fff;
}

/* ==============================
   SLIDER / TRACK
================================= */

.hero-shop__viewport {
    overflow: hidden;
}

.hero-shop__track {
    display: flex;
    transition: transform .35s ease;
    will-change: transform;
}

.hero-shop__slide {
    min-width: 100%;
    position: relative;
    background: #fff;
}

/* ==============================
   IMAGEM
================================= */

.hero-shop__image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.hero-shop__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    /* controla a transparência */
    z-index: 1;
}

.hero-shop__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ==============================
   HERO SHOP — OVERLAY ESTILO PRINT
================================= */

.hero-shop__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    /* sem gradiente forte — o destaque é a caixa */
    background: transparent;
}

/* wrapper do texto */
.hero-shop__copy {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    max-width: 980px;
}

/* badge pequeno em cima */
.hero-shop__badge {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white);
    background: var(--brand);
    padding: 6px 12px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
}

/* headline com caixa escura translúcida */
.hero-shop__copy h1 {
    margin: 0;
    color: #fff;
    font-weight: 600;
    /* menos pesado */
    line-height: 1.15;
    /* mais elegante */
    font-size: clamp(22px, 3vw, 38px);
    /* ↓ menor e responsivo */
    max-width: 880px;

    background: rgba(156, 194, 73, 0.8);
    /* verde da marca */
    /* color: var(--brand); */
    padding: 14px 18px;
    /* ↓ menos padding */
    border-radius: 6px;
    text-shadow: 0 8px 22px rgba(0, 0, 0, .35);
}


/* opcional: subtítulo em caixa menor */
.hero-shop__copy p {
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: clamp(14px, 1.8vw, 18px);
    max-width: 760px;

    background: rgba(18, 51, 56, 0.55);
    padding: 12px 16px;
    border-radius: 6px;
}

/* mobile */
@media (max-width: 980px) {
    .hero-shop__overlay {
        padding: 18px;
    }

    .hero-shop__copy {
        max-width: 92vw;
    }

    .hero-shop__copy h1 {
        padding: 14px 14px;
        border-radius: 6px;
    }

    .hero-shop__badge {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* ==============================
   HERO SHOP — CTAs
================================= */

.hero-shop__actions {
    display: flex;
    gap: 14px;
    margin-top: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

/* base do botão */
.hero-shop .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 44px;
    padding: 0 22px;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all .25s ease;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .25);
}

/* CTA principal */
.hero-shop .btn--primary {
    background: var(--accent);
    color: var(--brand);
    border: 1px solid rgba(0, 0, 0, .12);
}

.hero-shop .btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, .35);
}

/* CTA secundário */
.hero-shop .btn--outline {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .45);
    backdrop-filter: blur(4px);
}

.hero-shop .btn--outline:hover {
    background: rgba(255, 255, 255, .22);
}


@media (max-width: 640px) {
    .hero-shop__actions {
        gap: 10px;
    }

    .hero-shop .btn {
        min-width: 100%;
    }
}


/* ==============================
   NAVEGAÇÃO
================================= */

.hero-shop__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(0, 0, 0, .35);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 3;
}

.hero-shop__nav:hover {
    background: rgba(0, 0, 0, .46);
}

.hero-shop__nav--prev {
    left: 12px;
}

.hero-shop__nav--next {
    right: 12px;
}

/* ==============================
   DOTS
================================= */

.hero-shop__dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(255, 255, 255, .28);
}

.hero-dot.is-active {
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(156, 194, 73, .22);
}

/* ==============================
   RESPONSIVO
================================= */

@media (max-width: 980px) {
    .hero-shop__image {
        height: 280px;
    }

    .hero-shop__overlay {
        padding: 24px;
        background: rgba(0, 0, 0, 0.45);
    }

    .hero-shop__copy h1::after {
        height: 10px;
        bottom: 4px;
    }
}

/* ========================================================================== */
/* HERO SHOP — RESPONSIVO MOBILE (override)                                    */
/* Cole no FINAL do CSS                                                       */
/* ========================================================================== */

/* Ajuste geral de respiro em telas menores */
@media (max-width: 980px) {
    .hero-shop {
        padding-top: 12px;
    }

    .hero-shop__inner {
        padding-bottom: 10px;
    }

    .hero-shop__slider {
        border-radius: var(--radius);
    }

    .hero-shop__image {
        height: clamp(220px, 48vw, 320px);
    }

    /* overlay mais consistente (sem escurecer demais) */
    .hero-shop__overlay {
        padding: 18px;
        padding-top: calc(14px + env(safe-area-inset-top));
        padding-bottom: calc(14px + env(safe-area-inset-bottom));
        align-items: flex-end;
        /* joga o texto mais pra baixo, estilo banner */
    }

    .hero-shop__copy {
        max-width: 92vw;
        gap: 10px;
    }

    .hero-shop__badge {
        font-size: 10px;
        padding: 6px 10px;
        letter-spacing: .14em;
    }

    .hero-shop__copy h1 {
        font-size: clamp(18px, 5.2vw, 28px);
        line-height: 1.12;
        padding: 12px 14px;
        border-radius: 6px;
        max-width: 100%;
    }

    .hero-shop__copy p {
        font-size: clamp(13px, 3.8vw, 16px);
        line-height: 1.35;
        padding: 10px 12px;
        max-width: 100%;
    }

    /* Setas: menores + não colidem com o texto */
    .hero-shop__nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 46%;
    }

    .hero-shop__nav--prev {
        left: 10px;
    }

    .hero-shop__nav--next {
        right: 10px;
    }

    /* Dots um pouco mais pra cima (pra não ficar colado na borda) */
    .hero-shop__dots {
        bottom: 10px;
        gap: 7px;
    }
}

/* Mobile de verdade */
@media (max-width: 640px) {
    .hero-shop__image {
        height: clamp(200px, 62vw, 300px);
    }

    /* Texto mais “compacto” e legível */
    .hero-shop__overlay {
        padding: 14px;
        align-items: flex-end;
    }

    .hero-shop__copy {
        gap: 8px;
    }

    .hero-shop__copy h1 {
        font-size: clamp(17px, 5.6vw, 24px);
        padding: 10px 12px;
    }

    .hero-shop__copy p {
        font-size: clamp(12.5px, 4vw, 15px);
        padding: 9px 11px;
    }

    /* CTAs: 100% e com toque melhor */
    .hero-shop__actions {
        margin-top: 12px;
        gap: 10px;
        width: 100%;
    }

    .hero-shop .btn {
        width: 100%;
        min-width: 100%;
        height: 46px;
        padding: 0 16px;
        font-size: 14px;
    }

    /* Setas menores ainda e com área de toque boa */
    .hero-shop__nav {
        width: 36px;
        height: 36px;
        font-size: 18px;
        opacity: .92;
    }

    /* Dots um pouco maiores pra toque */
    .hero-dot {
        width: 9px;
        height: 9px;
    }
}

/* Telas bem pequenas (ex: 360px) */
@media (max-width: 420px) {
    .hero-shop__overlay {
        padding: 12px;
    }

    .hero-shop__copy h1 {
        font-size: 16px;
    }

    .hero-shop__copy p {
        font-size: 12.5px;
    }

    .hero-shop__nav--prev {
        left: 8px;
    }

    .hero-shop__nav--next {
        right: 8px;
    }

    .hero-shop__dots {
        bottom: 8px;
    }
}

/* Preferência: reduz animações se o usuário pedir */
@media (prefers-reduced-motion: reduce) {
    .hero-shop__track {
        transition: none;
    }
}



/* -------------------------------------------------------------------------- */
/*  7) Categorias (ícones)                                                     */
/* -------------------------------------------------------------------------- */
.cats {
    padding: 18px 0 26px;
}

.cats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: #fff;
    border: 1px solid rgba(27, 70, 76, .10);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 18px;
}

.cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 10px;
    border-radius: var(--radius-md);
    transition: transform .12s ease, background .12s ease;
}

.cat:hover {
    background: rgba(27, 70, 76, .04);
    transform: translateY(-1px);
}

.cat__icon {
    width: 74px;
    height: 74px;
    /* já tem */
    min-height: 74px;
    /* 🔒 garante altura */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
}

.cat__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(2);
    /* melhor que scale(2) */
}

.cat__label {
    min-height: 32px;
    /* 🔒 altura padrão */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    line-height: 1.1;
}

/* -------------------------------------------------------------------------- */
/*  8) Seções base                                                             */
/* -------------------------------------------------------------------------- */
.section {
    padding: 52px 0;
}

/* (mantém para compatibilidade com partes antigas, se existirem) */
.section__head {
    text-align: center;
    margin-bottom: 28px;
}

.section__head h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3vw, 38px);
    color: var(--brand);
}

.section__head p {
    margin: 0 auto;
    max-width: 720px;
    color: var(--muted);
}

/* -------------------------------------------------------------------------- */
/*  BILHETERIA (Parksnet) — ATUALIZADO (overlay hover + pulse pills)          */
/* -------------------------------------------------------------------------- */
.bilheteria {
    padding: 34px 0 18px;
    background: #fff;
}

.bilheteria__wrap {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: stretch;

    border: 1px solid rgba(27, 70, 76, .12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    background: #fff;
}

.bilheteria__left {
    padding: 20px;
    background:
        radial-gradient(900px 300px at 20% 0%, rgba(156, 194, 73, .16), rgba(156, 194, 73, 0) 60%),
        #fff;
}

.bilheteria__badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(27, 70, 76, .14);
    background: rgba(27, 70, 76, .05);
    color: rgba(18, 51, 56, .92);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .02em;
}

.bilheteria__title {
    margin: 10px 0 8px;
    color: var(--brand);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
}

.bilheteria__text {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
}

.bilheteria__actions {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bilheteria__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-weight: 800;
    letter-spacing: .02em;
    border: 1px solid transparent;
    transition: transform .12s ease, opacity .12s ease, background .12s ease, box-shadow .12s ease;
}

.bilheteria__btn:active {
    transform: translateY(1px);
}

.bilheteria__btn--primary {
    background: var(--accent);
    color: #0c2218;
    box-shadow: 0 12px 26px rgba(156, 194, 73, .30);
}

.bilheteria__btn--primary:hover {
    opacity: .96;
    box-shadow: 0 16px 40px rgba(156, 194, 73, .38);
}

.bilheteria__btn--ghost {
    background: rgba(27, 70, 76, .06);
    border-color: rgba(27, 70, 76, .14);
    color: rgba(18, 51, 56, .92);
}

.bilheteria__btn--ghost:hover {
    background: rgba(27, 70, 76, .09);
}

/* pills */
.bilheteria__meta {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bilheteria__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(27, 70, 76, .12);
    background: rgba(27, 70, 76, .05);
    color: rgba(18, 51, 56, .92);
    font-weight: 800;
    font-size: 12px;
}

.bilheteria__pill i {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(156, 194, 73, .18);
}

/* preview (direita) */
.bilheteria__right {
    background: rgba(27, 70, 76, .03);
    padding: 14px;
    display: flex;
}

.bilheteria__preview {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(27, 70, 76, .12);
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 310px;
}

.bilheteria__previewTop {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(27, 70, 76, .05);
    border-bottom: 1px solid rgba(27, 70, 76, .10);
}

.bilheteria__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(27, 70, 76, .25);
}

.bilheteria__previewLabel {
    margin-left: 6px;
    font-weight: 800;
    font-size: 12px;
    color: rgba(18, 51, 56, .75);
}

/* iframe wrapper p/ overlay */
.bilheteria__iframeWrap {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 260px;
    background: #fff;
}

/* iframe */
.bilheteria__frame {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
    display: block;
}

/* OVERLAY (hover em cima do iframe) */
.bilheteria__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(27, 70, 76, .55);
    backdrop-filter: blur(2px);

    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
    text-align: center;
}

.bilheteria__overlayBox {
    background: #fff;
    color: var(--brand);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(27, 70, 76, .12);
}

.bilheteria__overlayBox strong {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .01em;
}

.bilheteria__overlayBox span {
    font-size: 13px;
    opacity: .8;
    font-weight: 600;
}

/* hover ativa overlay */
.bilheteria__iframeWrap:hover .bilheteria__overlay {
    opacity: 1;
    pointer-events: auto;
}

/* feedback visual no preview */
.bilheteria__iframeWrap:hover .bilheteria__frame {
    filter: blur(1px);
}

/* fallback */
.bilheteria__fallback {
    display: none;
    padding: 16px;
    gap: 10px;
    flex-direction: column;
}

.bilheteria__fallback p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

/* Se o iframe não carregar, você pode forçar o fallback com uma classe */
.bilheteria__preview.is-fallback .bilheteria__iframeWrap {
    display: none;
}

.bilheteria__preview.is-fallback .bilheteria__fallback {
    display: flex;
}

/* Responsivo */
@media (max-width: 980px) {
    .bilheteria__wrap {
        grid-template-columns: 1fr;
    }

    .bilheteria__right {
        padding: 12px;
    }

    .bilheteria__preview {
        min-height: 260px;
    }
}

/* -------------------------------------------------------------------------- */
/*  PILL PULSE (suave + stagger)                                               */
/* -------------------------------------------------------------------------- */
@keyframes pillPulse {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-1px) scale(1.02);
    }
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(156, 194, 73, .18);
    }

    50% {
        transform: scale(1.12);
        box-shadow: 0 0 0 8px rgba(156, 194, 73, .10);
    }
}

.bilheteria__pill {
    position: relative;
    animation: pillPulse 1.8s ease-in-out infinite;
    will-change: transform;
}

.bilheteria__pill i {
    animation: dotPulse 1.4s ease-in-out infinite;
    will-change: transform, box-shadow;
}

/* stagger */
.bilheteria__pill:nth-child(1) {
    animation-delay: 0s;
}

.bilheteria__pill:nth-child(2) {
    animation-delay: .18s;
}

.bilheteria__pill:nth-child(3) {
    animation-delay: .36s;
}

.bilheteria__pill:nth-child(1) i {
    animation-delay: 0s;
}

.bilheteria__pill:nth-child(2) i {
    animation-delay: .18s;
}

.bilheteria__pill:nth-child(3) i {
    animation-delay: .36s;
}

/* acessibilidade */
@media (prefers-reduced-motion: reduce) {

    .bilheteria__pill,
    .bilheteria__pill i {
        animation: none !important;
    }
}



/* -------------------------------------------------------------------------- */
/*  9) Cabeçalho de seção “loja”                                               */
/* -------------------------------------------------------------------------- */
.shop-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.shop-head--simple .shop-head__right {
    display: none;
}

.shop-head__left {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

#turismo .shop-head__title{
    color: #fff;
}

.shop-head__title {
    margin: 0;
    font-size: 22px;
    color: var(--brand);
    font-weight: 600;
}

.shop-head__link {
    font-weight: 700;
    color: rgba(27, 70, 76, .80);
    font-size: 13px;
    letter-spacing: .02em;
}

.shop-head__link:hover {
    text-decoration: underline;
}

.shop-head__wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    background: #22c55e;
    color: #fff;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 12px 26px rgba(34, 197, 94, .25);
}

.shop-head__wa:hover {
    opacity: .96;
}

.shop-head__wa-icon {
    filter: grayscale(1) brightness(10);
    font-size: 14px;
}

/* -------------------------------------------------------------------------- */
/*  10) Grid de produtos (cards verticais)                                     */
/* -------------------------------------------------------------------------- */
.products-grid {
    display: grid;
    gap: 18px;
}

.products-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.products-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    background: #fff;
    border: 1px solid rgba(27, 70, 76, .10);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card__media {
    overflow: hidden;
    /* já tem, mantém */
}

/* base */
.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    /* tire o 1.01 e deixe 1 */
    transition: transform .25s ease;
    /* animação suave */
    will-change: transform;
}

/* hover: zoom */
.product-card:hover .product-card__media img {
    transform: scale(1.08);
    /* ajuste: 1.05 a 1.12 */
}


.product-card__body {
    padding: 14px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-card__title {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
    color: rgba(18, 51, 56, .92);
    font-weight: 700;
    min-height: 38px;
}

.product-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.product-card__price span {
    color: rgba(27, 70, 76, .70);
    font-weight: 700;
    font-size: 12px;
}

.product-card__price strong {
    color: #0F3B44;
    font-weight: 500;
    font-size: 18px;
}

/* ação inferior, estilo “barra” */
.product-card__action {
    margin-top: auto;
    padding: 12px 14px;
    text-align: center;
    font-weight: 500;
    letter-spacing: .02em;
    color: #0c2218;
    background: var(--accent);
    border-top: 1px solid rgba(0, 0, 0, .05);
}

.product-card__action:hover {
    opacity: .96;
}

#turismo {
    background-color: var(--brand);
}

/* -------------------------------------------------------------------------- */
/*  11) Produtos Destacados (faixa escura)                                     */
/* -------------------------------------------------------------------------- */
.featured {
    background: var(--white);
    /* faixa escura semelhante ao print */
    padding: 52px 0;
}

.featured-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.featured-head h2 {
    margin: 0;
    color: var(--brand);
    font-weight: 600;
    font-size: 22px;
}

.featured-head a {
    color: rgba(255, 255, 255, .88);
    font-weight: 600;
    font-size: 13px;
}

.featured-head a:hover {
    text-decoration: underline;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.featured-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
    display: flex;
    flex-direction: column;
}

.featured-card__media {
    height: 155px;
    overflow: hidden;
    background: rgba(255, 255, 255, .04);
}

.featured-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
    transform: scale(1);
}

.featured-card:hover .featured-card__media img {
    transform: scale(1.08);
}


.featured-card__body {
    padding: 14px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.featured-card__body h3 {
    margin: 0;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
    color: rgba(18, 51, 56, .92);
    min-height: 36px;
}

.featured-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.featured-card__price span {
    color: rgba(27, 70, 76, .70);
    font-weight: 700;
    font-size: 12px;
}

.featured-card__price strong {
    color: #0F3B44;
    font-weight: 500;
    font-size: 18px;
}

.featured-card__action {
    margin-top: auto;
    padding: 12px 14px;
    text-align: center;
    font-weight: 500;
    letter-spacing: .02em;
    color: #0c2218;
    background: var(--accent);
    border-top: 1px solid rgba(0, 0, 0, .05);
}

.featured-card__action:hover {
    opacity: .96;
}

/* -------------------------------------------------------------------------- */
/*  12) Lista horizontal (Passeios Privativos / Coletivos)                      */
/* -------------------------------------------------------------------------- */
.section-list {
    padding: 52px 0;
    background: #fff;
}

.list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.list-card {
    background: #fff;
    border: 1px solid rgba(27, 70, 76, .10);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    align-items: stretch;
}

.list-card__media {
    height: 100%;
    min-height: 98px;
    overflow: hidden;
    background: rgba(27, 70, 76, .04);
}

.list-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-card__body {
    padding: 14px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.list-card__body h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: rgba(18, 51, 56, .92);
}

.list-card__price {
    display: flex;
    gap: 8px;
    align-items: baseline;
}

.list-card__price span {
    color: rgba(27, 70, 76, .70);
    font-weight: 700;
    font-size: 12px;
}

.list-card__price strong {
    color: #0F3B44;
    font-weight: 500;
    font-size: 18px;
}

.list-card__action {
    display: grid;
    place-items: center;
    padding: 0 16px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .02em;
    background: rgba(27, 70, 76, .05);
    border-left: 1px solid rgba(27, 70, 76, .10);
    min-width: 160px;
    text-align: center;
}

.list-card__action:hover {
    background: rgba(156, 194, 73, .20);
}

/* -------------------------------------------------------------------------- */
/*  AVALIAÇÕES — Card estilo Google (print)                                    */
/* -------------------------------------------------------------------------- */
.g-reviews{
    padding: 52px 0;
    background: #fff;
  }
  
  .g-reviews__head{
    text-align: center;
    margin-bottom: 18px;
  }
  
  .g-reviews__title{
    margin: 0 0 6px;
    color: var(--brand);
    font-weight: 700;
    font-size: clamp(22px, 2.6vw, 34px);
  }
  
  .g-reviews__sub{
    margin: 0 auto;
    max-width: 720px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 500;
  }
  
  .g-reviews__grid{
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
  }
  
  /* o card do print: bem arredondado, sombra suave e padding generoso */
  .g-review{
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(27, 70, 76, .10);
    box-shadow: 0 14px 40px rgba(0,0,0,.10);
    padding: 18px 18px 16px;
  }
  
  /* topo: avatar + nome + tempo */
  .g-review__top{
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .g-review__avatar{
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid rgba(27, 70, 76, .10);
    flex: 0 0 44px;
  }
  
  /* fallback: iniciais */
  .g-review__avatar--initials{
    display: grid;
    place-items: center;
    background: rgba(27, 70, 76, .08);
    color: rgba(18, 51, 56, .85);
    font-weight: 800;
    font-size: 13px;
  }
  
  .g-review__name{
    font-weight: 800;
    color: rgba(18, 51, 56, .92);
    font-size: 14px;
    line-height: 1.1;
  }
  
  .g-review__time{
    margin-top: 3px;
    color: rgba(18, 51, 56, .60);
    font-weight: 600;
    font-size: 12px;
  }
  
  /* estrelas: amarelo estilo Google */
  .g-review__stars{
    display: inline-flex;
    gap: 4px;
    margin: 2px 0 10px;
  }
  
  .g-review__stars i{
    width: 16px;
    height: 16px;
    background: #fbbc04; /* amarelo Google */
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    border-radius: 2px;
  }
  
  /* texto truncado como no print */
  .g-review__text{
    margin: 0;
    color: rgba(18, 51, 56, .78);
    line-height: 1.55;
    font-weight: 500;
  
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* 3 linhas com "..." */
    overflow: hidden;
  }
  
  /* “Ler mais” cinza, sem cara de botão */
  .g-review__more{
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(18, 51, 56, .55);
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
  }
  
  .g-review__more:hover{
    color: rgba(18, 51, 56, .78);
    text-decoration: underline;
  }
  
  /* rodapé com “Google” azul como no print */
  .g-review__foot{
    margin-top: 14px;
  }
  
  .g-review__google{
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -.02em;
    color: #4285F4;
  }
  
  /* responsivo */
  @media (max-width: 980px){
    .g-reviews__grid{
      grid-template-columns: 1fr;
    }
    .g-review{
      border-radius: 20px;
    }
  }
  

/* ==============================
   FAQ BAND (igual ao print)
================================= */
/* FAQ e Footer com mesma cor (brand) e separação SEM borda */
.faq-band {
    position: relative;
    background: var(--brand);
    padding: 84px 0;
    padding-bottom: 110px;
}

.faq-band__inner {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 42px;
    align-items: center;
}

.faq-band__title {
    margin: 0 0 18px;
    color: #fff;
    font-weight: 600;
    font-size: clamp(28px, 3.2vw, 44px);
    letter-spacing: .01em;
}

/* lista */
.faq-band__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.faq-band__item {
    color: #fff;
}

.faq-band__q {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    text-align: left;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.35;
}

.faq-band__chev {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    font-weight: 500;
    transform: translateY(-1px);
    opacity: .95;
}

/* painel (resposta) */
.faq-band .panel {
    padding: 10px 0 0 30px;
}

.faq-band .panel p {
    margin: 0;
    color: rgba(255, 255, 255, .92);
    line-height: 1.65;
    font-weight: 500;
    max-width: 620px;
}

/* CTA direita */
.faq-band__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
}

.faq-band__wa {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-wa-icon {
    width: 30px;
    height: 30px;
    fill: #fff;
}


.faq-band__ctaTitle {
    margin: 0;
    color: #fff;
    font-weight: 500;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.05;
}

.faq-band__ctaBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 26px;
    border-radius: 6px;
    /* mais quadrado (igual print) */
    background: #22c55e;
    /* verde botão */
    color: #fff;
    font-weight: 500;
    letter-spacing: .02em;
    border: 1px solid rgba(0, 0, 0, .10);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
    transition: transform .12s ease, opacity .12s ease;
}

.faq-band__ctaBtn:hover {
    opacity: .96;
    transform: translateY(-1px);
}

.faq-band__ctaIcon {
    font-size: 14px;
    transform: translateY(1px);
}

/* ==============================
   FOOTER BAR (igual ao print)
================================= */
.footer-bar {
    position: relative;
    background: var(--brand);
    color: rgba(255, 255, 255, .92);
    padding: 46px 0;
    padding-top: 70px;
    border-top: 0;
    /* remove sua borda */
}

.footer-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 14px;
}

.footer-bar__left {
    text-align: center;
    /* igual ao print (mais central) */
    font-weight: 600;
    font-size: 13px;
}

.footer-bar__right {
    text-align: right;
    font-weight: 600;
    font-size: 13px;
}

.footer-bar__right a {
    color: #F39A16;
    /* detalhe laranja no “Desenvolvido por” */
    font-weight: 500;
    text-decoration: none;
}

.footer-bar__right a:hover {
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 980px) {
    .faq-band__inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .faq-band__right {
        align-items: flex-start;
    }

    .footer-bar__inner {
        grid-template-columns: 1fr;
    }

    .footer-bar__right {
        text-align: center;
    }

    .cat__icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transform: scale(4.5);
        /* melhor que scale(2) */
    }

}

@media (max-width: 980px) {
    .hero-shop .btn {
        width: auto;
        /* tira o 100% */
        min-width: 180px;
        /* largura mínima controlada */
        height: 44px;
        padding: 0 18px;
        font-size: 14px;
    }
}