/* =====================================================
   6ª FPSS 2027 • STYLE.CSS REVISADO
   Design Original com Proporções Otimizadas (Estilo Mercado Livre)
===================================================== */

/* 1. RESET E CONFIGURAÇÕES BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px; /* Reduzido levemente de 16px para caber mais conteúdo na tela */
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f3eb;
  color: #111;
  line-height: 1.45; /* Linhas ligeiramente mais juntas para otimizar espaço */
  overflow-x: hidden;
}

/* CONTAINER PADRÃO DO SITE */
.wrap{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 16px;
    box-sizing:border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 2. TOPO DE URGÊNCIA (FIXO NO TOPO) */
.barra-urgencia {
  background: #facc15;
  color: #111;
  text-align: center;
  padding: 8px 12px; /* Mais compacto verticalmente */
  font-weight: 800;
  font-size: 13px; /* Fonte ligeiramente menor e mais precisa */
  position: relative;
  z-index: 10000;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* 3. SEÇÃO HERO */
.hero {
  background: linear-gradient(135deg, #111111, #262626);
  color: #fff;
  padding: 35px 15px; /* Padding reduzido de 60px para o Hero não ocupar a tela toda */
  position: relative;
}

/* Grid de duas colunas para o Computador */
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px; /* Espaço entre colunas reduzido para aproximar as informações */
  align-items: center;
}

.badge-topo {
  display: inline-block;
  background: #ef4444;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 11px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 36px; /* Reduzido de 44px para o título não empurrar tudo para baixo */
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 12px;
}

.subhero {
  font-size: 16px; /* Reduzido de 18px para melhor aproveitamento */
  color: #e5e5e5;
  margin-bottom: 18px;
  line-height: 1.42;
}

/* Grupo de Botões Principais */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.mini-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #a3a3a3;
  font-weight: 700;
}

/* Coluna Direita do Hero */
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* CARTÕES LATERAIS MAIS COMPACTOS */
.price-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px; /* Menos preenchimento vazio */
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.price-card.destaque {
  border-color: #ffd700;
  background: rgba(252, 211, 72, 0.05);
}

.price-card h3 {
  font-size: 12px;
  color: #a3a3a3;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.price-card.destaque h3 {
  color: #ffd700;
}

.price-card .valor {
  font-size: 26px; /* Ajustado de 32px para melhor equilíbrio visual */
  font-weight: 900;
  margin: 2px 0;
}

.price-card p {
  font-size: 12px;
  color: #a3a3a3;
}

/* 4. SEÇÃO DE CRONÓMETRO (CONTADOR) */
.card {
  background: #fff;
  padding: 25px 15px; /* Padding vertical reduzido para economizar rolagem */
  margin: 15px auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.card.center {
  text-align: center;
}

.section-title {
  font-size: 26px; /* Ajustado de 32px para economizar altura */
  font-weight: 900;
  color: #8b1111;
  margin-bottom: 12px;
}

.contador-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 12px 0;
}

.tempo-box {
  background: #7f1d1d;
  color: #fff;
  padding: 10px 14px; /* Caixa de tempo mais enxuta */
  min-width: 75px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(127,29,29,0.18);
}

.tempo-box span {
  display: block;
  font-size: 24px; /* Fonte interna ajustada */
  font-weight: 900;
  line-height: 1.1;
}

.tempo-box small {
  font-size: 11px;
  color: #fca5a5;
  text-transform: uppercase;
  font-weight: 700;
}

/* 5. VITRINE DE VENDAS E PRODUTOS (ALTA DENSIDADE) */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px; /* Espaço entre os cards reduzido de 24px para 16px */
  margin-top: 15px;
}

.venda-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 18px; /* Reduzido de 24px para as informações subirem e aparecerem mais juntas */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.venda-box:hover {
  transform: translateY(-2px);
}

.venda-box h3 {
  font-size: 18px; /* Tamanho de fonte ideal: nem muito grande, nem pequena */
  color: #111;
  font-weight: 800;
  margin-bottom: 8px;
}

.info-list {
  list-style: none;
  margin-bottom: 12px;
}

.info-list li {
  font-size: 13px; /* Lista de benefícios mais discreta e profissional */
  color: #4b5563;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.price-box {
  font-size: 28px; /* Preço marcante, sem exagero físico na tela */
  font-weight: 900;
  color: #1fae42;
  margin-bottom: 12px;
}

/* 6. BOTÕES COMPONENTES PADRONIZADOS */
.btn {
  display: inline-block;
  padding: 10px 20px; /* Tamanho de botão perfeito: firme para clicar, sem ocupar altura desnecessária */
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px; /* Fonte equilibrada e legível */
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn.red {
  background: #8b1111;
  color: #fff;
}

.btn.green {
  background: #1fae42;
  color: #fff;
}

.btn.full {
  width: 100%;
}

.btn:hover {
  filter: brightness(1.1);
}

/* Margens utilitárias enxutas */
.mt-20 { margin-top: 15px; }
.mt-10 { margin-top: 8px; }

/* 7. WHATSAPP FIXO FLUTUANTE */
.whatsapp-fixo {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #25d366;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.2);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 8. FOOTER BASE */
footer {
  background: #111;
  color: #a3a3a3;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  font-weight: 700;
}