/* ============================================
   INVITME LOJA — CSS PRINCIPAL v2
   Mobile-first | Light default | Dark optional
   Hero coverflow + Category cards + Bottom nav
   ============================================ */

/* ── Reset & Base ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--lj-ff-b);
    background-color: var(--lj-bg);
    color: var(--lj-text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--lj-scrollbar); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--lj-accent); }

/* ── Container ───────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Utilities ───────────────────────────────── */
.desktop-only { display: none !important; }
.mobile-only { display: flex !important; }
@media (min-width: 768px) {
    .desktop-only { display: flex !important; }
    .mobile-only { display: none !important; }
}

/* ── Animations ──────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes dotPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.6); } }
@keyframes floatUp { 0% { transform: translateY(0); } 50% { transform: translateY(-6px); } 100% { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

/* ============================================
   HEADER
   ============================================ */
.loja-header {
    background: var(--lj-header-bg);
    border-bottom: 1px solid var(--lj-header-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--lj-header-shadow);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 64px;
    gap: 12px;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--lj-ff-d);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--lj-accent);
    text-decoration: none;
    flex-shrink: 0;
    line-height: 1;
}
.header-logo img { height: 32px; width: auto; }
.header-logo i { font-size: 22px; }

/* Hamburger */
.header-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--lj-accent);
    font-size: 20px;
    width: 44px;
    height: 44px;
    border-radius: var(--lj-r-sm);
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.header-menu-btn:hover { background: var(--lj-accent-dim); }

/* Desktop nav */
.header-nav { display: none; align-items: center; gap: 4px; }
.header-nav-link {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--lj-text-2);
    border-radius: var(--lj-r-sm);
    transition: all 0.2s;
}
.header-nav-link:hover { background: var(--lj-accent-dim); color: var(--lj-accent); }

/* Desktop search */
.header-search { flex: 1; max-width: 420px; }
.search-form {
    display: flex;
    align-items: center;
    background: var(--lj-search-bg);
    border: 1.5px solid var(--lj-search-border);
    border-radius: 100px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.search-form:focus-within { border-color: var(--lj-accent); box-shadow: 0 0 0 3px var(--lj-accent-dim); }
.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--lj-text);
    font-family: var(--lj-ff-b);
    outline: none;
    min-height: 42px;
}
.search-input::placeholder { color: var(--lj-muted); }
.search-btn {
    background: none;
    border: none;
    color: var(--lj-accent);
    padding: 0 14px;
    font-size: 15px;
    height: 42px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}
.search-btn:hover { color: var(--lj-accent-2); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.header-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--lj-accent-dim);
    color: var(--lj-accent);
    font-size: 15px;
    border: none;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}
.header-icon-btn:hover { background: var(--lj-accent); color: var(--lj-btn-primary-tx); }

/* Mobile search bar */
.header-search-mobile {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 16px;
    background: var(--lj-header-bg);
    border-top: 1px solid transparent;
}
.header-search-mobile.active { max-height: 70px; padding: 8px 16px 12px; border-top-color: var(--lj-header-border); }
.header-search-mobile .search-form { border-radius: var(--lj-r-sm); }

@media (min-width: 768px) {
    .header-container { height: 68px; gap: 16px; }
    .header-menu-btn { display: none; }
    .header-nav { display: flex; }
    .header-search-mobile { display: none; }
}

/* ============================================
   MOBILE MENU (lateral)
   ============================================ */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--lj-overlay);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-overlay.active { display: block; opacity: 1; }

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    max-width: 85vw;
    background: var(--lj-menu-bg);
    z-index: 1101;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
}
.mobile-menu.active { transform: translateX(0); }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--lj-menu-divider);
    flex-shrink: 0;
}
.mobile-menu-title {
    font-family: var(--lj-ff-d);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--lj-accent);
}
.mobile-menu-close {
    background: none;
    border: none;
    color: var(--lj-muted);
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--lj-r-sm);
    transition: all 0.2s;
}
.mobile-menu-close:hover { background: var(--lj-accent-dim); color: var(--lj-accent); }

.mobile-menu-list { list-style: none; padding: 8px 0; flex: 1; }
.mobile-menu-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--lj-menu-text);
    transition: all 0.2s;
    border-left: 3px solid transparent;
}
.mobile-menu-list li a:hover,
.mobile-menu-list li a:active { background: var(--lj-menu-hover); color: var(--lj-accent); border-left-color: var(--lj-accent); }
.mobile-menu-list li a i { width: 20px; text-align: center; font-size: 15px; color: var(--lj-muted); transition: color 0.2s; }
.mobile-menu-list li a:hover i { color: var(--lj-accent); }
.mobile-menu-divider { height: 1px; background: var(--lj-menu-divider); margin: 8px 20px; }
.mobile-menu-footer { padding: 16px 20px; border-top: 1px solid var(--lj-menu-divider); flex-shrink: 0; }
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--lj-whatsapp);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    transition: opacity 0.2s;
}
.whatsapp-link:hover { opacity: 0.9; }

/* ============================================
   HERO SECTION (Coverflow + Busca flutuante)
   ============================================ */
.hero-section {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 16px 8px;
    overflow: hidden;
}

/* Busca flutuante */
.hero-search-bar {
    max-width: 680px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 10;
}
.hero-search-form {
    display: flex;
    align-items: center;
    background: var(--lj-surface);
    border: 2px solid var(--lj-border);
    border-radius: 100px;
    padding: 4px 4px 4px 20px;
    box-shadow: var(--lj-shadow-md);
    transition: border-color 0.2s, box-shadow 0.2s;
    gap: 8px;
}
.hero-search-form:focus-within {
    border-color: var(--lj-accent);
    box-shadow: 0 0 0 4px var(--lj-accent-dim), var(--lj-shadow-md);
}
.hero-search-icon { color: var(--lj-muted); font-size: 16px; flex-shrink: 0; }
.hero-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    font-family: var(--lj-ff-b);
    color: var(--lj-text);
    outline: none;
    min-height: 44px;
    padding: 0 4px;
}
.hero-search-input::placeholder { color: var(--lj-muted); }
.hero-search-btn {
    padding: 10px 24px;
    background: var(--lj-btn-primary-bg);
    color: var(--lj-btn-primary-tx);
    border: none;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--lj-ff-b);
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
    min-height: 44px;
}
.hero-search-btn:hover { opacity: 0.9; }

@media (max-width: 600px) {
    .hero-search-form { padding: 3px 3px 3px 14px; }
    .hero-search-input { font-size: 14px; }
    .hero-search-btn { padding: 8px 16px; font-size: 13px; }
}

/* Horizontal Slide Carousel (swipe suave) */
.hero-coverflow {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 280px;
    overflow: hidden;
}

.hero-track {
    position: relative;
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: absolute;
    width: 72%;
    max-width: 560px;
    aspect-ratio: 16/9;
    border-radius: var(--lj-r-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--lj-shadow-lg);
    background: var(--lj-surface-2);
    will-change: transform, opacity;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slide states — horizontal slide (sem rotacao 3D) */
.hero-slide.active {
    z-index: 5;
    transform: translateX(0) scale(1);
    opacity: 1;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.hero-slide.left-1 {
    z-index: 3;
    transform: translateX(-78%) scale(0.85);
    opacity: 0.6;
    filter: brightness(0.75);
}
.hero-slide.left-2 {
    z-index: 1;
    transform: translateX(-140%) scale(0.7);
    opacity: 0;
    filter: brightness(0.5);
    pointer-events: none;
}
.hero-slide.right-1 {
    z-index: 3;
    transform: translateX(78%) scale(0.85);
    opacity: 0.6;
    filter: brightness(0.75);
}
.hero-slide.right-2 {
    z-index: 1;
    transform: translateX(140%) scale(0.7);
    opacity: 0;
    filter: brightness(0.5);
    pointer-events: none;
}
.hero-slide.hidden {
    z-index: 0;
    opacity: 0;
    transform: translateX(0) scale(0.5);
    pointer-events: none;
}

/* Setas */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--lj-surface);
    color: var(--lj-text);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--lj-shadow-md);
    -webkit-tap-highlight-color: transparent;
}
.hero-arrow:hover { background: var(--lj-accent); color: var(--lj-btn-primary-tx); }
.hero-arrow-left { left: 0; }
.hero-arrow-right { right: 0; }

/* Dots */
.hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--lj-border-2);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.hero-dot.active {
    background: var(--lj-accent);
    width: 24px;
    border-radius: 4px;
}

/* Hero info (abaixo do slide ativo) */
.hero-info {
    text-align: center;
    margin-top: 16px;
    animation: fadeUp 0.4s ease both;
}
.hero-info-title {
    font-family: var(--lj-ff-d);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--lj-text);
    line-height: 1.15;
    margin-bottom: 6px;
}
.hero-info-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 13px;
    color: var(--lj-muted);
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.hero-info-meta i { color: var(--lj-accent); margin-right: 4px; }
.hero-info-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--lj-btn-primary-bg);
    color: var(--lj-btn-primary-tx);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    transition: opacity 0.2s, transform 0.15s;
    text-decoration: none;
}
.hero-info-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Placeholder (sem banners) */
.hero-placeholder-inner {
    background: var(--lj-hero-gradient);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    border-radius: var(--lj-r-lg);
    position: relative;
    overflow: hidden;
}
.hero-placeholder-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-placeholder-inner h1 {
    font-family: var(--lj-ff-d);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 8px;
}
.hero-placeholder-inner p { font-size: 16px; opacity: 0.85; position: relative; }

/* Mobile hero */
@media (max-width: 767px) {
    .hero-section { padding: 12px 0 4px; }
    .hero-coverflow { min-height: 200px; }
    .hero-track { height: 220px; }
    .hero-slide { width: 78%; }
    .hero-arrow { width: 36px; height: 36px; font-size: 13px; }
    .hero-arrow-left { left: 4px; }
    .hero-arrow-right { right: 4px; }
    .hero-info-title { font-size: 17px; }
    .hero-placeholder-inner { padding: 40px 16px; border-radius: var(--lj-r-md); }
    .hero-placeholder-inner h1 { font-size: 28px; }
}

/* Placeholder slides (sem imagens reais) */
.hero-slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
}
.hero-slide-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    opacity: 0.9;
}
.hero-slide-placeholder h3 {
    font-family: var(--lj-ff-d);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.hero-slide-placeholder p {
    font-size: 13px;
    opacity: 0.8;
}

/* ============================================
   CATEGORIAS (cards quadrados estilo Sympla)
   ============================================ */
.categorias-cards-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 20px 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.categorias-cards-scroll::-webkit-scrollbar { display: none; }

.categoria-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px 12px;
    min-width: 100px;
    background: var(--lj-surface);
    border: 1.5px solid var(--lj-border);
    border-radius: var(--lj-r-md);
    text-decoration: none;
    color: var(--lj-text-2);
    transition: all 0.2s;
    cursor: pointer;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}
.categoria-card:hover {
    border-color: var(--lj-accent);
    color: var(--lj-accent);
    box-shadow: var(--lj-shadow);
    transform: translateY(-2px);
}
.categoria-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--lj-r-sm);
    background: var(--lj-surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--lj-muted);
    transition: all 0.2s;
}
.categoria-card:hover .categoria-card-icon {
    background: var(--lj-accent-dim);
    color: var(--lj-accent);
}
.categoria-card-nome {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (min-width: 768px) {
    .categoria-card { min-width: 110px; padding: 20px 14px 14px; }
    .categoria-card-icon { width: 56px; height: 56px; font-size: 22px; }
    .categoria-card-nome { font-size: 13px; max-width: 90px; }
}

/* ============================================
   BUSCA EXPERIENCIA (barra de busca estilo Sympla)
   ============================================ */
.busca-experiencia {
    background: var(--lj-accent);
    padding: 28px 16px 20px;
    margin: 0;
}
.busca-experiencia-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.busca-experiencia-title {
    font-family: var(--lj-ff-d);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
}
[data-loja-theme="dark"] .busca-experiencia-title { color: #000; }

.busca-experiencia-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
@media (min-width: 768px) {
    .busca-experiencia { padding: 32px 20px 24px; }
    .busca-experiencia-title { font-size: 24px; }
    .busca-experiencia-form {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
}

.busca-exp-input,
.busca-exp-select {
    flex: 1;
    padding: 12px 16px;
    min-height: 46px;
    border: none;
    border-radius: var(--lj-r-sm);
    font-family: var(--lj-ff-b);
    font-size: 14px;
    background: #fff;
    color: #333;
    outline: none;
    transition: box-shadow 0.2s;
}
.busca-exp-input::placeholder { color: #999; }
.busca-exp-select { cursor: pointer; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.busca-exp-input:focus,
.busca-exp-select:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.35); }

.busca-exp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    min-height: 46px;
    background: #fff;
    color: #333;
    border: none;
    border-radius: var(--lj-r-sm);
    font-family: var(--lj-ff-d);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    flex-shrink: 0;
}
.busca-exp-btn:hover { opacity: 0.9; transform: translateY(-1px); }
[data-loja-theme="dark"] .busca-exp-btn { background: #000; color: #FFD700; }

/* Tags de categorias na busca */
.busca-exp-tags {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 2px 0;
}
.busca-exp-tags::-webkit-scrollbar { display: none; }
.busca-exp-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(255,255,255,0.18);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s;
    flex-shrink: 0;
    cursor: pointer;
}
.busca-exp-tag:hover { background: rgba(255,255,255,0.3); }
.busca-exp-tag i { font-size: 12px; }
[data-loja-theme="dark"] .busca-exp-tag { color: #000; border-color: rgba(0,0,0,0.2); background: rgba(0,0,0,0.15); }
[data-loja-theme="dark"] .busca-exp-tag:hover { background: rgba(0,0,0,0.25); }

/* ============================================
   SECTIONS
   ============================================ */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0 8px;
    animation: fadeUp 0.5s ease both;
}
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
}
.section-title {
    font-family: var(--lj-ff-d);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--lj-text);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.1;
}
.section-title i { font-size: 20px; color: var(--lj-accent); }
.section-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lj-accent);
    padding: 6px 14px;
    border: 1.5px solid var(--lj-accent);
    border-radius: 100px;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.section-link:hover { background: var(--lj-accent); color: var(--lj-btn-primary-tx); }
.section-link i { font-size: 10px; }

@media (min-width: 768px) {
    .section { padding: 32px 0 12px; }
    .section-title { font-size: 24px; }
}

/* ============================================
   CARDS DE EVENTO — Grid + Scroll
   ============================================ */

/* Wrapper (para posicionar botoes fav/share) */
.card-evento-wrapper {
    position: relative;
}

/* Grid */
.eventos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
@media (min-width: 640px) { .eventos-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 900px) { .eventos-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1100px) { .eventos-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

/* Scroll horizontal */
.eventos-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 20px 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
}
.eventos-scroll::-webkit-scrollbar { display: none; }
.eventos-scroll .card-evento-wrapper { flex: 0 0 260px; scroll-snap-align: start; }
@media (min-width: 768px) { .eventos-scroll .card-evento-wrapper { flex: 0 0 280px; } }

/* Card de evento */
.card-evento {
    display: flex;
    flex-direction: column;
    background: var(--lj-card);
    border: 1px solid var(--lj-border);
    border-radius: var(--lj-r-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: var(--lj-shadow);
    animation: fadeUp 0.5s ease both;
    height: 100%;
}
.card-evento:hover { transform: translateY(-4px); box-shadow: var(--lj-shadow-lg); border-color: var(--lj-border-2); }
@media (hover: none) { .card-evento:hover { transform: none; box-shadow: var(--lj-shadow); } }

/* Card imagem */
.card-evento-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--lj-surface-2);
}
.card-evento-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card-evento:hover .card-evento-img img { transform: scale(1.05); }
@media (hover: none) { .card-evento:hover .card-evento-img img { transform: none; } }

/* Card badges */
.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.badge-destaque {
    background: var(--lj-accent);
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
[data-loja-theme="dark"] .badge-destaque { color: #000; }
.badge-esgotado { background: var(--lj-error-bg); color: var(--lj-error); }
.badge-gratis { background: var(--lj-ok-bg); color: var(--lj-ok); }
.badge-destaque::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    animation: dotPulse 2s ease-in-out infinite;
}
.card-categoria {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Card actions (favoritar + compartilhar) */
/* Acoes sempre visiveis */
.card-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 3;
}

.card-action-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--lj-text-2);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    -webkit-tap-highlight-color: transparent;
}
.card-action-btn:hover { transform: scale(1.1); }
.card-fav-btn.active { color: #dc2626; }
.card-fav-btn.active i { animation: floatUp 0.4s ease; }
[data-loja-theme="dark"] .card-action-btn {
    background: rgba(26,26,26,0.85);
    color: var(--lj-text-2);
}
[data-loja-theme="dark"] .card-fav-btn.active { color: #ff4444; }

/* Card info */
.card-evento-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px 16px;
    flex: 1;
}
.card-evento-nome {
    font-size: 15px;
    font-weight: 700;
    color: var(--lj-text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-evento-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--lj-muted); }
.card-evento-meta i { color: var(--lj-accent); margin-right: 3px; font-size: 11px; }
.card-evento-data, .card-evento-hora { display: inline-flex; align-items: center; }
.card-evento-local {
    font-size: 12px;
    color: var(--lj-muted);
    display: flex;
    align-items: flex-start;
    gap: 4px;
    line-height: 1.3;
}
.card-evento-local i { color: var(--lj-accent); font-size: 11px; margin-top: 2px; flex-shrink: 0; }

/* Card footer */
.card-evento-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--lj-border);
    gap: 8px;
}
.card-evento-preco {
    font-family: var(--lj-ff-d);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: var(--lj-price-color);
    line-height: 1;
}
.card-evento-preco small {
    display: block;
    font-family: var(--lj-ff-b);
    font-size: 10px;
    font-weight: 500;
    color: var(--lj-muted);
    letter-spacing: 0;
    margin-bottom: 2px;
}
.card-evento-preco.preco-esgotado {
    color: var(--lj-error);
    font-size: 14px;
    font-family: var(--lj-ff-b);
    font-weight: 600;
}
.card-evento-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    width: 100%;
    font-size: 12px;
    font-weight: 700;
    color: var(--lj-btn-primary-tx);
    background: var(--lj-btn-primary-bg);
    border-radius: 100px;
    letter-spacing: 0.04em;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
}
.card-evento:hover .card-evento-btn { opacity: 0.9; }

/* ============================================
   SEM RESULTADOS
   ============================================ */
.sem-resultados { text-align: center; padding: 60px 20px; color: var(--lj-muted); }
.sem-resultados i { font-size: 3rem; margin-bottom: 16px; display: block; color: var(--lj-border-2); }
.sem-resultados h3 { font-size: 18px; font-weight: 700; color: var(--lj-text); margin-bottom: 8px; }
.sem-resultados p { font-size: 14px; }

/* ============================================
   FOOTER
   ============================================ */
.loja-footer {
    background: var(--lj-footer-bg);
    margin-top: auto;
    color: var(--lj-footer-text);
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 48px 20px 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }

.footer-title {
    font-family: var(--lj-ff-d);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--lj-footer-heading);
    margin-bottom: 14px;
    text-transform: uppercase;
}
.footer-text { font-size: 13px; line-height: 1.6; color: var(--lj-footer-dim); margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover { color: #ffffff; padding-left: 4px; }
.footer-links a i { font-size: 12px; width: 16px; text-align: center; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-links a:hover i { color: #ffffff; }

.footer-payment { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.payment-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--lj-r-sm);
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}
.payment-icon i { color: #fff; }
.footer-secure { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.85); }
.footer-secure i { color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; text-align: center; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 16px; margin-bottom: 12px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-legal a:hover { color: #ffffff; }
.footer-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 12px; }
.footer-trust-item { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: #fff; }
.footer-trust-item i { color: #fff; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.6; }
.footer-powered { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 8px !important; }

/* Footer extra padding on mobile (above bottom nav) */
@media (max-width: 767px) {
    .footer-container { padding-bottom: 80px; }
}

/* ============================================
   BOTTOM NAV FIXO (mobile)
   ============================================ */
.loja-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--lj-header-bg);
    border-top: 1px solid var(--lj-border);
    z-index: 990;
    justify-content: space-around;
    align-items: center;
    padding: 0 4px;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
}
@media (max-width: 767px) { .loja-bottom-nav { display: flex; } }

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 10px;
    font-weight: 600;
    color: var(--lj-muted);
    text-decoration: none;
    padding: 6px 8px;
    border-radius: var(--lj-r-sm);
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
    min-width: 52px;
    position: relative;
}
.bottom-nav-item i { font-size: 19px; margin-bottom: 1px; }
.bottom-nav-item span { line-height: 1; }
.bottom-nav-item.active,
.bottom-nav-item:hover { color: var(--lj-accent); }

/* Botao central (Criar evento) — destaque */
.bottom-nav-center { color: var(--lj-accent); }
.bottom-nav-center-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--lj-btn-primary-bg);
    color: var(--lj-btn-primary-tx);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-top: -18px;
    box-shadow: var(--lj-btn-primary-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.bottom-nav-center:hover .bottom-nav-center-icon { transform: scale(1.08); }

/* Body padding for bottom nav */
@media (max-width: 767px) {
    .loja-main { padding-bottom: 74px; }
    .loja-theme-toggle { bottom: 76px; }
}

/* ============================================
   SHARE MODAL
   ============================================ */
.share-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--lj-overlay);
    z-index: 2000;
}
.share-modal-overlay.show { display: block; }

.share-modal {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2001;
    background: var(--lj-surface);
    border-radius: var(--lj-r-lg) var(--lj-r-lg) 0 0;
    padding: 20px 20px 28px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    max-width: 480px;
    margin: 0 auto;
}
.share-modal.show { display: block; transform: translateY(0); }

.share-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.share-modal-title {
    font-family: var(--lj-ff-d);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--lj-text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.share-modal-title i { color: var(--lj-accent); font-size: 16px; }
.share-modal-close {
    background: none;
    border: none;
    color: var(--lj-muted);
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.share-modal-close:hover { background: var(--lj-accent-dim); color: var(--lj-accent); }
.share-modal-nome {
    font-size: 13px;
    color: var(--lj-muted);
    margin-bottom: 16px;
    line-height: 1.4;
}
.share-modal-options {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    border: none;
    background: var(--lj-surface-2);
    border-radius: var(--lj-r-md);
    cursor: pointer;
    transition: all 0.2s;
    color: var(--lj-text-2);
    min-width: 72px;
}
.share-option:hover { background: var(--lj-accent-dim); color: var(--lj-accent); }
.share-option i { font-size: 22px; }
.share-option span { font-size: 11px; font-weight: 600; }

/* ============================================
   COOKIE BANNER — card flutuante compacto
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 960;
    transform: translateY(calc(100% + 20px));
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}
.cookie-banner.show { transform: translateY(0); pointer-events: auto; }

.cookie-banner-inner {
    max-width: 480px;
    margin: 0 auto;
    padding: 14px 16px;
    background: var(--lj-surface);
    border: 1px solid var(--lj-border);
    border-radius: var(--lj-r-md);
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.cookie-banner-text {
    font-size: 12px;
    color: var(--lj-text-2);
    line-height: 1.4;
    flex: 1;
    min-width: 0;
}
.cookie-banner-text a { color: var(--lj-accent); font-weight: 600; }
.cookie-banner-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--lj-border);
    background: var(--lj-surface);
    color: var(--lj-muted);
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cookie-banner-close:hover { background: var(--lj-accent-dim); color: var(--lj-accent); }
.cookie-banner-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
.cookie-btn-accept {
    padding: 8px 16px;
    background: var(--lj-btn-primary-bg);
    color: var(--lj-btn-primary-tx);
    border: none;
    border-radius: var(--lj-r-sm);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
}
.cookie-btn-accept:hover { opacity: 0.9; }
.cookie-btn-reject {
    padding: 8px 12px;
    background: transparent;
    color: var(--lj-text-2);
    border: 1.5px solid var(--lj-border);
    border-radius: var(--lj-r-sm);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.cookie-btn-reject:hover { border-color: var(--lj-accent); color: var(--lj-accent); }

/* Mobile: cookie acima do bottom nav */
@media (max-width: 767px) {
    .cookie-banner {
        bottom: 74px;
        left: 10px;
        right: 10px;
    }
    .cookie-banner-inner {
        flex-wrap: wrap;
        padding: 12px 14px;
        gap: 8px;
    }
    .cookie-banner-text { font-size: 11px; }
    .cookie-banner-actions { width: 100%; }
    .cookie-btn-accept,
    .cookie-btn-reject { flex: 1; text-align: center; padding: 10px 8px; }
}

/* ============================================
   TOAST
   ============================================ */
.loja-toast {
    position: fixed;
    bottom: 80px;
    left: 16px;
    z-index: 9999;
    background: var(--lj-surface);
    border: 1px solid var(--lj-border);
    border-left: 3px solid var(--lj-accent);
    border-radius: var(--lj-r-md);
    padding: 12px 16px;
    max-width: 320px;
    box-shadow: var(--lj-shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-120%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}
.loja-toast.show { transform: translateX(0); }
.loja-toast-icon { font-size: 16px; color: var(--lj-accent); flex-shrink: 0; }
.loja-toast-icon.success { color: var(--lj-ok); }
.loja-toast-icon.error { color: var(--lj-error); }
.loja-toast-text { font-size: 13px; color: var(--lj-text-2); line-height: 1.4; }

@media (max-width: 767px) {
    .loja-toast { bottom: 80px; }
}

/* ============================================
   BUTTONS (global)
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    min-height: 44px;
    background: var(--lj-btn-primary-bg);
    color: var(--lj-btn-primary-tx);
    border: none;
    border-radius: var(--lj-r-sm);
    font-family: var(--lj-ff-b);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: var(--lj-btn-primary-shadow);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.98); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    min-height: 44px;
    border: 1.5px solid var(--lj-accent);
    border-radius: var(--lj-r-sm);
    background: transparent;
    color: var(--lj-accent);
    font-family: var(--lj-ff-b);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-outline:hover { background: var(--lj-accent-dim); }

/* ============================================
   FORM INPUTS (global)
   ============================================ */
.form-input {
    width: 100%;
    padding: 12px 14px;
    min-height: 44px;
    background: var(--lj-input-bg);
    border: 1.5px solid var(--lj-border);
    border-radius: var(--lj-r-sm);
    color: var(--lj-text);
    font-family: var(--lj-ff-b);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}
.form-input::placeholder { color: var(--lj-muted); }
.form-input:focus { border-color: var(--lj-accent); box-shadow: 0 0 0 3px var(--lj-accent-dim); }

/* ============================================
   LOJA MAIN
   ============================================ */
.loja-main { flex: 1; padding-bottom: 24px; }

/* ============================================
   FAQ
   ============================================ */
.faq-item { margin-bottom: 8px; }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--lj-surface);
    border: 1px solid var(--lj-border);
    border-radius: var(--lj-r-sm);
    color: var(--lj-text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}
.faq-question:hover { border-color: var(--lj-accent); }
.faq-question i { color: var(--lj-accent); transition: transform 0.3s; font-size: 12px; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 16px;
    font-size: 13px;
    color: var(--lj-text-2);
    line-height: 1.6;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 12px 16px; }

/* ============================================
   PRINT
   ============================================ */
@media print {
    .loja-header, .loja-footer, .loja-theme-toggle,
    .mobile-menu, .mobile-overlay, .cookie-banner,
    .loja-bottom-nav, .share-modal, .share-modal-overlay,
    .card-actions { display: none !important; }
    body { background: #fff; color: #000; }
    .loja-main { padding: 0; }
}
