/* =====================================================
   NOVAS ÁREAS — PATROCINADORES, LOJINHA E INGRESSOS
   Arquivo isolado para não interferir no CSS existente.
   ===================================================== */

/* ------------------------------
   HOME: PATROCINADORES
   ------------------------------ */
.home-patrocinadores *, #view-store *, .pagina-ingressos * {
    font-family: var(--fonte-textos);
}

.home-patrocinadores {
    margin: -86px 0 108px;
    padding: 0 24px;
    overflow: hidden;
}

.home-patrocinadores-cabecalho {
    margin-bottom: 18px;
}

.home-patrocinadores-etiqueta, .secao-etiqueta, .loja-etiqueta {
    display: inline-block;
    margin-bottom: 9px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--cor-texto);
}

.home-patrocinadores h2 {
    max-width: 330px;
    color: #fff;
    font-size: 24px;
    line-height: 1.08;
}

.marquee-patrocinadores {
    width: calc(100% + 48px);
    margin-left: -24px;
    overflow: hidden;
    position: relative;
    cursor: grab;
    touch-action: pan-y pinch-zoom;
    overscroll-behavior-x: contain;
    user-select: none;
    -webkit-user-select: none;
}

.marquee-patrocinadores.arrastando {
    cursor: grabbing;
}

.marquee-patrocinadores::before,
.marquee-patrocinadores::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 34px;
    pointer-events: none;
}

.marquee-patrocinadores::before {
    left: 0;
    background: linear-gradient(90deg, var(--cor-fundo-app), transparent);
}

.marquee-patrocinadores::after {
    right: 0;
    background: linear-gradient(-90deg, var(--cor-fundo-app), transparent);
}

.marquee-patrocinadores-faixa {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    padding: 6px 24px 10px;
    animation: mover-faixa-marcas 28s linear infinite;
}

.marquee-patrocinadores.carrossel-interativo .marquee-patrocinadores-faixa {
    animation: none;
    will-change: transform;
}

@media (hover: hover) {
    .marquee-patrocinadores:hover .marquee-patrocinadores-faixa {
        animation-play-state: paused;
    }
}


.marca-patrocinador {
    width: auto;
    height: 100px;
    padding: 0;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.marca-patrocinador,
.patrocinador-link {
    color: inherit;
    text-decoration: none;
}

.marca-patrocinador[href],
.patrocinador-link[href] {
    cursor: pointer;
}

.marca-patrocinador[href]:focus-visible,
.patrocinador-link[href]:focus-visible {
    outline: 2px solid var(--cor-secundaria);
    outline-offset: 5px;
}

.marca-patrocinador img {
    width: auto;
    height: 100px;
    max-width: 190px;
    max-height: 100px;
    display: block;
    object-fit: contain;
    pointer-events: none;
    -webkit-user-drag: none;
}
@keyframes mover-faixa-marcas {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ------------------------------
   LOJINHA: VIEW INTERNA
   ------------------------------ */
#view-store {
    padding: 96px 24px 112px;
}

.loja-cabecalho {
    max-width: 360px;
    margin: 0 auto 30px;
    text-align: center;
}

.loja-cabecalho h2 {
    margin-bottom: 9px;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.6px;
}


.loja-titulo-grafico img {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.loja-cabecalho h2 b {
    font-weight: 800;
}

.loja-cabecalho p {
    margin-left: auto;
    margin-right: auto;
}


.loja-frase {
    margin-bottom: 14px;
    color: #fff;
    font-size: 19px;
    font-weight: 300;
    line-height: 1.25;
}

.loja-frase b {
    font-weight: 800;
}

.loja-descricao {
    max-width: 310px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.5;
}

.loja-grade {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 14px;
}

.produto-card {
    min-width: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.produto-imagem {
    position: relative;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1;
    padding: 0;
    border-radius: 14px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #b1beaa, #809acd);
}

.produto-imagem-camiseta {
    background: linear-gradient(135deg, rgba(128, 154, 205, 0.95), rgba(240, 120, 44, 0.92));
}

.produto-imagem-ecobag {
    background: linear-gradient(135deg, #e7d6bc, #b1beaa);
}

.produto-imagem-copo {
    background: linear-gradient(135deg, #809acd, #bfcce8);
}

.produto-imagem-stickers {
    background: linear-gradient(135deg, #f0782c, #f0b65c);
}

.produto-selo {
    position: absolute;
    z-index: 2;
    top: 8px;
    left: 8px;
    padding: 5px 7px;
    border-radius: 999px;
    background: var(--cor-primaria);
    color: #fff;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.produto-selo-esgotado {
    background: var(--cor-secundaria);
    box-shadow: 0 5px 12px rgba(13, 55, 43, 0.2);
    font-size: 8px;
}

.produto-foto {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.produto-conteudo {
    padding: 9px 2px 0;
}


.produto-conteudo::before {
    content: "XVI SEMAU";
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.produto-conteudo h3 {
    margin-bottom: 5px;
    color: #fff;
    font-size: 14px;
    line-height: 1.18;
}

.produto-conteudo p {
    display: none;
}

.produto-rodape {
    display: block;
}

.produto-rodape strong {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 500;
}

.produto-rodape span {
    display: none;
}

.loja-aviso {
    width: min(100%, 360px);
    margin: 30px auto 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.loja-compra-etiqueta {
    padding: 4px 7px 8px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.loja-opcao-compra {
    min-height: 54px;
    padding: 9px 7px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.loja-opcao-presencial {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.loja-opcao-icone {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: rgba(240, 120, 44, 0.12);
    color: var(--cor-secundaria);
}

.loja-opcao-icone i {
    color: inherit;
    font-size: 18px;
}

.loja-opcao-texto {
    min-width: 0;
    display: grid;
    gap: 2px;
    flex: 1 1 auto;
}

.loja-opcao-texto strong {
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.loja-opcao-texto small {
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    line-height: 1.2;
}

.loja-whatsapp-btn {
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.loja-whatsapp-btn .loja-opcao-icone {
    background: rgba(177, 190, 170, 0.12);
    color: #b1beaa;
}

.loja-opcao-seta {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.38);
    font-size: 16px;
}

.loja-whatsapp-btn:active {
    transform: scale(0.985);
    background: rgba(255, 255, 255, 0.05);
}

.loja-whatsapp-btn:focus-visible {
    outline: 2px solid var(--cor-secundaria);
    outline-offset: 2px;
}
.loja-estado {
    min-height: 340px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.loja-estado-carregando {
    display: flex;
    color: rgba(255, 255, 255, 0.58);
}

.loja-estado-carregando i { margin-bottom: 12px; color: var(--cor-secundaria); font-size: 28px; }
.loja-estado-carregando p { font-size: 13px; }

.loja-em-breve {
    position: relative;
    min-height: 390px;
    padding: 40px 24px;
    overflow: hidden;
}

.loja-em-breve img {
    width: 105px;
    margin-bottom: 35px;
    transform: rotate(-7deg);
}
.loja-em-breve span { margin-bottom: 8px; color: var(--cor-secundaria); font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.loja-em-breve h3 { margin: 0 0 10px; color: #fff; font-size: 32px; line-height: 1; }
.loja-em-breve p { max-width: 250px; margin: 0; color: rgba(255, 255, 255, 0.66); font-size: 14px; line-height: 1.5; }

/* ------------------------------
   LANDING PAGE DE INGRESSOS
   ------------------------------ */
#app-container.pagina-ingressos {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--cor-eixo-cidade);
}

.ingressos-voltar {
    position: relative;
    z-index: 20;
    width: fit-content;
    margin: 22px 24px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.ingressos-voltar i {
    font-size: 18px;
}

.ingressos-hero {
    min-height: calc(100svh - 48px);
    padding: 70px 34px 210px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ingressos-logo {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 250px;
    height: auto;
}

.ingressos-tema {
    position: relative;
    z-index: 3;
    margin: 18px 0 38px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-weight: 300;
}

.ingressos-tema strong {
    font-weight: 800;
}

.ingressos-hero h1 {
    position: relative;
    z-index: 3;
    max-width: 340px;
    margin-bottom: 16px;
    color: #fff;
    font-size: 36px;
    line-height: 1.04;
    letter-spacing: -0.8px;
}

.ingressos-intro {
    position: relative;
    z-index: 3;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.5;
}

.ingressos-cta,
.ingressos-voltar-topo {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 250px;
    min-height: 75px;
    margin: 28px auto 0;
    border: none;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cor-secundaria);
    -webkit-mask: url('../assets/svg/bg-credencial.svg') center / 100% 100% no-repeat;
    mask: url('../assets/svg/bg-credencial.svg') center / 100% 100% no-repeat;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: none;
}

.ingresso-sticker {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(2px 5px 8px rgba(0, 0, 0, 0.22));
}

.ingresso-sticker-1 { bottom: -26px; left: -18px; width: 118px; transform: rotate(-13deg); }
.ingresso-sticker-2 { bottom: 18px; right: -18px; width: 112px; transform: rotate(10deg); }
.ingresso-sticker-3 { bottom: -38px; left: 47%; width: 102px; transform: rotate(7deg); }
.ingresso-sticker-4 { bottom: -18px; left: 25%; width: 96px; transform: rotate(-9deg); }
.ingresso-sticker-5 {
    bottom: -62px;
    left: 5%;
    width: 95px;
    transform: rotate(14deg);
}
.ingresso-sticker-6 { bottom: -36px; right: 5%; width: 100px; transform: rotate(-10deg); }
.ingresso-sticker-7 { bottom: 92px; left: 42%; width: 60px; transform: rotate(14deg); }
.ingresso-sticker-8 {
    bottom: 62px;
    right: 23%;
    width: 76px;
    transform: rotate(-8deg);
}

.ingressos-conteudo {
    width: 100%;
    padding: 0 60px;
    text-align: center;
}

.ingressos-beneficios {
    padding: 50px 0 25px;
    background: var(--cor-texto);
    color: var(--cor-primaria);
}

.texto-correndo {
    margin-bottom: 40px;
    overflow: hidden;
    white-space: nowrap;
}

.texto-correndo > div {
    width: max-content;
    color: var(--cor-texto-escuro);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1px;
    animation: mover-texto 17s linear infinite;
}

@keyframes mover-texto {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.beneficio-card {
    margin-bottom: 46px;
    background: transparent;
    text-align: center;
}

.beneficio-foto {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    background-color: #d9ddd8;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.beneficio-foto-1 { background-image: url('../assets/img/beneficio1.png'); }
.beneficio-foto-2 { background-image: url('../assets/img/beneficio2.png'); }
.beneficio-foto-3 { background-image: url('../assets/img/beneficio3.png'); }


.beneficio-foto img {
    position: absolute;
    z-index: 2;
    right: -10px;
    bottom: -20px;
    width: 76px;
    max-height: 92px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.2));
    transform: rotate(-7deg);
}

.beneficio-foto-2 img { right: auto; left: -8px; transform: rotate(7deg); }
.beneficio-foto-3 img { transform: rotate(-8deg); }

.beneficio-card h2 {
    margin: 28px 12px 8px;
    color: var(--cor-primaria);
    font-size: 26px;
}

.beneficio-card p {
    max-width: 310px;
    margin: 0 auto;
    color: #5e645f;
    font-size: 16px;
    line-height: 1.5;
}

.ingressos-palestrantes {
    padding: 50px 0 40px;
    background: linear-gradient(135deg, #b1beaa, #6f9584);
}

.ingressos-palestrantes h2, .ingressos-patrocinadores h2 {
    margin-bottom: 12px;
    color: var(--cor-texto);
    font-size: 32px;
    line-height: 1.02;
}

.ingressos-palestrantes .ingressos-conteudo > p, .ingressos-patrocinadores .ingressos-conteudo > p {
    color: var(--cor-texto);
    font-size: 14px;
    line-height: 1.55;
}

.palestrantes-marquee {
    margin-top: 6px;
    overflow: hidden;
}

.palestrantes-faixa {
    display: flex;
    gap: 15px;
    width: max-content;
    padding: 8px 24px 12px;
    animation: mover-palestrantes 38s linear infinite;
}

.palestrantes-faixa.sem-palestrantes {
    width: 100%;
    min-height: 235px;
    align-items: center;
    justify-content: center;
    animation: none;
}

.palestrantes-em-breve {
    width: min(250px, 62vw);
    padding: 42px 26px;
}

.palestrantes-em-breve img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes mover-palestrantes {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.palestrante-mini {
    flex: 0 0 225px;
    padding: 15px;
    text-align: center;
}

.palestrante-mini img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 20px;
    display: block;
}

.palestrante-mini h3 {
    margin-bottom: 8px;
    color: var(--cor-texto);
    font-size: 25px;
    line-height: 0.98;
}

.palestrante-mini p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.35;
}

.ingressos-kit {
    overflow: hidden;
    padding: 48px 0 0;
    background: var(--cor-texto);
    color: var(--cor-primaria);
    text-align: center;
}

.ingressos-kit-cabecalho {
    padding: 0 34px;
}

.ingressos-kit-titulo-grafico {
    width: min(45%, 310px);
    margin: 0 auto 15px;
    line-height: 0;
}

.ingressos-kit-titulo-grafico img {
    display: block;
    width: 100%;
    height: auto;
}

.ingressos-kit p {
    max-width: 240px;
    margin: 0 auto;
    color: #656a65;
    font-size: 15px;
    line-height: 1.5;
}

.ingressos-kit-imagem {
    display: block;
    width: 100%;
    height: auto;
    margin: -55px 0 0;
}

.ingressos-planos {
    padding: 42px 0 56px;
    background: var(--cor-texto);
    color: var(--cor-primaria);
}

.secao-etiqueta.escura {
    color: rgba(13, 55, 43, 0.55);
}

.ingressos-planos h2 {
    margin-bottom: 12px;
    color: var(--cor-primaria);
    font-size: 32px;
    line-height: 1.02;
}

.planos-intro {
    max-width: 320px;
    margin: 0 auto;
    color: #656a65;
    font-size: 14px;
    line-height: 1.5;
}

.lotes-lista {
    margin: 24px 0 34px;
    border-bottom: 1px solid rgba(13, 55, 43, 0.16);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.lote-card {
    min-width: 0;
    padding: 8px 4px 11px;
    border: 0;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    text-align: center;
}

.lote-card > div {
    display: block;
}

.lote-card strong {
    color: var(--cor-primaria);
    font-size: 14px;
    line-height: 1;
}

.lote-card span {
    display: none;
}

.lote-card b {
    padding: 0;
    background: transparent;
    color: #929792;
    font-size: 9px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.lote-ativo {
    border-bottom-color: var(--cor-primaria);
    background: transparent;
    box-shadow: none;
}

.lote-inativo {
    opacity: .46;
}

.planos-grade {
    display: grid;
    gap: 30px;
}

.plano-card {
    position: relative;
    overflow: visible;
    padding: 24px;
    border: 1px solid rgba(13, 55, 43, 0.16);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(13, 55, 43, 0.08);
}

.plano-destaque {
    border-color: rgba(13, 55, 43, 0.22);
    background: #e3e9e2;
    box-shadow: 0 16px 34px rgba(13, 55, 43, 0.12);
}


.plano-card::before {
    display: none;
}

.plano-destaque::before {
    display: none;
}

.plano-selo {
    position: relative;
    z-index: 3;
    width: fit-content;
    margin-bottom: 18px;
    padding: 7px 11px;
    border-radius: 999px;
    display: block;
    background: var(--cor-primaria);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plano-destaque .plano-topo h3,
.plano-destaque .plano-preco strong {
    color: var(--cor-primaria);
}

.plano-destaque .plano-preco span {
    color: #687068;
}

.plano-destaque li {
    color: #465047;
}

.plano-destaque li i {
    color: var(--cor-secundaria);
}

.plano-destaque .plano-botao {
    background: var(--cor-primaria);
}


.plano-sticker {
    position: absolute;
    z-index: 2;
    display: block;
    pointer-events: none;
    filter: drop-shadow(0 7px 8px rgba(0, 0, 0, 0.18));
}

.plano-sticker-1 {
    top: -38px;
    right: -10px;
    width: 72px;
    transform: rotate(11deg);
}

.plano-sticker-2 {
    bottom: 44px;
    left: -59px;
    width: 89px;
    transform: rotate(-10deg);
}

.plano-sticker-3 {
    right: -21px;
    bottom: -36px;
    width: 77px;
    transform: rotate(22deg);
    z-index: 4;
}

.plano-topo {
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.plano-topo h3 {
    color: var(--cor-primaria);
    font-size: 28px;
    line-height: .98;
}

.plano-preco {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.plano-preco strong {
    color: #111;
    font-size: 35px;
    line-height: .95;
}

.plano-preco span {
    margin-top: 5px;
    color: #777;
    font-size: 11px;
}

.plano-card ul {
    position: relative;
    z-index: 3;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px;
    list-style: none;
}

.plano-card li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #4f5550;
    font-size: 13px;
    text-align: left;
}

.plano-card li i {
    flex: 0 0 auto;
    color: var(--cor-secundaria);
    font-size: 16px;
}

.plano-botao {
    position: relative;
    z-index: 3;
    width: 100%;
    margin-top: 21px;
    border-radius: 18px;
    background: var(--cor-primaria);
    color: #fff;
}

.plano-botao:disabled {
    opacity: .52;
    cursor: not-allowed;
    filter: saturate(.35);
}

.compra-aviso {
    min-height: 22px;
    margin-top: 18px;
    color: var(--cor-secundaria);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}

.ingressos-patrocinadores {
    padding: 50px 0 50px;
    background: var(--cor-eixo-cidade);
}

.patrocinadores-mosaico {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.patrocinadores-mosaico .patrocinador-link {
    min-height: 112px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.patrocinadores-mosaico img {
    width: 100%;
    height: 96px;
    display: block;
    object-fit: contain;
}
.ingressos-rodape {
    padding: 30px 24px 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--cor-eixo-cidade);
    text-align: center;
}

.ingressos-rodape-assinatura {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ingressos-rodape-assinatura span {
    margin: 0 5px;
    color: var(--cor-secundaria);
}

.ingressos-rodape-acoes {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ingressos-rodape .ingressos-cta,
.ingressos-rodape .ingressos-voltar-topo {
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 11px 17px;
    border-radius: 999px;
    -webkit-mask: none;
    mask: none;
    font-size: 13px;
    line-height: 1;
}

.ingressos-rodape .ingressos-cta {
    background: var(--cor-secundaria);
    color: #fff;
}

.ingressos-rodape .ingressos-voltar-topo {
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: transparent;
    color: #fff;
}

.ingressos-rodape .ingressos-voltar-topo i {
    font-size: 14px;
}

@media (min-width: 420px) {
    .patrocinadores-mosaico {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-patrocinadores-faixa,
    .texto-correndo > div,
    .palestrantes-faixa {
        animation-play-state: paused;
    }

    html {
        scroll-behavior: auto;
    }
}

.lote-ativo b { color: var(--cor-primaria); }


.plano-kit { background: #edf1ec; }


.home-patrocinadores-cabecalho {
    text-align: center;
}

.home-patrocinadores-cabecalho h2 {
    margin-left: auto;
    margin-right: auto;
}
/* ------------------------------
   HOME: INSTALAÇÃO DO APLICATIVO
   ------------------------------ */
.app-install-card[hidden], .app-install-ios[hidden] { display: none !important; }
.app-install-card { margin: -62px 24px 112px; padding: 17px; display: grid; grid-template-columns: 48px minmax(0, 1fr); align-items: center; gap: 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; background: rgba(255,255,255,.085); color: var(--cor-texto); box-shadow: 0 10px 26px rgba(0,0,0,.09); }
.app-install-icon { width: 48px; height: 48px; overflow: hidden; display: grid; place-items: center; border-radius: 15px; background: #fff; }
.app-install-icon img { width: 100%; height: 100%; display: block; object-fit: cover; }
.app-install-copy { min-width: 0; text-align: left; }
.app-install-copy > span { display: block; margin-bottom: 3px; color: var(--cor-eixo-rua); font-size: 10px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; }
.app-install-copy h2 { margin: 0 0 4px; color: #fff; font-size: 18px; line-height: 1.12; }
.app-install-copy p { max-width: 265px; margin: 0; color: rgba(255,255,255,.78); font-size: 12px; line-height: 1.4; }
.btn-instalar-app { grid-column: 1 / -1; width: 100%; min-height: 56px; margin-top: 3px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 2px solid var(--cor-eixo-rua); border-radius: 999px; background: transparent; color: #fff; font-family: var(--fonte-textos); font-size: 13px; font-weight: 800; cursor: pointer; }
.btn-instalar-app i { color: var(--cor-eixo-rua); font-size: 18px; }
.btn-instalar-app:hover, .btn-instalar-app:focus-visible { background: var(--cor-eixo-rua); color: var(--cor-primaria); outline: 3px solid rgba(255,255,255,.7); outline-offset: 3px; }
.btn-instalar-app:hover i, .btn-instalar-app:focus-visible i { color: var(--cor-primaria); }
.btn-instalar-app:active { transform: scale(.98); }
.app-install-ios { grid-column: 1 / -1; margin: 3px 2px 0; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.86); font-size: 12px; line-height: 1.5; text-align: center; }

/* ------------------------------
   LOJINHA: GALERIA DOS PRODUTOS
   ------------------------------ */
.produto-card {
    padding: 0;
    border: 0;
    appearance: none;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease;
}

.produto-card:active {
    transform: scale(.98);
}

.produto-card:focus-visible {
    outline: 2px solid var(--cor-secundaria);
    outline-offset: 5px;
}

.produto-imagem-baralho {
    background: linear-gradient(135deg, #809acd, #b1beaa);
}

.produto-card-sem-imagem {
    cursor: default;
}

.produto-card-sem-imagem:active {
    transform: none;
}

.produto-imagem-vazia {
    border: 1px dashed rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.045);
}

.produto-imagem-pendente {
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.produto-galeria-aberta {
    position: fixed;
    left: 0;
    width: 100%;
    overflow: hidden;
    overscroll-behavior: none;
}

.produto-galeria-modal[hidden] {
    display: none !important;
}

.produto-galeria-modal {
    position: fixed;
    z-index: 2200;
    inset: 0;
    padding: max(24px, env(safe-area-inset-top)) 24px max(24px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .78);
    opacity: 0;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: opacity .22s ease;
    touch-action: none;
}

.produto-galeria-modal.aberto {
    opacity: 1;
}

.produto-galeria-janela {
    position: relative;
    width: min(84vw, 380px);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 16px;
    background: #101010;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
    opacity: 0;
    transform: translateY(10px) scale(.985);
    transition: opacity .25s ease, transform .25s ease;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
}

.produto-galeria-modal.aberto .produto-galeria-janela {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.produto-galeria-janela:active {
    cursor: grabbing;
}

.produto-galeria-trilha {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform .42s cubic-bezier(.22, .72, .18, 1);
    will-change: transform;
}

.produto-galeria-trilha.sem-animacao {
    transition: none;
}

.produto-galeria-slide {
    width: 100%;
    height: 100%;
    min-width: 100%;
    margin: 0;
    flex: 0 0 100%;
    overflow: hidden;
    background: #171717;
}

.produto-galeria-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
}

.produto-galeria-pontos {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .45));
}

.produto-galeria-ponto {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .5);
    transition: width .24s ease, background-color .24s ease;
}

.produto-galeria-ponto.ativo {
    width: 20px;
    background: #fff;
}

@media (max-height: 620px) {
    .produto-galeria-janela {
        width: min(68vh, 330px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .produto-card,
    .produto-galeria-modal,
    .produto-galeria-janela,
    .produto-galeria-trilha,
    .produto-galeria-ponto {
        transition-duration: .01ms !important;
    }
}
