* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  font-family: 'Outfit', sans-serif;
  margin: 0;
  padding: 18px 12px;
  background: linear-gradient(135deg, #000000 0%, #1e1e1e 100%);
  color: #FFD700;

  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 100svh;
  overflow-x: hidden;
}

.container {
  width: min(800px, 100%);
  padding: 32px;
  background-color: #121212;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  text-align: center;
}

.logo {
  width: min(160px, 52vw);
  height: auto;
  display: inline-block;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(26px, 6.2vw, 42px);
  margin: 0 0 14px;
  color: #FFD700;
  line-height: 1.1;
}

p.subtitle {
  font-size: clamp(15px, 4.2vw, 20px);
  margin: 0 0 16px;
  color: #f2f2f2;
}

.bono {
  font-size: clamp(18px, 4.8vw, 26px);
  font-weight: bold;
  margin: 0 0 18px;
}

.cta-button {
  width: min(520px, 100%);
  background: #FFD700;
  color: #000;
  padding: 14px 16px;
  font-size: clamp(16px, 4.6vw, 20px);
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  transition: background 0.3s;
  margin: 0 auto;
  text-decoration: none;
}
.cta-button:hover { background: #e6c200; }

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
  font-size: clamp(14px, 4vw, 18px);
}

.features div {
  background: #1f1f1f;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

@keyframes mymove { 
  from { top: 0px; } 
  to { top: 2px; } 
}

.precta {
  margin: 0 0 14px;
  position: relative;
  animation: mymove .5s infinite;
  font-size: clamp(13px, 3.8vw, 16px);
}

/* 📱 Mobile – mantiene formato PC (2 columnas) */
@media (max-width: 720px) {
  body{
    align-items: center;
    padding: 12px 10px;
  }

  .container{
    padding: 18px;
    border-radius: 16px;
  }

  .logo{
    width: min(135px, 42vw);
    margin-bottom: 8px;
  }

  h1{
    font-size: clamp(22px, 5.8vw, 30px);
    margin-bottom: 10px;
  }

  p.subtitle{
    font-size: clamp(13px, 3.6vw, 16px);
    margin-bottom: 12px;
  }

  .bono{
    font-size: clamp(15px, 4.0vw, 19px);
    margin-bottom: 12px;
  }

  .precta{
    font-size: clamp(12px, 3.2vw, 14px);
    margin-bottom: 10px;
  }

  .cta-button{
    width: min(360px, 100%);
    padding: 12px 14px;
    font-size: clamp(15px, 4.2vw, 18px);
    border-radius: 12px;
  }

  .features{
    grid-template-columns: 1fr 1fr; /* 🔥 2 columnas en mobile */
    gap: 10px;
    margin-top: 16px;
    font-size: clamp(12px, 3.3vw, 14px);
  }

  .features div{
    padding: 12px;
    border-radius: 12px;
  }
}

/* 📱 Celulares muy chicos */
@media (max-width: 360px) {
  .features { grid-template-columns: 1fr; }
  .container { padding: 20px; }
  .features div { padding: 14px; }
}

