body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center; /* 🔥 ISSO resolve o centro */
}

.container {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  text-align: center;

  background: white;
  margin-top: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  flex: 1; /* 🔥 isso empurra o footer pra baixo */
}

.hero h1 {
  color: #ff6b00; /* laranja esportivo */
  margin-bottom: 10px;
  align-items: center;
}

.subtitle {
  color: #555;
  margin-bottom: 15px;
}

.badges {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  display: block;
}

.btn.primary {
  background: #28a745;
  color: white;
  font-size: 16px;
}

.btn.secondary {
  background: #007bff;
  color: white;
}

.btn.link {
  background: #ff6b00;
  color: #555;
}

.install-info {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

.pricing {
  margin-top: 25px;
  padding: 15px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.price {
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0;
}

.highlight {
  background: #ffeeba;
  padding: 10px;
  border-radius: 8px;
  margin: 10px 0;
  font-size: 14px;
}

.trial {
  font-size: 14px;
  color: #666;
}

footer {
  text-align: center;
  padding: 10px;
  font-size: 12px;
  color: #666;
}

.logo-wrap {
  display: flex;
  align-items: center;
  margin-right: 2px;
  justify-content: center;
}

.img-logo {
   display: flex;
  width: 38px;
  height: 38px;
  margin-right: 0px;
  background-color: white;
  align-items: center;
  justify-content: center;
}