body {
  font-family: "Inter", sans-serif;
  margin: 0;
  background: #f7f8fb;
  color: #23262f;
}

header {
  background: #0c1633;
  color: #fff;
  text-align: center;
  padding: 48px 20px;
}

.logo-img {
  max-width: 280px;
  width: 100%;
  height: auto;
}

.tagline {
  font-size: 1.2rem;
  margin-top: 18px;
  margin-bottom: 0;
}

.store-downloads {
  text-align: center;
  padding: 28px 20px 10px;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  box-sizing: border-box;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
  align-items: center;
}

.store-badges a {
  line-height: 0;
  transition: opacity 0.2s ease;
}

.store-badges a:hover {
  opacity: 0.88;
}

.store-badge-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
}

.store-badge-slot img {
  display: block;
  height: 48px;
  width: auto;
  max-height: 48px;
  max-width: min(220px, 48vw);
  object-fit: contain;
  object-position: center;
}

section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0;
  box-sizing: border-box;
}

h2 {
  font-size: 1.9rem;
  margin: 0 0 28px;
  text-align: center;
}

.maqueta,
.promo,
.preview {
  text-align: center;
}

.promo-img {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(14, 26, 58, 0.15);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.feature-item {
  max-width: none;
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: 0 6px 20px rgba(12, 22, 51, 0.08);
  box-sizing: border-box;
}

.feature-item h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #0c1633;
  font-size: 1.1rem;
}

.feature-item p {
  margin: 0;
  color: #4c5160;
  line-height: 1.55;
}

.clubman-how {
  background: #3057c7;
  color: #fff;
  border-radius: 12px;
}

.clubman-how h2 {
  color: #fff;
}

.how-steps {
  list-style: decimal inside;
  max-width: none;
  width: 100%;
  margin: 0;
  line-height: 1.8;
  font-size: 1.03rem;
  text-align: left;
  box-sizing: border-box;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.captura {
  max-width: 100%;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(16, 22, 43, 0.2);
  transition: transform 0.2s ease;
  box-sizing: border-box;
}

.captura:hover {
  transform: translateY(-4px);
}

footer {
  background: #1d2233;
  color: #fff;
  text-align: center;
  padding: 18px;
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .galeria {
    grid-template-columns: 1fr;
  }

  .tagline {
    font-size: 1.05rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .captura {
    max-width: 100%;
  }
}
