:root {
  --primary: #F9B715;
  --text-light: #f5f5f5;
  --text-muted: #ccc;
  --green: #25D366;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: url('bg.jpg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.card {
  position: relative;
  z-index: 1;
  background: rgba(20, 20, 20, 0.92);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  padding: 30px 20px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  margin: 40px auto;
}

.logo {
  width: 160px;
  border-radius: 50%;
  background-color: black;
  margin-bottom: 25px;
}

/* Indicadores atualizados para 2 por linha */
.highlights {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.highlight-box {
  flex: 1;
  min-width: 150px;
  background-color: #1b1b1b;
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
}

.counter {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary);
}

.highlight-box p {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 5px;
}

.descricao {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.email {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.email a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.botao {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.botao.insta {
  background-color: var(--primary);
}

.botao.whats {
  background-color: var(--green);
}

.botao:hover {
  filter: brightness(1.1);
}

.counter-wrap {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2px;
}

.counter-wrap .plus {
  font-size: inherit;      /* mesmo tamanho do número */
  color: var(--primary);   /* mesma cor do número */
  font-weight: inherit;
}


/* Mobile: indicadores em 1 por linha */
@media (max-width: 400px) {
  .highlight-box {
    flex: 1 1 100%;
  }
  
  .card {
    margin: 30px 16px; /* topo/baixo 30px, laterais 16px */
  }
}

