/* =====================================================================
   Ninja Shot Brasil - Redesign (loja.css)
   Carregado DEPOIS do <style> inline de cada página para sobrescrever.
   Mantém a paleta verde atual (#7bb84e / #2e7d32) e adiciona Barlow Condensed.
   ===================================================================== */

:root {
    --verde: #7bb84e;
    --verde-escuro: #2e7d32;
    --verde-neon: #3ddc3d;
    --preto: #111111;
    --cinza-claro: #f5f5f5;
    --cinza-medio: #9e9e9e;
    --vermelho: #e53935;
    --amarelo: #f5c518;
    --fonte-titulo: 'Barlow Condensed', sans-serif;
    --fonte-corpo: 'Inter', sans-serif;
}

/* ---------- Barra de frete grátis ---------- */
.top-bar {
    background: linear-gradient(90deg, var(--verde-escuro) 0%, var(--verde) 50%, var(--verde-escuro) 100%) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* ---------- Navegação ---------- */
.header-nav a {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    font-size: 0.82rem;
    position: relative;
    padding-bottom: 4px;
}
.header-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 2px;
    background: var(--verde-escuro);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.header-nav a:hover::after { transform: scaleX(1); }

/* =====================================================================
   HERO (desktop) — imagem de fundo + texto + CTA
   ===================================================================== */
.banner { padding: 0 !important; }
.hero-desktop { display: none; }

@media (min-width: 769px) {
    .hero-desktop {
        position: relative;
        height: 520px;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .banner-mobile-wrapper { display: none !important; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 660px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}
.hero-eyebrow {
    font-family: var(--fonte-corpo);
    font-size: 13px;
    font-weight: 700;
    color: var(--verde-neon);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hero-title {
    font-family: var(--fonte-titulo);
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    line-height: 1.04;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.hero-subtitle {
    font-family: var(--fonte-corpo);
    font-size: 16px;
    color: rgba(255,255,255,0.88);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 480px;
}
.hero-cta-group { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; justify-content: center; }
.btn-primary-hero {
    background: var(--verde-escuro);
    color: #fff;
    font-family: var(--fonte-corpo);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(46,125,50,0.4);
}
.btn-primary-hero:hover {
    background: #245d27;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46,125,50,0.5);
}
.btn-secondary-hero {
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-family: var(--fonte-corpo);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}
.btn-secondary-hero:hover { background: rgba(255,255,255,0.22); }
.hero-trust {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    font-family: var(--fonte-corpo);
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}
.hero-trust i { color: var(--verde-neon); margin-right: 4px; }
.hero-eyebrow i { margin-right: 4px; }

/* =====================================================================
   Títulos de seção em Barlow Condensed
   ===================================================================== */
.produtos h3,
.diversao h3,
.features-section h3,
.faq-section h3 {
    font-family: var(--fonte-titulo);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--preto);
    font-size: 2.4rem;
}

/* ---------- Cards de produto ---------- */
.produto-card {
    border: 1px solid #ebebeb;
    border-radius: 16px;
    overflow: hidden;
    padding-bottom: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background: #fff;
}
.produto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 44px rgba(0,0,0,0.1);
}
.produto-card h4 {
    font-family: var(--fonte-titulo);
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
}
.produto-card .produto-preco {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.produto-card .preco {
    font-family: var(--fonte-corpo);
    font-weight: 700;
    color: var(--preto);
}
.produto-card .preco-original {
    font-family: var(--fonte-corpo);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--vermelho);
    text-decoration: line-through;
}
.produto-card .btn-comprar {
    background: var(--verde-escuro);
    transition: background 0.2s, transform 0.15s;
}
.produto-card .btn-comprar:hover {
    background: #245d27;
    transform: translateY(-1px);
}

/* =====================================================================
   Seção "Principais Características" — grid PT-BR
   ===================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 0 20px;
}
.feature-card {
    background: var(--cinza-claro);
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.feature-card .feature-icon { font-size: 38px; margin-bottom: 14px; color: var(--verde-escuro); line-height: 1; }
.feature-card h4 {
    font-family: var(--fonte-titulo);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--preto);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.feature-card p {
    font-family: var(--fonte-corpo);
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
.features-subtitle {
    font-family: var(--fonte-corpo);
    font-size: 1rem;
    color: var(--cinza-medio);
    text-align: center;
    margin-top: 10px;
}

/* =====================================================================
   CTA após o FAQ
   ===================================================================== */
.faq-cta {
    text-align: center;
    max-width: 760px;
    margin: 48px auto 0;
    padding: 48px 32px;
    background: linear-gradient(135deg, var(--verde-escuro) 0%, var(--verde) 100%);
    border-radius: 20px;
    color: #fff;
}
.faq-cta h3 {
    font-family: var(--fonte-titulo);
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #fff;
}
.faq-cta p {
    font-family: var(--fonte-corpo);
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 24px;
}
.faq-cta .btn-cta {
    background: #fff;
    color: var(--verde-escuro);
    font-family: var(--fonte-corpo);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}
.faq-cta .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ---------- Tags de produto ---------- */
.produto-card .produto-tag {
    display: inline-block;
    font-family: var(--fonte-corpo);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    background: #eee;
    color: #555;
}
.produto-card .produto-tag.tag-oferta {
    background: var(--amarelo);
    color: #5a4500;
    box-shadow: 0 2px 8px rgba(245,197,24,0.45);
}
.produto-card .produto-tag.tag-novidade {
    background: rgba(46,125,50,0.12);
    color: var(--verde-escuro);
}

/* ---------- Footer ---------- */
footer .footer-col h4 {
    font-family: var(--fonte-corpo);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cinza-medio);
}
.footer-pay { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-pay .pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-family: var(--fonte-corpo);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
}
.footer-pay .pay-badge i { font-size: 16px; color: var(--verde-neon); }
.footer-secure {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-secure span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--fonte-corpo);
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.footer-secure i { color: var(--verde-neon); }

/* =====================================================================
   PÁGINAS DE PRODUTO
   ===================================================================== */
.produto-info h1 {
    font-family: var(--fonte-titulo);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 0.01em;
}
.produto-info .beneficios h4,
.fotos-section h3,
.reviews-section h2,
.reviews-section h3 {
    font-family: var(--fonte-titulo);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Preço */
.produto-compra .preco-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.produto-compra .preco-principal {
    font-family: var(--fonte-titulo);
    font-weight: 800;
    color: var(--preto);
    line-height: 1;
}
.produto-compra .preco-antigo {
    font-family: var(--fonte-corpo);
    color: var(--vermelho);
    text-decoration: line-through;
    font-weight: 600;
}

/* Botão comprar */
.btn-comprar-produto {
    background: var(--verde-escuro);
    color: #fff;
    font-family: var(--fonte-corpo);
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(46,125,50,0.3);
}
.btn-comprar-produto:hover {
    background: #245d27;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46,125,50,0.4);
}

/* Selos de confiança */
.trust-badges .trust-badge i { color: var(--verde-escuro); }

/* Galeria */
.galeria-principal { overflow: hidden; border-radius: 16px; }
.galeria-principal img { transition: transform 0.4s ease; }
.galeria-principal:hover img { transform: scale(1.06); }
.galeria-thumbs img {
    border: 2px solid transparent;
    border-radius: 10px;
    transition: border-color 0.2s;
    cursor: pointer;
}
.galeria-thumbs img.active,
.galeria-thumbs img:hover { border-color: var(--verde-escuro); }

/* Cards de avaliação */
.review-card {
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* Buy box com cara de card premium */
.compra-box {
    box-shadow: 0 6px 28px rgba(0,0,0,0.06);
    border-color: #ebebeb !important;
    padding: 24px !important;
}

/* Desktop: layout encorpado que preenche a largura */
@media (min-width: 769px) {
    .produto-page {
        gap: 56px !important;
        max-width: 1180px !important;
        align-items: flex-start !important;
    }
    .produto-galeria { flex: 0 0 560px !important; }
    .galeria-principal img { max-height: 580px !important; }
    .produto-info {
        max-width: none !important;
        flex: 1 !important;
        padding-top: 4px;
    }
    .produto-info h1 { font-size: 2.7rem; }
    .produto-compra .preco-principal { font-size: 2.8rem; }
    .produto-compra .preco-antigo { font-size: 1.15rem; }
}

/* ---------- Responsivo Home ---------- */
@media (max-width: 768px) {
    .produtos h3, .diversao h3, .features-section h3, .faq-section h3 { font-size: 1.8rem; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .faq-cta h3 { font-size: 26px; }
    /* Footer: centraliza pagamento e segurança no mobile */
    .footer-pay { justify-content: center; }
    .footer-secure { align-items: center; }
}
@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
}


/* =====================================================================
   Acessibilidade: respeita preferência de movimento reduzido
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
    .fotos-grid { animation: none !important; }
    .score-star-wrapper { animation: none !important; }
    .produto-card:hover { transform: none; }
    .review-card:hover { transform: none; }
}

/* =====================================================================
   Social proof section - responsivo mobile
   ===================================================================== */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr !important;
    }
}
