@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

:root {
    --bs-font-family-titles: 'Roboto', sans-serif;
    --bs-font-family-text: 'Open Sans', sans-serif;
    --bs-primary: #8e0006; /* Vermelho rubro */
    --bs-secondary: #ffc107; /* Amarelo */
    --bs-light: #F8F9FA; /* Branco Off-White */
    --bs-dark: #1B1B1B; /* Preto-Ebony */
    --lm-surface: #1f2428;
    --lm-surface-strong: #111417;
    --lm-border: rgba(255, 255, 255, 0.16);
    --lm-muted: #c3cad3;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.label-floating-dark {
    background-color: #212529; /* mesmo tom de bg-dark */
    color: white;
    padding: 0 .25rem;
}

/* Aplicando a fonte Open Sans globalmente no body */
body {
    font-family: var(--bs-font-family-text);
    background-color: #000000;
    color: var(--bs-light);
    margin: 0; /* Centraliza o conteúdo horizontalmente */
    padding: 0px; /* Adiciona um espaçamento nas laterais para telas menores */
    box-sizing: border-box; /* Inclui padding e border dentro da largura total */
    position: fixed;
    width: 100%;
    max-width: 100vw;
    height: 100%;
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    touch-action: pan-y; /* Impede o scroll horizontal */
}



/* Mantenha os botões em grupos de botões alinhados corretamente */
.btn-group > .btn {
    position: relative;
    flex: 1 1 auto;
}

label,
.form-label,
.form-check-label {
    color: var(--bs-light);
}

.bg-dark label,
.card.bg-dark label,
.card.bg-dark .form-label,
.card.bg-dark .form-check-label {
    color: var(--bs-light);
}

p {
    color: var(--bs-light);
}

dt, dl {
    color: var(--bs-light);
}

nav-item {
    color: var(--bs-secondary);
}

/* Limitando o conteúdo */
#conteudoPrincipal {
    max-width: min(850px, 100vw); /* Largura máxima */
    width: 100%; /* Responsividade: usa toda a largura disponível */
    min-width: 0;
    box-sizing: border-box; /* Inclui padding e borda dentro da largura total */
    margin: 0 auto; /* Centraliza horizontalmente */
}

.default-layout,
.default-layout .page,
.default-layout main,
.default-layout main > .d-flex {
    min-width: 0;
    width: 100%;
    max-width: 100vw;
}

.app-breadcrumbs {
    width: min(100%, 850px);
    margin: 0 auto;
    padding: 10px 12px 0;
}

.app-breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: none;
}

.app-breadcrumbs ol::-webkit-scrollbar {
    display: none;
}

.app-breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--lm-muted);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.app-breadcrumbs li + li::before {
    content: "/";
    color: rgba(255, 193, 7, 0.55);
}

.app-breadcrumbs a {
    color: var(--bs-secondary);
    text-decoration: none;
}

.app-breadcrumbs span {
    color: var(--bs-light);
}

@media (min-width: 768px) {
    .app-breadcrumbs {
        padding: 14px 0 0;
    }
}

/* Botões */
.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

/* Linhas divisórias */
hr {
    color: var(--bs-light);
}

.filters-container > .filter {
    margin: 3px;
}

.fab-container {
    position: fixed;
    bottom: 30px; /* distância do rodapé */
    right: 30px; /* distância da lateral direita */
    z-index: 9999; /* garantir que fique acima de outros elementos */
}

.fab-btn {
    background-color: var(--bs-dark); /* fundo preto */
    color: var(--bs-light); /* ícone / texto branco */
    border: none;
    border-radius: 50%; /* arredonda totalmente */
    width: 56px;
    height: 56px; /* define tamanho do botão */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    cursor: pointer;
}

    /* Efeito de hover se quiser */
    .fab-btn:hover {
        background-color: #333;
    }

/* Classe personalizada para sobrescrever o estilo padrão da paginação */
.pagination-transparent .page-link {
    /* Fundo transparente */
    background-color: transparent !important;
    /* Borda no tom do btn-secondary (#6c757d) */
    border-color: #6c757d !important;
    /* Texto também no tom do btn-secondary */
    color: #6c757d !important;
}

    /* Quando o cursor passa sobre o link */
    .pagination-transparent .page-link:hover {
        background-color: #6c757d !important;
        color: #ffffff !important;
    }

/* Estado ativo (página atual) */
.pagination-transparent .page-item.active .page-link {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
}

/* Responsividade */
@media (max-width: 576px) {
    .card {
        width: calc(100% - 16px);
    }
}

/* Aplicando Roboto em todos os h1, h2, h3, h4, h5, h6 */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--bs-font-family-titles);
    color: var(--bs-light); /* Branco Off-White */
}

/* Links */
a {
    font-family: var(--bs-font-family-text);
    color: var(--bs-secondary);
}

    a:hover {
        color: #ff3300;
        text-decoration: underline;
    }

/* Botões */
.btn {
    font-family: var(--bs-font-family-text);
}

/* Esconde até 800px de largura */
@media (max-width: 800px) {
    .show-larger-800 {
        display: none !important;
    }
}

/* Exibe acima de 800px de largura */
@media (min-width: 801px) {
    .show-larger-800 {
        display: flex !important;
    }
}

.page-size-chooser {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

    .page-size-chooser select {
        margin: 0 1rem;
        padding: 0.25rem 0.5rem;
    }

.delete-confirmation {
    width: min(100%, 980px);
    margin: 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: #111417;
    color: #f6f7f8;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.delete-confirmation__header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.delete-confirmation__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 8px;
    background: rgba(220, 53, 69, 0.16);
    color: #ff6b7a;
    font-size: 1.35rem;
}

.delete-confirmation__eyebrow {
    margin: 0 0 4px;
    color: #ffb3bc;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.delete-confirmation h1 {
    margin: 0;
    font-size: 1.9rem;
}

.delete-confirmation__header p:last-child {
    margin: 8px 0 0;
    color: #c3cad3;
}

.delete-confirmation__alert {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 193, 7, 0.28);
    border-radius: 8px;
    background: rgba(255, 193, 7, 0.08);
    color: #ffe08a;
    font-weight: 700;
}

.delete-confirmation__details {
    margin-top: 18px;
}

.delete-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.delete-summary-grid > div {
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.delete-summary-grid__wide {
    grid-column: 1 / -1;
}

.delete-summary-grid span {
    display: block;
    margin-bottom: 4px;
    color: #8993a0;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.delete-summary-grid strong {
    display: block;
    color: #f7f8fa;
    font-size: 0.98rem;
    overflow-wrap: anywhere;
}

.delete-confirmation__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

/* Muda a cor de fundo e a cor do texto dos botões do paginador */
.grid-paginator .pagination button {
    background-color: #007bff; /* Cor de fundo desejada */
    color: white; /* Cor do texto */
}

/* Se houver links (anchor tags), você também pode estilizar especificamente */
.grid-paginator .pagination a {
    color: #fff; /* Exemplo de cor de link */
}

.breadcrumb {
    background-color: transparent; /* Fundo transparente */
    padding: 0; /* Remove espaçamento extra */
}

.breadcrumb-item {
    color: #f5f5f5; /* Branco fosco para melhor legibilidade */
}

    .breadcrumb-item a {
        color: var(--bs-secondary); /* Dourado para destaque nos links */
        text-decoration: none; /* Remove o sublinhado */
    }

        .breadcrumb-item a:hover {
            text-decoration: underline; /* Adiciona sublinhado ao passar o mouse */
            color: #ffd700; /* Amarelo mais claro no hover */
        }

    .breadcrumb-item::before {
        color: #f5f5f5; /* Branco fosco para o separador ("/") */
        content: ""; /* Define o separador */
    }

    .breadcrumb-item.active {
        color: #aaaaaa; /* Cinza claro para o item ativo */
        font-weight: bold; /* Negrito para destacar o ativo */
    }

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.col-title-text {
    color: var(--bs-light);
}

.text-muted {
    color: var(--lm-text-muted, #aeb6c1) !important;
}

.nav-container a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    padding: 0.25rem 0;
    color: #ccc;
    /* cor base para abas não ativas */
    position: relative;
    font-size: 0.875rem;
    /* opcional, texto menor */
}

    /* Linha vertical dividindo as abas (exceto a última) */
    .nav-container a:not(:last-child) {
        border-right: 1px solid #666;
    }

    /* Aba ativa: remove qualquer cor de fundo e aplica cor primária no texto/ícone */
    .nav-container a.active-tab {
        background-color: transparent;
        /* ou 'inherit' para herdar do nav */
        color: var(--bs-secondary) !important;
    }

.home-main {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
}

.app-legal-footer {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 850px;
    margin: 32px auto 0;
    padding: 18px 20px 0;
    color: rgba(217, 221, 227, 0.82);
    text-align: center;
}

.app-legal-footer__brand strong {
    color: #fff;
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.app-legal-footer__brand p,
.app-legal-footer__company {
    color: rgba(174, 182, 194, 0.82);
    font-size: 0.78rem;
    line-height: 1.45;
    margin: 0;
}

.app-legal-footer__links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    justify-content: center;
}

.app-legal-footer__links a,
.app-legal-footer__links button,
.app-legal-footer__company a {
    color: var(--bs-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
}

.app-legal-footer__links button {
    background: transparent;
    border: 0;
    padding: 0;
}

.app-legal-footer__links a:hover,
.app-legal-footer__links button:hover,
.app-legal-footer__company a:hover {
    color: #ffd65a;
    text-decoration: underline;
}

.app-legal-footer__company {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    justify-content: center;
}

.app-legal-footer__company span:not(:last-of-type)::after {
    color: #68717d;
    content: "";
}

.category-card {
    /* Torna cada card “clicável” se desejar */
    cursor: pointer;
    border-radius: 8px;
    height: 140px; /* Altura aproximada para exibição em grid */
    background-size: cover; /* Ajuste da imagem */
    background-position: center;
    position: relative;
    overflow: hidden; /* Para recortar o overlay e o texto se ultrapassar */
}

/* Overlay escuro translúcido para destacar o texto */
.category-overlay {
    position: absolute;
    inset: 0; /* top, right, bottom, left: 0 */
    background-color: rgba(0, 0, 0, 0.4);
}

/* Título sobreposto na parte inferior do card, máx. de 2 linhas */
.category-title {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    color: #fff;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    /* Limita a 2 linhas */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* máximo de 2 linhas */
    overflow: hidden;
    text-overflow: ellipsis;
}

.icon-scroll-container {
    white-space: nowrap; /* habilita scroll horizontal */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.icon-box {
    display: inline-block; /* itens lado a lado */
    width: 80px; /* largura padrão de cada box */
    margin-right: 1rem; /* espaçamento horizontal */
    text-align: center;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 0.5rem auto; /* centraliza e adiciona margem abaixo */
}

    .icon-circle i {
        font-size: 1.2rem; /* Tamanho do ícone */
    }

/* Degradê para o fundo do texto */
.carousel-overlay {
    position: absolute;
    top: 0; /* Começa no topo da imagem */
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0)); /* Ajusta o degradê */
    color: #fff;
    z-index: 1;
    text-align: left;
    display: flex; /* Garante que o conteúdo seja posicionado corretamente */
    flex-direction: column; /* Organiza o conteúdo verticalmente */
    justify-content: flex-end; /* Mantém o texto na parte inferior */
    padding: 00px; /* Adiciona espaço ao redor do texto */
}

/* Ajuste do texto sobreposto */
.carousel-text {
    position: relative;
    z-index: 3;
}

    .carousel-text h3 {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .carousel-text p {
        font-size: 0.9rem;
        margin: 0;
    }

.event-info, .event-location {
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Ajuste para imagens do carousel */
.carousel-inner img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top; /* Mantém a imagem cobrindo o container, posicionada a partir do topo */
}

/* Ajuste para manter o carrossel responsivo */
.carousel-inner {
    position: relative;
}

.skeleton-block,
.skeleton-line,
.skeleton-carousel-indicators span {
    background: linear-gradient(90deg, #181818 0%, #2b2b2b 42%, #3a3324 50%, #2b2b2b 58%, #181818 100%);
    background-size: 220% 100%;
    animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

.home-carousel-skeleton {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 193, 7, 0.12);
    border-radius: 10px;
    background: #101010;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.35);
}

.skeleton-carousel-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 220px;
}

.skeleton-carousel-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px 18px 28px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0));
}

.skeleton-line {
    height: 12px;
    border-radius: 999px;
}

.skeleton-title-line {
    width: min(62%, 420px);
    height: 28px;
    margin-bottom: 14px;
}

.skeleton-text-line {
    width: min(48%, 330px);
    height: 14px;
    margin-bottom: 16px;
}

.skeleton-meta-line {
    width: min(36%, 260px);
    margin-bottom: 10px;
}

.skeleton-meta-line-short {
    width: min(46%, 310px);
    margin-bottom: 0;
}

.skeleton-carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 7px;
}

.skeleton-carousel-indicators span {
    width: 26px;
    height: 3px;
    border-radius: 999px;
}

.skeleton-chip {
    width: 76px;
    height: 28px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 193, 7, 0.14);
}

.skeleton-product-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: #121212;
}

.skeleton-product-image {
    width: 100%;
    height: 180px;
}

.skeleton-product-body {
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
}

.skeleton-product-title {
    width: 76%;
    height: 16px;
    margin-bottom: 12px;
}

.skeleton-product-text {
    width: 100%;
    height: 11px;
    margin-bottom: 8px;
}

.skeleton-product-text-short {
    width: 66%;
}

.skeleton-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.skeleton-product-button {
    width: 72px;
    height: 28px;
}

.skeleton-product-count {
    width: 58px;
    height: 10px;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 120% 0;
    }

    100% {
        background-position: -120% 0;
    }
}

@media (max-width: 576px) {
    .skeleton-carousel-image {
        min-height: 190px;
    }

    .skeleton-carousel-overlay {
        padding: 18px 14px 24px;
    }

    .skeleton-title-line {
        width: 78%;
        height: 24px;
    }

    .skeleton-text-line,
    .skeleton-meta-line,
    .skeleton-meta-line-short {
        width: 72%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .skeleton-block,
    .skeleton-line,
    .skeleton-carousel-indicators span {
        animation: none;
    }
}

.offline-container {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    display: none; /* Inicialmente oculto */
}

.offline-icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: #dc3545;
}

.privacy-consent-banner {
    position: fixed;
    right: 16px;
    bottom: 84px;
    left: 16px;
    z-index: 10000;
    max-width: 820px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid rgba(255, 193, 7, 0.24);
    border-radius: 8px;
    background: rgba(18, 18, 18, 0.96);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
}

.privacy-consent-banner strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
}

.privacy-consent-banner p {
    margin: 0 0 4px;
    font-size: 0.9rem;
    line-height: 1.35;
}

.privacy-consent-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

@media (max-width: 576px) {
    .privacy-consent-banner {
        align-items: stretch;
        left: 12px;
        right: 12px;
        bottom: 82px;
        flex-direction: column;
        gap: 12px;
        max-height: calc(100vh - 112px);
        overflow: auto;
        padding: 14px;
    }

    .privacy-consent-actions {
        flex-direction: column;
        width: 100%;
        min-width: 0;
    }

    .privacy-consent-actions .btn {
        flex: 0 0 auto;
        min-width: 0;
        width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
        padding-left: 8px;
        padding-right: 8px;
    }

    .app-legal-footer {
        gap: 10px;
        margin-top: 28px;
        padding: 16px 14px 0;
    }

    .app-legal-footer__links {
        justify-content: center;
    }

    .app-legal-footer__company {
        display: flex;
    }

    .home-main {
        padding-bottom: calc(96px + env(safe-area-inset-bottom));
    }
}

/* Estilo para o Paywall */
.paywall-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.5s ease-in-out;
}

.paywall-logo {
    margin-bottom: 20px;
    max-width: 150px;
}

.paywall-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.paywall-description {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 500px;
}

.paywall-button {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6b6b 0%, #d62976 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(214, 41, 118, 0.4);
}

    .paywall-button:hover {
        transform: scale(1.05);
    }

.paywall-login {
    color: #ff6b6b;
    text-decoration: none;
    font-size: 14px;
}

    .paywall-login:hover {
        text-decoration: underline;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.map-header {
    margin-bottom: 20px;
}

.map-title {
    font-family: var(--bs-font-family-titles);
    color: var(--bs-light);
    margin-bottom: 10px;
    font-size: 32px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.map-description {
    color: #cccccc;
    font-size: 16px;
    max-width: 800px;
    line-height: 1.5;
}

.map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

#map {
    height: 500px;
    width: 100%;
    border-radius: 10px;
}

.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(26, 26, 26, 0.85);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
}

.legend-count {
    font-size: 13px;
    color: #aaaaaa;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .map-title {
        font-size: 24px;
    }

    .map-description {
        font-size: 14px;
    }

    .map-legend {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
    }
}


.membership-cta-card {
    background: rgba(27, 27, 27, 0.9);
    border-radius: 0;
    padding: 30px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    position: relative;
    border-left: none;
    overflow: hidden;
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8e0006 0%, #cb7b1b 100%);
    margin: 0 auto 20px auto;
    box-shadow: none;
}

    .cta-icon i {
        font-size: 32px;
        color: #F8F9FA;
    }

.cta-content {
    text-align: center;
}

    .cta-content h3 {
        font-family: 'Roboto', sans-serif;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #F8F9FA;
    }

    .cta-content p {
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        color: #F8F9FA;
        margin-bottom: 20px;
        line-height: 1.5;
    }

.cta-benefits {
    font-weight: 600;
    margin-bottom: 5px !important;
}

.cta-content ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: center;
}

    .cta-content ul li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 0;
        color: #F8F9FA;
        font-family: 'Open Sans', sans-serif;
        font-size: 15px;
    }

        .cta-content ul li::before {
            content: "✓";
            color: #cb7b1b;
            font-weight: bold;
            margin-right: 8px;
        }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-primary {
    background-color: #8e0006; /* Vermelho rubro */
    border-color: #8e0006;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #7c0005;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(142, 0, 6, 0.3);
    }

.btn-outline-secondary {
    border-color: #ffc107; /* Amarelo */
    color: #ffc107;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

    .btn-outline-secondary:hover {
        background-color: #ffc107;
        color: #F8F9FA;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
    }

/* Removendo o efeito de curva decorativa no card */
.membership-cta-card::after {
    display: none;
}

@media (min-width: 768px) {
    .membership-cta-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 40px;
    }

    .cta-icon {
        margin: 0 30px 0 0;
    }

    .cta-content {
        text-align: left;
    }

        .cta-content ul {
            text-align: left;
        }

    .cta-buttons {
        justify-content: flex-start;
    }
}


.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

.map-header {
    margin-bottom: 20px;
}

.map-title {
    font-family: var(--bs-font-family-orelega);
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 32px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.map-description {
    color: #cccccc;
    font-size: 16px;
    max-width: 800px;
    line-height: 1.5;
}

/* Layout do mapa e lista lateral */
.map-layout {
    display: flex;
    gap: 15px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Estilo da barra lateral */
.map-sidebar {
    width: 300px;
    background-color: rgba(26, 26, 26, 0.9);
    border-radius: 10px 0 0 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sidebar-header {
    padding: 15px;
    background-color: rgba(40, 40, 40, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h5 {
    margin: 0;
    color: #ff6b6b;
    font-size: 18px;
}

.locais-lista {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.local-item {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    background-color: rgba(50, 50, 50, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.local-item:hover {
    background-color: rgba(80, 80, 80, 0.7);
    transform: translateY(-2px);
}

.local-nome {
    color: white;
    font-weight: 500;
}

.distancia {
    color: #ff6b6b;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

/* Estilo do mapa */
.map-wrapper {
    flex: 1;
    position: relative;
    border-radius: 0 12px 12px 0;
    overflow: hidden;
}

#map {
    height: 100%;
    width: 100%;
}

/* Responsividade */
@media (max-width: 768px) {
    .map-layout {
        flex-direction: column;
        height: auto;
    }

    .map-sidebar {
        width: 100%;
        border-radius: 10px 10px 0 0;
        max-height: 200px;
    }

    .map-wrapper {
        border-radius: 0 0 10px 10px;
        height: 400px;
    }
}

/* Estilos existentes */
.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(26, 26, 26, 0.85);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
}

.legend-count {
    font-size: 13px;
    color: #aaaaaa;
    margin-top: 2px;
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

.map-header {
    margin-bottom: 20px;
}

.map-title {
    font-family: var(--bs-font-family-orelega);
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 32px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.map-description {
    color: #cccccc;
    font-size: 16px;
    max-width: 800px;
    line-height: 1.5;
}

.map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

#map {
    height: 500px;
    width: 100%;
    border-radius: 10px;
}

.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(26, 26, 26, 0.85);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
}

.legend-count {
    font-size: 13px;
    color: #aaaaaa;
    margin-top: 2px;
}

/* Base Styles */
.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.checkout-header {
    margin-bottom: 1.5rem;
}

.checkout-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.checkout-header p {
    margin-bottom: 1rem;
    color: #666;
}

.back-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #007bff;
    font-weight: 500;
    transition: color 0.3s;
}

.back-link:hover {
    color: #0056b3;
}

/* Content Styles */
.checkout-content {
    display: grid;
    grid-gap: 1.5rem;
}

@media (min-width: 992px) {
    .checkout-content {
        grid-template-columns: 3fr 1fr;
    }
}

/* Summary Styles */
.checkout-summary {
    background-color: #212529;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 1.5rem;
    color: #fff;
}

.checkout-summary h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.75rem;
}

/* Product List Styles */
.produto-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkout-selection-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #ced4da;
}

.select-all-vouchers {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-weight: 600;
    cursor: pointer;
}

.select-all-vouchers input,
.produto-select input {
    width: 1.15rem;
    height: 1.15rem;
    accent-color: #198754;
    cursor: pointer;
}

.selected-count {
    font-size: 0.9rem;
    color: #adb5bd;
    text-align: right;
}

.produto-card {
    display: grid;
    grid-template-columns: auto 100px 1fr;
    gap: 1rem;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.produto-card-selected {
    border-color: rgba(25, 135, 84, 0.55);
    background-color: rgba(25, 135, 84, 0.12);
}

.produto-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.produto-select {
    display: flex;
    align-items: center;
    align-self: stretch;
    margin: 0;
}

.produto-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-thumb {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    border-radius: 6px;
}

.produto-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.produto-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-details {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-original {
    font-size: 0.875rem;
    text-decoration: line-through;
    color: #adb5bd;
}

.price-promotional {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discount-badge {
    background-color: #28a745;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.action-buttons {
    margin-top: 0.5rem;
}

/* Alert Styles */
.alert-card {
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.success-card {
    background-color: #212529;
    color: #fff;
    border-left: 5px solid #28a745;
}

.error-card {
    background-color: #212529;
    color: #fff;
    border-left: 5px solid #dc3545;
}

.alert-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.alert-message {
    background-color: rgba(255,193,7,0.1);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    color: #ffc107;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Empty Cart Styles */
.empty-cart {
    text-align: center;
    padding: 2rem 1rem;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.3);
}

/* Checkout Info Styles */
.checkout-info {
    background-color: #212529;
    border-radius: 12px;
    padding: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.checkout-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

.checkout-info ul {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.checkout-info li {
    margin-bottom: 0.5rem;
    color: #adb5bd;
}

.checkout-info a {
    color: #007bff;
    text-decoration: underline;
    transition: color 0.2s;
}

.checkout-info a:hover {
    color: #0056b3;
}

/* Checkout Actions */
.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.total-label {
    font-size: 1.125rem;
    font-weight: 600;
}

.total-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
}

.checkout-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.checkout-actions .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .checkout-header h2 {
        font-size: 1.5rem;
    }

    .checkout-content {
        grid-template-columns: 1fr;
    }

    .produto-card {
        grid-template-columns: auto 80px 1fr;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .checkout-selection-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.5rem;
    }

    .selected-count {
        text-align: left;
    }

    .produto-details h4 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }

    .price-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .total-value {
        font-size: 1.25rem;
    }

    .checkout-actions {
        justify-content: center;
    }

    .checkout-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animation Classes */
.animate__animated {
    animation-duration: 0.6s;
}

.animate__fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ════════════════════════════════════════════════════════════════════
   LIBERA+ · DESIGN SYSTEM
   Tema escuro premium — rubro (#8e0006) + âmbar (#ffc107).
   Camada adicionada para padronizar a jornada de compra (mobile-first).
   Convenção: componentes/utilitários novos usam o prefixo .lm-.
   Esta camada vem por último no app.css, então sobrescreve a marcação
   legada e o Bootstrap sem precisar de !important (salvo utilitários).
   ════════════════════════════════════════════════════════════════════ */

:root {
    /* Marca */
    --lm-primary: #8e0006;
    --lm-primary-hover: #7a0005;
    --lm-primary-active: #650004;
    --lm-on-primary: #ffffff;
    --lm-accent: #ffc107;
    --lm-accent-hover: #ffcf3f;
    --lm-on-accent: #1b1402;

    /* Superfícies (escuro) */
    --lm-surface: #15171b;
    --lm-surface-2: #1c1f24;
    --lm-surface-3: #23272e;
    --lm-border: rgba(255, 255, 255, 0.10);
    --lm-border-strong: rgba(255, 255, 255, 0.20);

    /* Texto */
    --lm-text: #f4f6f8;
    --lm-text-muted: #aeb6c1;
    --lm-text-subtle: #828b97;

    /* Semântico — sem verde/azul; positivo = âmbar */
    --lm-danger: #e5484d;
    --lm-danger-text: #ff9ca0;
    --lm-danger-surface: rgba(229, 72, 77, 0.12);
    --lm-warning: #ffc107;
    --lm-warning-surface: rgba(255, 193, 7, 0.12);
    --lm-success: #ffc107;
    --lm-success-surface: rgba(255, 193, 7, 0.12);

    /* Raio de borda */
    --lm-radius-xs: 8px;
    --lm-radius-sm: 10px;
    --lm-radius: 14px;
    --lm-radius-lg: 18px;
    --lm-radius-pill: 999px;

    /* Sombras (poucas e suaves) */
    --lm-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.40);
    --lm-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);

    /* Tipografia */
    --lm-fs-xs: 0.75rem;
    --lm-fs-sm: 0.875rem;
    --lm-fs-base: 1rem;
    --lm-fs-lg: 1.125rem;
    --lm-fs-xl: 1.375rem;
    --lm-fs-2xl: 1.75rem;

    --lm-transition: 150ms ease;
    --lm-focus-ring: 0 0 0 3px rgba(255, 193, 7, 0.35);
}

/* ── Tipografia de seção (substitui o gradiente coral herdado) ──────── */
.map-title {
    font-family: var(--bs-font-family-titles);
    display: block;
    margin-bottom: 12px;
    font-size: clamp(1.35rem, 5vw, 1.9rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
    background: none;
    -webkit-background-clip: border-box;
            background-clip: border-box;
    color: var(--lm-text);
    -webkit-text-fill-color: var(--lm-text);
}

.lm-section-subtitle {
    margin: 0 0 16px;
    color: var(--lm-text-muted);
    font-size: var(--lm-fs-sm);
    line-height: 1.5;
}

/* ── Botões — hierarquia clara, bordas suaves, hover calmo ─────────── */
.btn {
    border-radius: var(--lm-radius-sm);
    font-family: var(--bs-font-family-text);
    font-weight: 700;
    transition: background-color var(--lm-transition), border-color var(--lm-transition), color var(--lm-transition), box-shadow var(--lm-transition), opacity var(--lm-transition);
}
.btn:focus-visible { box-shadow: var(--lm-focus-ring); }

/* Primário = rubro (ação principal / comprar / emitir) */
.btn-primary {
    background-color: var(--lm-primary);
    border-color: var(--lm-primary);
    color: var(--lm-on-primary);
    box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--lm-primary-hover);
    border-color: var(--lm-primary-hover);
    color: var(--lm-on-primary);
    transform: none;
    box-shadow: none;
}
.btn-primary:active {
    background-color: var(--lm-primary-active);
    border-color: var(--lm-primary-active);
    color: var(--lm-on-primary);
}
.btn-primary:disabled,
.btn-primary.disabled {
    background-color: var(--lm-primary);
    border-color: var(--lm-primary);
    color: var(--lm-on-primary);
    opacity: 0.5;
}

/* Secundário neutro = fantasma claro */
.btn-outline-light,
.btn-outline-primary {
    background-color: transparent;
    border-color: var(--lm-border-strong);
    color: var(--lm-text);
}
.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--lm-surface-3);
    border-color: var(--lm-border-strong);
    color: var(--lm-text);
}

/* Acento âmbar (realce opcional) */
.btn-accent {
    background-color: var(--lm-accent);
    border-color: var(--lm-accent);
    color: var(--lm-on-accent);
}
.btn-accent:hover,
.btn-accent:focus {
    background-color: var(--lm-accent-hover);
    border-color: var(--lm-accent-hover);
    color: var(--lm-on-accent);
}

/* Perigo / remover */
.btn-danger {
    background-color: var(--lm-danger);
    border-color: var(--lm-danger);
    color: #fff;
}
.btn-danger:hover,
.btn-danger:focus {
    background-color: #c93b40;
    border-color: #c93b40;
    color: #fff;
}
.btn-outline-danger {
    color: var(--lm-danger-text);
    border-color: rgba(229, 72, 77, 0.5);
}
.btn-outline-danger:hover,
.btn-outline-danger:focus {
    background-color: var(--lm-danger);
    border-color: var(--lm-danger);
    color: #fff;
}

.btn-lg { border-radius: var(--lm-radius); }

/* ── Badges / chips ────────────────────────────────────────────────── */
.lm-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 9px;
    border-radius: var(--lm-radius-pill);
    font-size: var(--lm-fs-xs);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}
.lm-badge--accent { background: var(--lm-accent); color: var(--lm-on-accent); }
.lm-badge--soft { background: var(--lm-surface-3); color: var(--lm-text-muted); border: 1px solid var(--lm-border); }
.lm-badge--danger { background: var(--lm-danger-surface); color: var(--lm-danger-text); border: 1px solid rgba(229, 72, 77, 0.3); }

/* Chips de categoria / filtro */
.lm-chip {
    flex-shrink: 0;
    border-radius: var(--lm-radius-pill);
    padding: 6px 14px;
    font-size: var(--lm-fs-sm);
    font-weight: 600;
    white-space: nowrap;
}
.lm-chip.is-active {
    background-color: var(--lm-accent);
    border-color: var(--lm-accent);
    color: var(--lm-on-accent);
}

/* Rótulo de campo */
.lm-label {
    display: block;
    margin-bottom: 6px;
    font-size: var(--lm-fs-sm);
    font-weight: 600;
    color: var(--lm-text-muted);
}

/* ── Preço ─────────────────────────────────────────────────────────── */
.lm-price { display: inline-flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.lm-price__old { font-size: var(--lm-fs-xs); color: var(--lm-text-subtle); text-decoration: line-through; }
.lm-price__now { font-size: var(--lm-fs-base); font-weight: 800; color: var(--lm-text); letter-spacing: -0.01em; }
.lm-price__now--lg { font-size: 1.5rem; }
.lm-price__off {
    padding: 2px 7px;
    border-radius: 6px;
    background: var(--lm-accent);
    color: var(--lm-on-accent);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

/* ── Card de voucher (grade) ───────────────────────────────────────── */
.voucher-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--lm-surface);
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius);
    overflow: hidden;
    color: var(--lm-text);
    cursor: pointer;
    transition: border-color var(--lm-transition), transform var(--lm-transition), box-shadow var(--lm-transition);
}
.voucher-card:hover { border-color: var(--lm-border-strong); transform: translateY(-2px); box-shadow: var(--lm-shadow); }
.voucher-card:focus-visible { outline: none; border-color: var(--lm-accent); box-shadow: var(--lm-focus-ring); }
.voucher-card__media { position: relative; aspect-ratio: 4 / 3; background: var(--lm-surface-3); overflow: hidden; }
.voucher-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.voucher-card__body { display: flex; flex: 1; flex-direction: column; gap: 8px; padding: 12px; }
.voucher-card__title {
    margin: 0;
    font-size: var(--lm-fs-sm);
    font-weight: 700;
    line-height: 1.25;
    color: var(--lm-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.voucher-card__desc {
    margin: 0;
    font-size: var(--lm-fs-xs);
    color: var(--lm-text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.voucher-card__footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.voucher-card__count { font-size: var(--lm-fs-xs); color: var(--lm-text-subtle); white-space: nowrap; }

/* ── Card de voucher (lista horizontal) ────────────────────────────── */
.voucher-row {
    position: relative;
    display: flex;
    background: var(--lm-surface);
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius);
    overflow: hidden;
    color: var(--lm-text);
    margin-bottom: 10px;
    transition: border-color var(--lm-transition);
}
.voucher-row:hover { border-color: var(--lm-border-strong); }
.voucher-row__media { position: relative; flex: 0 0 116px; align-self: stretch; min-height: 124px; background: var(--lm-surface-3); overflow: hidden; }
.voucher-row__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.voucher-row__body { display: flex; flex: 1; min-width: 0; flex-direction: column; gap: 6px; padding: 10px 12px; }
.voucher-row__title { margin: 0; font-size: var(--lm-fs-sm); font-weight: 700; line-height: 1.2; color: var(--lm-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.voucher-row__meta { display: flex; align-items: center; gap: 8px; font-size: var(--lm-fs-xs); color: var(--lm-text-muted); }
.voucher-row__desc { margin: 0; font-size: var(--lm-fs-xs); color: var(--lm-text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.voucher-row__footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; }

/* Botões circulares sobre a mídia do card */
.lm-iconbtn {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--lm-border-strong);
    background: rgba(11, 12, 14, 0.55);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    color: #fff;
    transition: background-color var(--lm-transition), color var(--lm-transition);
}
.lm-iconbtn:hover { background: rgba(11, 12, 14, 0.82); color: #fff; }
.lm-iconbtn:focus-visible { outline: none; box-shadow: var(--lm-focus-ring); }
.lm-iconbtn--fav.is-active { color: var(--lm-accent); }
.lm-iconbtn--danger { color: var(--lm-danger-text); }
.lm-iconbtn--danger:hover { background: var(--lm-danger); color: #fff; }
.lm-iconbtn--tl { top: 10px; left: 10px; }
.lm-iconbtn--tr { top: 8px; right: 8px; }
.lm-iconbtn--br { bottom: 8px; right: 8px; }

/* ── Estados: vazio / erro / sucesso / carregando ──────────────────── */
.lm-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 44px 20px;
}
.lm-state__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 1.85rem;
    background: var(--lm-surface-2);
    border: 1px solid var(--lm-border);
    color: var(--lm-text-muted);
}
.lm-state__title { margin: 0; font-size: var(--lm-fs-lg); font-weight: 800; color: var(--lm-text); }
.lm-state__text { margin: 0; max-width: 42ch; font-size: var(--lm-fs-sm); color: var(--lm-text-muted); line-height: 1.5; }
.lm-state__action { margin-top: 6px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.lm-state--error .lm-state__icon { background: var(--lm-danger-surface); border-color: rgba(229, 72, 77, 0.3); color: var(--lm-danger-text); }
.lm-state--success .lm-state__icon { background: var(--lm-success-surface); border-color: rgba(255, 193, 7, 0.35); color: var(--lm-accent); }

/* ── Spinner de marca ──────────────────────────────────────────────── */
.lm-spinner {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 3px solid var(--lm-border);
    border-top-color: var(--lm-accent);
    animation: lm-spin 0.7s linear infinite;
}
.lm-spinner--sm { width: 1.15rem; height: 1.15rem; border-width: 2px; }
@keyframes lm-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .lm-spinner { animation-duration: 1.6s; } }

/* ── Barra de ação fixa (CTA inferior) ─────────────────────────────── */
.lm-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: var(--lm-surface-strong, #111417);
    border-top: 1px solid var(--lm-border);
}
.lm-action-bar__inner { width: min(100%, 760px); margin: 0 auto; }

/* ── Bottom sheet / diálogo ────────────────────────────────────────── */
.lm-sheet-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.66);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    animation: lm-fade 0.18s ease-out;
}
.lm-sheet {
    width: min(100%, 460px);
    margin-bottom: 76px;
    padding: 20px;
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius-lg);
    background: var(--lm-surface);
    color: var(--lm-text);
    box-shadow: var(--lm-shadow);
    animation: lm-slide-up 0.22s ease-out;
}
.lm-sheet__title { margin: 0 0 4px; font-size: var(--lm-fs-lg); font-weight: 800; }
.lm-sheet__text { margin: 0; font-size: var(--lm-fs-sm); color: var(--lm-text-muted); }
@keyframes lm-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lm-slide-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
    .lm-sheet-backdrop, .lm-sheet { animation: none; }
}

/* Botão de seleção dentro do sheet (ex.: tipo de voucher) */
.lm-choice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius);
    background: var(--lm-surface-2);
    color: var(--lm-text);
    font-weight: 600;
    text-align: left;
    transition: border-color var(--lm-transition), background-color var(--lm-transition);
}
.lm-choice:hover,
.lm-choice:focus-visible { border-color: var(--lm-accent); background: var(--lm-surface-3); color: var(--lm-text); outline: none; }
.lm-choice strong { font-weight: 800; }

/* ── Inputs opt-in (uso nas fases de filtros/cadastro) ─────────────── */
.lm-input, .lm-select {
    width: 100%;
    padding: 0.6rem 0.85rem;
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius-sm);
    background-color: var(--lm-surface-2);
    color: var(--lm-text);
    font-size: var(--lm-fs-base);
}
.lm-input::placeholder { color: var(--lm-text-subtle); }
.lm-input:focus, .lm-select:focus {
    outline: none;
    border-color: var(--lm-accent);
    box-shadow: var(--lm-focus-ring);
}

/* ── Realinhamento de cor do checkout legado (rubro + âmbar) ───────── */
.checkout-header h2 { color: var(--lm-text); }
.checkout-header p { color: var(--lm-text-muted); }
.back-link { color: var(--lm-accent); }
.back-link:hover { color: var(--lm-accent-hover); }
.checkout-info a { color: var(--lm-accent); }
.checkout-info a:hover { color: var(--lm-accent-hover); }
.total-value { color: var(--lm-accent); }
.discount-badge { background-color: var(--lm-accent); color: var(--lm-on-accent); }
.produto-card-selected { border-color: rgba(255, 193, 7, 0.5); background-color: rgba(255, 193, 7, 0.10); }
.select-all-vouchers input, .produto-select input { accent-color: var(--lm-accent); }
.success-card { border-left-color: var(--lm-accent); }
.error-card { border-left-color: var(--lm-danger); }
.checkout-summary, .checkout-info { background-color: var(--lm-surface); border: 1px solid var(--lm-border); box-shadow: none; }
.produto-card { background-color: var(--lm-surface-2); }
.produto-card:hover { box-shadow: none; border-color: var(--lm-border-strong); }
#conteudoPrincipal .text-info { color: var(--lm-accent) !important; }

/* ── Paywall / conversão a membro (alinha à marca, remove rosa) ────── */
.paywall-button {
    background: var(--lm-primary);
    box-shadow: none;
    border-radius: var(--lm-radius);
}
.paywall-button:hover { background: var(--lm-primary-hover); transform: none; }
.paywall-login { color: var(--lm-accent); }
.paywall-login:hover { color: var(--lm-accent-hover); }

/* ── Home reimaginada: busca, como funciona, convite a membro ──────── */
.lm-home-search {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 12px 0 4px;
    padding: 11px 14px;
    background: var(--lm-surface-2);
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius);
    color: var(--lm-text-muted);
}
.lm-home-search > i { color: var(--lm-text-muted); }
.lm-home-search__input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--lm-text);
    font-size: var(--lm-fs-base);
    outline: none;
}
.lm-home-search__input::placeholder { color: var(--lm-text-subtle); }
.lm-home-search__clear {
    flex: 0 0 auto;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--lm-text-muted);
    display: inline-flex;
}

.lm-howto {
    margin: 8px 0 16px;
    padding: 16px;
    background: var(--lm-surface);
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius);
}
.lm-howto__head { margin-bottom: 12px; font-size: var(--lm-fs-sm); font-weight: 700; color: var(--lm-text); }
.lm-howto__steps { display: flex; gap: 8px; text-align: center; }
.lm-howto__step { flex: 1; min-width: 0; }
.lm-howto__icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    border-radius: 50%;
    background: var(--lm-surface-3);
    color: var(--lm-accent);
    font-size: 1.1rem;
}
.lm-howto__label { font-size: var(--lm-fs-xs); color: var(--lm-text-muted); }

.lm-member-cta {
    margin: 18px 0 8px;
    padding: 18px;
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: var(--lm-radius-lg);
    background: rgba(255, 193, 7, 0.07);
}
.lm-member-cta__title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: var(--lm-fs-lg);
    font-weight: 800;
    color: var(--lm-text);
}
.lm-member-cta__title i { color: var(--lm-accent); }
.lm-member-cta__text {
    margin-bottom: 14px;
    font-size: var(--lm-fs-sm);
    line-height: 1.5;
    color: var(--lm-text-muted);
}

/* ── Rails curadas da home (esta semana / perto de você) ───────────── */
.lm-rail-head { display: flex; align-items: baseline; justify-content: space-between; margin: 4px 0 12px; }
.lm-rail-head > span { font-family: var(--bs-font-family-titles); font-size: 1.15rem; font-weight: 800; color: var(--lm-text); }
.lm-rail-head a { display: inline-flex; align-items: center; gap: 3px; font-size: var(--lm-fs-sm); color: var(--lm-accent); text-decoration: none; }
.lm-rail-head a i { font-size: .9rem; }

.lm-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px; }
.lm-mini-card { display: flex; flex-direction: column; background: var(--lm-surface); border: 1px solid var(--lm-border); border-radius: 14px; overflow: hidden; cursor: pointer; transition: border-color var(--lm-transition); }
.lm-mini-card:hover { border-color: var(--lm-border-strong); }
.lm-mini-card:focus-visible { outline: none; border-color: var(--lm-accent); box-shadow: var(--lm-focus-ring); }
.lm-mini-card__media { height: 104px; background: var(--lm-surface-3); overflow: hidden; }
.lm-mini-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lm-mini-card__body { padding: 10px 11px; }
.lm-mini-card__title { margin: 0; font-size: var(--lm-fs-sm); font-weight: 700; line-height: 1.25; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.lm-mini-card__meta { margin: 2px 0 8px; font-size: .72rem; color: var(--lm-text-subtle); text-transform: capitalize; }

.lm-place-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.lm-place-row { display: flex; gap: 12px; align-items: center; padding: 10px; background: var(--lm-surface); border: 1px solid var(--lm-border); border-radius: 14px; cursor: pointer; transition: border-color var(--lm-transition); }
.lm-place-row:hover { border-color: var(--lm-border-strong); }
.lm-place-row:focus-visible { outline: none; border-color: var(--lm-accent); box-shadow: var(--lm-focus-ring); }
.lm-place-row__thumb { flex: 0 0 auto; width: 64px; height: 64px; border-radius: 10px; overflow: hidden; background: var(--lm-surface-3); }
.lm-place-row__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lm-place-row__body { flex: 1; min-width: 0; }
.lm-place-row__title { margin: 0; font-size: var(--lm-fs-sm); font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lm-place-row__meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 3px; font-size: var(--lm-fs-xs); color: var(--lm-text-muted); }
.lm-place-row__meta i { color: var(--lm-accent); }
.lm-place-row__price { flex: 0 0 auto; text-align: right; }
.lm-place-row__price strong { display: block; font-size: var(--lm-fs-sm); font-weight: 800; color: var(--lm-text); }
.lm-place-row__price span { font-size: .7rem; color: var(--lm-text-subtle); }
