:root {
    /* PALETA AZUL E BRANCO */
    --blue-primary: #0066ff;
    --blue-glow: #00d4ff;
    --bg-dark: #050b14;
    --card-bg: rgba(10, 20, 38, 0.75);
    --border-color: rgba(0, 212, 255, 0.25);
    --text-white: #ffffff;
    --text-muted: #8ab4f8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* BACKGROUND GIF (NÍTIDO E BRILHANTE COM ANIMAÇÃO SUTIL) */
.bg-gif {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.imgur.com/ArbWtE1.gif') no-repeat center center/cover;
    z-index: -2;
    filter: brightness(1.2) contrast(1.1);
    animation: pulseBg 10s ease-in-out infinite alternate;
}

@keyframes pulseBg {
    0% { transform: scale(1); }
    100% { transform: scale(1.03); }
}

/* OVERLAY LEVE PARA DAR DESTAQUE AO CONTEÚDO */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 11, 20, 0.65);
    z-index: -1;
}

/* INTRO SCREEN */
#intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 11, 20, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#intro-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    animation: fadeInDown 0.8s ease-out;
}

.intro-title span { 
    color: var(--blue-glow); 
}

.intro-loader {
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.intro-loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, transparent, var(--blue-glow), transparent);
    animation: loadingBar 1.5s infinite linear;
}

@keyframes loadingBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* NAVBAR */
#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(5, 15, 30, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text-white);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo span { 
    color: var(--blue-glow); 
}

.search-bar-header {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 8px;
    width: 350px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-bar-header:focus-within {
    border-color: var(--blue-glow);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.search-bar-header input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    margin-left: 10px;
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-btn {
    position: relative;
    color: var(--text-white);
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.cart-btn:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--blue-glow);
    color: #000;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.btn-login {
    background: var(--blue-primary);
    color: var(--text-white);
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.4);
}

.btn-login:hover { 
    background: var(--blue-glow);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
    transform: translateY(-2px);
}

/* TOP CATEGORIES */
.top-categories {
    display: flex;
    gap: 10px;
    padding: 12px 40px;
    background: rgba(5, 11, 20, 0.7);
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
}

.top-cat-item {
    color: var(--text-muted);
    text-decoration: none;
    padding: 6px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.top-cat-item.active, .top-cat-item:hover {
    color: var(--text-white);
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

/* LAYOUT PRINCIPAL */
.store-container {
    display: flex;
    padding: 30px 40px;
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

/* SIDEBAR */
.sidebar {
    width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.group-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
}

.side-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 12px;
    border-radius: 8px;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.side-btn:hover {
    border-color: var(--blue-glow);
    transform: translateX(4px);
}

.side-btn.active {
    background: var(--blue-primary);
    border-color: var(--blue-glow);
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.5);
}

.cat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cat-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    color: var(--text-muted);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cat-item.active, .cat-item:hover {
    background: rgba(0, 102, 255, 0.15);
    color: var(--text-white);
    transform: translateX(4px);
}

.count {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--blue-glow);
}

/* CARDS E PRODUTOS */
.products-section { 
    flex: 1; 
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.breadcrumb { 
    color: var(--text-muted); 
    font-size: 0.9rem; 
}
.breadcrumb span { 
    color: var(--text-white); 
}

.search-input-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 8px 14px;
    border-radius: 8px;
    width: 250px;
    transition: border-color 0.3s;
}

.search-input-box:focus-within {
    border-color: var(--blue-glow);
}

.search-input-box input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    margin-left: 8px;
}

/* ESTRUTURA DE FILEIRAS PERSONALIZADAS */
.products-grid {
    display: grid;
    gap: 20px;
    width: 100%;
}

.products-grid.row-4 {
    grid-template-columns: repeat(4, 1fr);
}

.products-grid.row-3 {
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: visible !important; /* CORREÇÃO APLICADA PARA O TOOLTIP NÃO CORTAR */
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.5s ease-out;
    position: relative;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CORREÇÃO DO Z-INDEX DO CARD COM TOOLTIP ATIVO/HOVER */
.product-card:hover,
.product-card:has(.btn-info-wrapper:hover),
.product-card:has([style*="display: block"]),
.product-card:has([style*="visibility: visible"]),
.product-card:has(.active),
.product-card:has([class*="active"]) { 
    z-index: 999999 !important;
    transform: translateY(-8px); 
    border-color: var(--blue-glow);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.25);
}

/* IMAGENS MAIORES E MAIS PREENCHIDAS */
.card-banner {
    position: relative;
    height: 180px;
    width: 100%;
    overflow: hidden;
}

.card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-banner img {
    transform: scale(1.08);
}

.badge-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--blue-glow);
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 3px 6px;
    border-radius: 4px;
    z-index: 2;
}

.card-icon-top {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--blue-glow);
    padding: 6px;
    border-radius: 6px;
    font-size: 0.8rem;
    z-index: 2;
}

.card-body { 
    padding: 15px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.card-body h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.current-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blue-glow);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.payment-method {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 12px;
}

.card-actions {
    display: flex;
    gap: 8px;
}

.btn-buy {
    flex: 1;
    background: var(--blue-primary);
    border: none;
    color: var(--text-white);
    padding: 10px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    background: var(--blue-glow);
    color: #000;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.btn-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--blue-glow);
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.05);
}

/* OVERLAY DE FUNDO */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 11, 20, 0.85);
    backdrop-filter: blur(6px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* CARRINHO FLUTUANTE (SIDEBAR DIREITA) */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background: #050f1e;
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.cart-header h3 {
    color: var(--text-white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-empty-text {
    color: var(--text-muted);
    text-align: center;
    margin-top: 50px;
    font-size: 0.95rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
    animation: fadeInRight 0.3s ease-out;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.cart-item-title {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.cart-item-price {
    color: var(--blue-glow);
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 3px;
}

.remove-item-btn {
    background: transparent;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    transition: transform 0.2s;
}

.remove-item-btn:hover {
    transform: scale(1.2);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: #030810;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.cart-total-row span:last-child {
    color: var(--blue-glow);
}

.btn-checkout {
    width: 100%;
    padding: 14px;
    background: var(--blue-primary);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.4);
}

.btn-checkout:hover {
    background: var(--blue-glow);
    color: #000;
    box-shadow: 0 0 18px rgba(0, 212, 255, 0.8);
}

/* MODAL DE LOGIN (CENTRALIZADO NA TELA) */
.login-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 400px;
    max-width: 90vw;
    background: #050f1e;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.login-modal.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
}

.close-btn:hover {
    color: var(--text-white);
    transform: rotate(90deg);
}

.login-modal h2 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-modal h2 i {
    color: var(--blue-glow);
}

.login-modal p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: var(--text-white);
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-white);
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: var(--blue-glow);
}

.btn-submit-login {
    width: 100%;
    padding: 12px;
    background: var(--blue-primary);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-submit-login:hover {
    background: var(--blue-glow);
    color: #000;
}

.divider {
    text-align: center;
    margin: 20px 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 0.1em;
}

.divider span {
    background: #050f1e;
    padding: 0 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.btn-discord-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: #5865F2;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.2s, transform 0.2s;
}

.btn-discord-login:hover {
    background: #4752C4;
    transform: translateY(-2px);
}

/* SEÇÃO SOBRE */
.about-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.about-block {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.about-header {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.about-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-header h2 i {
    color: var(--blue-glow);
}

.warning-text {
    color: var(--blue-glow);
    font-weight: 700;
    margin-top: 5px;
    font-size: 0.9rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: var(--blue-glow);
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-3px);
}

.about-card.full-width {
    grid-column: 1 / -1;
}

.about-icon {
    font-size: 1.5rem;
    color: var(--blue-glow);
    margin-bottom: 12px;
}

.about-card h3 {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 8px;
    font-weight: 700;
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.about-card ul {
    margin-top: 10px;
    padding-left: 18px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.about-card ul li {
    margin-bottom: 6px;
}

.highlight-text {
    color: var(--blue-glow) !important;
    font-weight: 600;
    margin-top: 8px;
}

.about-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.about-footer-badges span {
    background: rgba(0, 102, 255, 0.2);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: border-color 0.3s ease;
}

.about-footer-badges span:hover {
    border-color: var(--blue-glow);
}

.about-footer-badges span i {
    color: var(--blue-glow);
}

/* ==========================================
   SEÇÃO ASSISTA (ADICIONADO)
   ========================================== */
.watch-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.watch-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* CARROSSEL DE FEEDBACKS (ANIMAÇÃO 100% CORRIGIDA) */
.feedbacks-section {
    padding: 50px 40px;
    background: rgba(5, 11, 20, 0.85);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    margin-top: 40px;
}

.feedbacks-header {
    text-align: center;
    margin-bottom: 30px;
}

.feedbacks-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
}

.feedbacks-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

.feedback-carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.feedback-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollFeedbacks 25s linear infinite;
    will-change: transform;
}

.feedback-track:hover {
    animation-play-state: paused;
}

@keyframes scrollFeedbacks {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.feedback-card {
    min-width: 320px;
    max-width: 350px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    flex-shrink: 0;
    white-space: normal;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.feedback-card:hover {
    border-color: var(--blue-glow);
    transform: translateY(-4px);
}

.fb-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fb-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue-primary);
    color: var(--text-white);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.fb-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fb-info strong {
    font-size: 0.9rem;
    color: var(--text-white);
}

.fb-stars {
    color: #ffc107;
    font-size: 0.75rem;
    margin-top: 2px;
}

.fb-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.fb-text {
    font-size: 0.85rem;
    color: var(--text-white);
    line-height: 1.4;
}

.fb-product {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fb-product img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.fb-product span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* RODAPÉ (FOOTER) */
.main-footer {
    background: #030810;
    border-top: 1px solid var(--border-color);
    padding: 50px 40px 20px;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .footer-logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 15px;
}

.footer-brand .footer-logo span {
    color: var(--blue-glow);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--blue-primary);
    color: var(--text-white);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    transform: translateY(-3px);
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--blue-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom span {
    color: var(--blue-glow);
    font-weight: 700;
}

/* RESPONSIVIDADE PARA DISPOSITIVOS MENORES */
@media (max-width: 1200px) {
    .products-grid.row-4,
    .products-grid.row-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .store-container {
        flex-direction: column;
        padding: 15px;
    }
    .sidebar {
        width: 100%;
    }
    .products-grid.row-4,
    .products-grid.row-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* CORREÇÃO DO TOOLTIP (FORÇADO PARA NÃO ESTOURAR) */
[data-tooltip], .tooltip-container, .tooltip-box, .product-card [role="tooltip"], div[class*="tooltip"] {
    position: absolute !important;
    z-index: 9999 !important;
    max-width: 220px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    background: rgba(5, 15, 30, 0.95) !important;
    border: 1px solid var(--blue-glow) !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    font-size: 0.75rem !important;
    color: var(--text-white) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8) !important;
}

/* ==========================================
   CUSTOM STYLES / NOVOS ELEMENTOS ADICIONADOS
   ========================================== */
.custom-added-section {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.05));
    border: 1px dashed var(--blue-glow);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.custom-added-section h4 {
    color: var(--blue-glow);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.custom-added-section p {
    color: var(--text-muted);
    font-size: 0.85rem;
}