/* =========================================
   BLOCO 1: BASE, RESET E VARIÁVEIS
   ========================================= */
:root {
    --primary: #ffcc00;
    --neon-green: #39FF14;
    --neon-red: #ff3131;
    --bg-black: #0a0a0a;
    --bg-card: #141414;
    --text-white: #ffffff;
    --text-gray: #666666;
    --glass: rgba(255, 255, 255, 0.05);
    --success: #32d74b;
    --danger: #ff453a;

    /* CORES VIP (BLOCO 6) */
    --vip-bronze: #cd7f32;
    --vip-prata: #c0c0c0;
    --vip-ouro: #ffd700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    transition: background 0.5s ease;
}

.hidden {
    display: none !important;
}


/* =========================================
   BLOCO 2: SISTEMA DE TOAST (FEEDBACK)
   ========================================= */
#toast-feedback {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    color: #000;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    align-items: center;
    gap: 10px;
    animation: slideDownFade 0.3s ease forwards;
    display: none; /* corrigido: não aparece fixo por padrão */
}
#toast-feedback.show {
    display: flex;
}


/* =========================================
   BLOCO 3: LAYOUT PRINCIPAL (HOME / SPLASH)
   ========================================= */
.main-container {
    width: 100%;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-top {
    width: 100px;
    height: 100px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2001;
}

#logo-loja {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

.brand-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-content h1 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}


/* =========================================
   BLOCO 4: STATUS DA LOJA E DELIVERY
   ========================================= */
.status-box {
    padding: 2px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--glass);
    border-radius: 20px;
    transform: scale(0.85);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

#status-texto {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.delivery-box {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: -2px;
    opacity: 0.9;
}

.delivery-box i {
    font-size: 0.8rem;
    color: var(--primary);
}

#tempo-texto {
    font-size: 0.6rem;
    color: var(--text-gray);
}


/* =========================================
   BLOCO 5: BOTÃO DE ENTRADA (SHIMMER)
   ========================================= */
.btn-app-entry {
    margin-top: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 15px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, var(--glass) 0%, rgba(255,255,255,0.1) 50%, var(--glass) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite linear;
}

.btn-app-entry span {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.btn-app-entry i {
    font-size: 1.1rem;
    color: var(--primary);
}

.btn-app-entry:active {
    transform: scale(0.95);
}


/* =========================================
   BLOCO 6: CARDÁPIO (MENU CONTAINER)
   ========================================= */
.menu-container {
    position: fixed;
    inset: 0;
    background: var(--bg-black);
    z-index: 50;
    padding: 20px 15px 100px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.hidden-menu {
    transform: translateY(100%);
}

.menu-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-back-app {
    background: var(--glass);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   BLOCO 7: NAVEGAÇÃO DE CATEGORIAS
   ========================================= */
.categories-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 15px;
    margin-bottom: 20px;
    scrollbar-width: none;
}

.categories-nav::-webkit-scrollbar {
    display: none;
}

.cat-chip {
    padding: 8px 18px;
    background: var(--glass);
    border-radius: 20px;
    white-space: nowrap;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-gray);
    border: none;
}

.cat-chip.active {
    background: var(--primary);
    color: #000;
}


/* =========================================
   BLOCO 8: PRODUTOS (CARDS E ESTADOS)
   ========================================= */
.product-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 12px;
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    border: 1px solid #1a1a1a;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.product-card.esgotado {
    filter: grayscale(1);
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.product-card.esgotado::after {
    content: "INDISPONÍVEL";
    position: absolute;
    right: 15px;
    top: 15px;
    background: var(--danger);
    color: white;
    font-size: 0.5rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
}

.product-card.destaque {
    border: 2.5px solid var(--primary);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.15);
    transform: scale(1.02);
}

.badge-destaque {
    position: absolute;
    top: 10px;
    right: -25px;
    background: var(--primary);
    color: #000;
    font-size: 0.5rem;
    font-weight: 900;
    padding: 4px 30px;
    transform: rotate(45deg);
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    z-index: 10;
}

.prod-img {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 15px;
    object-fit: cover;
}

.prod-info {
    flex: 1;
    text-align: left;
}

.prod-info h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.prod-info p {
    font-size: 0.65rem;
    color: var(--text-gray);
    line-height: 1.3;
}

.prod-price {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 8px;
    display: block;
}


/* =========================================
   BLOCO 9: SISTEMA DE FIDELIDADE (VIP CLUB)
   ========================================= */
#card-vip-fidelidade {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#vip-shimmer {
    animation: shimmer-vip 4s infinite linear;
}

.vip-bronze {
    border-color: var(--vip-bronze) !important;
    background: linear-gradient(135deg, #2c1e14 0%, #0a0a0a 100%) !important;
}

.vip-bronze #vip-tag-nome,
.vip-bronze #vip-icon {
    color: var(--vip-bronze) !important;
}

.vip-bronze #vip-barra-progresso {
    background: var(--vip-bronze) !important;
}

.vip-prata {
    border-color: var(--vip-prata) !important;
    background: linear-gradient(135deg, #2e2e2e 0%, #0a0a0a 100%) !important;
}

.vip-prata #vip-tag-nome,
.vip-prata #vip-icon {
    color: var(--vip-prata) !important;
}

.vip-prata #vip-barra-progresso {
    background: var(--vip-prata) !important;
}

.vip-ouro {
    border-color: var(--vip-ouro) !important;
    background: linear-gradient(135deg, #3d3400 0%, #0a0a0a 100%) !important;
}

.vip-ouro #vip-tag-nome,
.vip-ouro #vip-icon {
    color: var(--vip-ouro) !important;
}

.vip-ouro #vip-barra-progresso {
    background: var(--vip-ouro) !important;
}


/* =========================================
   BLOCO 10: CARRINHO (BARRA E MODAL)
   ========================================= */
.cart-float-bar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    animation: slideUpFloat 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-cart-main {
    width: 100%;
    background: var(--primary);
    border: none;
    padding: 16px 20px;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.3);
    cursor: pointer;
}

.cart-info-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

#cart-count {
    background: #000;
    color: var(--primary);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 8px;
}

.modal-cart-details {
    background: var(--bg-black);
    width: 100%;
    height: 92vh;
    position: fixed;
    bottom: 0;
    left: 0;
    border-radius: 30px 30px 0 0;
    display: flex;
    flex-direction: column;
    z-index: 1300;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
}

.cart-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1a1a1a;
}

.cart-header h2 {
    font-size: 1.2rem;
    font-weight: 800;
}

#btn-fechar-carrinho {
    background: var(--glass);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.cart-items-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 12px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #1a1a1a;
}

.cart-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.cart-item-info p {
    font-size: 0.7rem;
    color: var(--text-gray);
    line-height: 1.2;
}

.cart-item-price {
    display: block;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.85rem;
}

.btn-remove-item {
    background: transparent;
    border: none;
    color: var(--neon-red);
    font-size: 1.2rem;
    padding-left: 10px;
}


/* =========================================
   BLOCO 11: FORMULÁRIO DE CHECKOUT E CUPOM
   ========================================= */
.field {
    margin-bottom: 15px;
    text-align: left;
}

.field label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid #222;
    padding: 12px;
    border-radius: 12px;
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--primary);
}

#input-cupom {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

#input-cupom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}

#resumo-cupom {
    animation: fadeIn 0.4s ease;
}

#resumo-cupom span {
    font-weight: 600;
}

/* --- AUTOCOMPLETE E SUGESTÕES (LOGÍSTICA) --- */
.autocomplete-container {
    position: relative;
    width: 100%;
    /* Garante que o container flutue sobre o modal do carrinho (z-index 1300) */
    z-index: 2000 !important;
}

.sugestoes-lista {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1c1c1e !important;
    border: 1px solid #444;
    border-radius: 0 0 15px 15px;
    z-index: 99999 !important;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    margin-top: -2px;
}

.sugestao-item {
    padding: 14px 15px;
    font-size: 0.85rem;
    border-bottom: 1px solid #222;
    cursor: pointer;
    color: #efeff4;
    transition: background 0.2s;
    text-align: left;
    display: block;
    width: 100%;
    background: transparent;
    border: none;
}

.sugestao-item:last-child {
    border-bottom: none;
}

.sugestao-item:hover,
.sugestao-item:active {
    background: #2c2c2e;
    color: var(--primary) !important;
}

/* Compatibilidade: admin.js usa sugestao-item-admin */
.sugestao-item-admin {
    padding: 14px 15px;
    font-size: 0.85rem;
    border-bottom: 1px solid #222;
    cursor: pointer;
    color: #efeff4;
    transition: background 0.2s;
    text-align: left;
    display: block;
    width: 100%;
    background: #fff;
}

/* --- BARRA DE RASTREIO ULTRA COMPACTA PREMIUM --- */
#barra-rastreio-fixa {
    position: fixed !important;
    bottom: 15px !important;
    left: 10px !important;
    right: 10px !important;
    background: #FFCC00 !important;
    color: #000 !important;
    padding: 10px 16px !important;
    border-radius: 16px !important;

    display: flex;
    justify-content: space-between !important;
    align-items: center !important;
    z-index: 9999 !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

#barra-rastreio-fixa .status-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

#barra-rastreio-fixa .status-info i {
    font-size: 1.2rem;
    animation: radar-pulse 2s infinite;
}

#barra-rastreio-fixa span {
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#barra-rastreio-fixa button {
    background: #000 !important;
    color: #FFCC00 !important;
    border: none !important;
    padding: 6px 14px !important;
    border-radius: 10px !important;
    font-size: 0.65rem !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    transition: transform 0.2s ease !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
}

#barra-rastreio-fixa button:active {
    transform: scale(0.92) !important;
}

@keyframes radar-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- RESUMO DO CARRINHO --- */
.cart-summary {
    padding: 20px;
    background: #0f0f0f;
    border-top: 1px solid #1a1a1a;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.summary-row.total {
    color: var(--text-white);
    font-weight: 800;
    font-size: 1.1rem;
    margin-top: 10px;
    border-top: 1px dashed #333;
    padding-top: 10px;
}

/* --- BOTÃO DE FINALIZAÇÃO E ESTADOS --- */
.btn-finish-order {
    width: 100%;
    background: var(--neon-green);
    border: none;
    padding: 18px;
    border-radius: 18px;
    color: #000;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    transition: transform 0.2s ease, opacity 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.btn-finish-order:active {
    transform: scale(0.96);
}

.btn-finish-order:disabled {
    background: #444 !important;
    color: #888 !important;
    cursor: not-allowed;
    opacity: 0.7;
    pointer-events: none;
}


/* =========================================
   BLOCO 12: CUSTOMIZAÇÃO DO PRODUTO (MODAL)
   ========================================= */
.modal-product-detail {
    background: var(--bg-black);
    width: 100%;
    height: 92vh;
    position: fixed;
    bottom: 0;
    left: 0;
    border-radius: 30px 30px 0 0;
    display: flex;
    flex-direction: column;
    z-index: 1100;
    animation: slideUp 0.4s ease;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.btn-close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    z-index: 1200;
}

.product-hero-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 30px 30px 0 0;
}

.modal-content-scroll {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.modal-content-scroll h2 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.product-info-text {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.custom-section h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 4px;
}

.section-tip {
    font-size: 0.7rem;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.ingredient-chip {
    padding: 6px 12px;
    background: var(--bg-card);
    border: 1px solid #2c2c2e;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ingredient-chip i {
    font-size: 0.9rem;
    color: var(--primary);
}

.ingredient-chip.removed {
    background: rgba(255, 49, 49, 0.1);
    border-color: var(--neon-red);
    color: var(--neon-red);
    text-decoration: line-through;
    opacity: 0.7;
}

.ingredient-chip.removed i {
    color: var(--neon-red);
}

.extras-list {
    margin-top: 10px;
}

.extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #1c1c1e;
}

.extra-info span {
    font-size: 0.85rem;
}

.extra-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    margin-left: 5px;
}

.extra-check {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}


/* =========================================
   BLOCO 13: SELETOR DE QUANTIDADE E RODAPÉ
   ========================================= */
.modal-footer {
    padding: 15px 20px;
    background: var(--bg-card);
    border-top: 1px solid #222;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid #333;
}

.qty-selector button {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.2rem;
    padding: 0 5px;
}

.qty-selector span {
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.btn-add-cart {
    flex: 1;
    background: var(--primary);
    border: none;
    padding: 14px;
    border-radius: 15px;
    font-weight: 800;
    color: #000;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.btn-add-cart.disabled {
    background: #222;
    color: var(--text-gray);
    pointer-events: none;
    filter: grayscale(1);
}


/* =========================================
   BLOCO 14: LOGIN ADMIN (VISUAL SURREAL PREMIUM)
   ========================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999 !important;
    animation: fadeIn 0.4s ease;
}

.modal-login {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    width: 90%;
    max-width: 360px;
    padding: 40px 30px;
    border-radius: 40px;
    border: 1px solid rgba(255, 204, 0, 0.2);
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(255, 204, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.lock-header i {
    font-size: 3.5rem;
    color: var(--primary);
    filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.4));
    margin-bottom: 15px;
    display: block;
}

.lock-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.lock-header p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.modal-login input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 2px solid #222 !important;
    color: var(--primary) !important;
    padding: 18px !important;
    border-radius: 20px !important;
    text-align: center !important;
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    letter-spacing: 8px !important;
    margin-bottom: 25px !important;
    transition: all 0.3s ease !important;
    outline: none !important;
}

.modal-login input:focus {
    border-color: var(--primary) !important;
    background: rgba(255, 204, 0, 0.05) !important;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.1);
}

.btn-enter {
    width: 100%;
    background: var(--primary) !important;
    color: #000 !important;
    padding: 18px !important;
    border-radius: 20px !important;
    font-weight: 800 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.btn-enter:active {
    transform: scale(0.96);
    box-shadow: 0 5px 10px rgba(255, 204, 0, 0.2);
}

.btn-back {
    margin-top: 20px;
    background: transparent !important;
    border: none !important;
    color: var(--text-gray) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    opacity: 0.6;
    transition: 0.3s;
}

.btn-back:hover { opacity: 1; color: #fff !important; }

.modal-login::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,204,0,0.03) 0%, transparent 70%);
    pointer-events: none;
}


/* =========================================
   BLOCO 15: MURAL DE FEEDBACKS E WHATSAPP
   ========================================= */
.depoimento-item {
    min-width: 250px;
    background: var(--bg-card);
    padding: 15px;
    border-radius: 18px;
    border: 1px solid #222;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feedback-card {
    background: var(--bg-black);
    width: 90%;
    max-width: 380px;
    padding: 30px 20px;
    border-radius: 30px;
    border: 1px solid var(--primary);
    text-align: center;
}

.star {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.star.active {
    color: var(--primary) !important;
    transform: scale(1.25);
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.btn-whats-admin {
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    margin-top: 8px;
    transition: 0.3s;
}

.btn-whats-admin:active {
    transform: scale(0.95);
    background: #128c7e;
}


/* =========================================
   BLOCO 16: TRANSIÇÕES E ANIMAÇÕES (KEYFRAMES)
   ========================================= */
body.app-mode .main-container {
    padding-top: 15px;
}

body.app-mode .logo-top {
    width: 45px;
    height: 45px;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 2001;
}

body.app-mode .logo-top #logo-loja {
    border-radius: 12px;
}

body.app-mode .brand-content,
body.app-mode .btn-app-entry {
    opacity: 0;
    pointer-events: none;
}

body.app-mode .menu-container {
    transform: translateY(0);
}

@keyframes slideDownFade {
    from { top: -50px; opacity: 0; }
    to { top: 20px; opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes shimmer-vip {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

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

@keyframes pulse-green {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.status-box.aberto .status-dot {
    background-color: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
    animation: pulse 2s infinite;
}

.status-box.fechado .status-dot {
    background-color: var(--neon-red);
    box-shadow: 0 0 8px var(--neon-red);
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes bounce {
    to { transform: translateY(-5px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.loader-dots {
    display: flex;
    gap: 4px;
    margin-top: 15px;
}

.loader-dots span {
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}

.loader-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.4s;
}