/** * Arquiteto de Sistemas - Estilo Arquitetural Premium Glassmorphism e Responsivo * Diretório: public/assets/css/theme.css */ :root { /* Novo esquema de cores Dark Mode / Roxo Vibrante (ScriptHub) */ --bg-main: #0f111a; /* Fundo grafite escuro / azul profundo */ --bg-card: rgba(19, 21, 30, 0.65); /* Fundo translúcido para o efeito vidro */ --bg-input: rgba(28, 30, 42, 0.7); --primary: #6366F1; /* Roxo vibrante principal */ --primary-hover: #4f46e5; /* Roxo escuro para hover */ --primary-glow: rgba(99, 102, 241, 0.15); /* Brilho roxo */ --text-main: #ffffff; --text-muted: #94a3b8; /* Cinza azulado suave */ --border-color: rgba(255, 255, 255, 0.06); --border-glass: rgba(255, 255, 255, 0.08); /* Linha de reflexo do vidro */ --border-radius: 16px; /* Bordas arredondadas e modernas */ --max-width-pc: 1440px; } /* Reset e Configurações Globais */ * { box-sizing: border-box; margin: 0; padding: 0; } body { background-color: var(--bg-main); color: var(--text-main); font-family: 'Inter', system-ui, -apple-system, sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; /* Bolhas de luz em profundidade 3D no fundo do site - Atualizado para Roxo */ background-image: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.04) 0%, transparent 40%), radial-gradient(circle at 90% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 45%); background-attachment: fixed; } /* Container Limitador Responsivo Inteligente */ .container { width: 100%; max-width: var(--max-width-pc); margin: 0 auto; padding: 0 24px; } /* Header Adaptativo com Efeito Vidro Avançado */ header { background-color: rgba(15, 17, 26, 0.7); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid var(--border-glass); position: sticky; top: 0; z-index: 999; } .header-wrapper { display: flex; justify-content: space-between; align-items: center; height: 80px; } .logo { font-size: 24px; font-weight: 800; color: var(--text-main); text-decoration: none; letter-spacing: -0.5px; } .logo span { color: var(--primary); } nav { display: flex; align-items: center; gap: 32px; } nav a { color: var(--text-muted); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.2s ease; } nav a:hover { color: var(--primary); } /* Seletor de Idiomas Integrado ao Vidro */ .lang-selector { position: relative; display: inline-block; } .lang-btn { background: rgba(255, 255, 255, 0.04); color: var(--text-main); border: 1px solid var(--border-glass); padding: 8px 16px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; transition: all 0.2s; } .lang-btn:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.15); } .lang-dropdown { display: none; position: absolute; right: 0; background: rgba(19, 21, 30, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); min-width: 150px; box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.5); border-radius: 8px; z-index: 1000; margin-top: 6px; border: 1px solid var(--border-glass); padding: 4px; } .lang-dropdown a { color: var(--text-main); padding: 10px 14px; text-decoration: none; display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 500; border-radius: 6px; transition: all 0.15s; } .lang-dropdown a:hover { background-color: var(--primary); color: #ffffff !important; } .lang-selector:hover .lang-dropdown { display: block; } .flag-text { font-weight: 700; text-transform: uppercase; } /* Barra Estilizada de Categorias (Glassmorphism Sticky) */ .category-bar-wrapper { background-color: rgba(15, 17, 26, 0.5); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-glass); position: sticky; top: 80px; z-index: 98; padding: 14px 0; } .category-bar { display: flex; gap: 12px; overflow-x: auto; scrollbar-width: none; } .category-bar::-webkit-scrollbar { display: none; } .category-bar a { background: rgba(255, 255, 255, 0.03); color: var(--text-muted); padding: 8px 20px; border-radius: 30px; text-decoration: none; font-size: 14px; font-weight: 500; white-space: nowrap; transition: all 0.2s; border: 1px solid var(--border-glass); } .category-bar a:hover, .category-bar a.active { background: var(--primary-glow); color: var(--primary); border-color: rgba(99, 102, 241, 0.3); box-shadow: 0 0 15px rgba(99, 102, 241, 0.05); } /* Seção de Destaque (Hero) */ .hero-section { padding: 100px 0 60px 0; text-align: center; background: radial-gradient(circle at top center, rgba(99, 102, 241, 0.08) 0%, transparent 60%); } .hero-section h1 { font-size: 52px; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 20px; line-height: 1.1; } .hero-section h1 span { color: var(--primary); } .hero-section p { color: var(--text-muted); font-size: 19px; max-width: 650px; margin: 0 auto 40px auto; line-height: 1.6; } /* Barra de Busca Premium */ .search-container { max-width: 580px; margin: 0 auto; position: relative; } .search-input { width: 100%; padding: 18px 24px; background-color: var(--bg-input); border: 1px solid var(--border-color); border-radius: var(--border-radius); color: var(--text-main); font-size: 16px; transition: border-color 0.2s, box-shadow 0.2s; } .search-input:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 4px var(--primary-glow); } /* Títulos das Seções de Categoria */ .category-block { margin-top: 50px; } .category-section-title { font-size: 22px; font-weight: 700; margin-bottom: 20px; letter-spacing: -0.5px; } /* Grid de Produtos de Alta Performance (Alinhamento Perfeito) */ .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; padding: 10px 0 40px 0; } /* Card do Produto Premium (Efeito Vidro com Bordas de Luz) */ .script-card { background: var(--bg-card); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border-glass); border-radius: var(--border-radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s, box-shadow 0.25s; cursor: pointer; } .script-card:hover { transform: translateY(-5px); border-color: rgba(99, 102, 241, 0.4); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(99, 102, 241, 0.05); } /* Área de Mídia do Card */ .card-preview-box { position: relative; width: 100%; height: 190px; background-color: #000; overflow: hidden; } .card-preview-box img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity 0.25s, transform 0.25s; } .script-card:hover .card-preview-box img { opacity: 1; transform: scale(1.05); } .card-content { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; } .category-tag { color: var(--primary); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; } .card-title { font-size: 20px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; } .card-description { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 24px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; height: 67px; } .card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border-color); } .price-container { display: flex; flex-direction: column; } .price-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; } .card-price { font-size: 22px; font-weight: 800; } .card-price span { font-size: 14px; font-weight: 500; color: var(--text-muted); margin-right: 2px; } /* Botões Customizados */ .btn-store { padding: 12px 20px; border-radius: 8px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.2s; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; border: none; } .btn-store-primary { background-color: var(--primary); color: #ffffff; } .btn-store-primary:hover { background-color: var(--primary-hover); box-shadow: 0 0 15px var(--primary-glow); } /* Rodapé */ footer { background-color: rgba(15, 17, 26, 0.9); border-top: 1px solid var(--border-color); padding: 40px 0; text-align: center; color: var(--text-muted); font-size: 14px; margin-top: 60px; } /* Media Queries (Mobile Adaptabilidade Suprema - 2 Colunas) */ @media (max-width: 768px) { header { padding: 0; } .header-wrapper { height: 70px; } nav { gap: 15px; } nav > a { display: none; /* Oculta links secundários no mobile para priorizar o seletor e logo */ } .category-bar-wrapper { top: 70px; } .hero-section { padding: 60px 0 40px 0; } .hero-section h1 { font-size: 32px; letter-spacing: -0.5px; } .hero-section p { font-size: 16px; } /* Configuração exata solicitada: 2 Colunas no Mobile */ .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; /* Gap menor para caber na tela do celular sem espremer */ padding: 10px 0 30px 0; } /* Ajustes finos do card para não quebrar em telas pequenas (2 colunas) */ .card-preview-box { height: 120px; /* Imagem mais baixa no mobile */ } .card-content { padding: 12px; /* Redução de margens internas */ } .category-tag { font-size: 10px; margin-bottom: 6px; } .card-title { font-size: 15px; margin-bottom: 6px; } .card-description { font-size: 12px; line-height: 1.4; -webkit-line-clamp: 2; /* Mostra apenas 2 linhas no mobile para não esticar muito o card */ height: 34px; margin-bottom: 14px; } .card-footer { padding-top: 12px; flex-direction: column; /* Coloca o preço em cima do botão para caber melhor */ align-items: flex-start; gap: 10px; } .card-price { font-size: 18px; } .btn-store { width: 100%; /* Botão ocupa 100% da largura do card no celular */ padding: 10px 12px; font-size: 13px; } }