* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: radial-gradient(circle at top left, #030303, #060b1b);
  color: #e0e0e0;
  overflow-x: hidden;
}

.header {
  text-align: center;
  padding: 2rem 1rem;
}

.logo {
  width: 80px;
  margin-bottom: 0.5rem;
}

.brand {
  font-size: 2rem;
  font-weight: 700;
  color: #00aaff;
}

.slogan {
  font-size: 1.1rem;
  color: #9cc9ff;
}

.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #0a0f1f, #08152a);
  box-shadow: inset 0 0 80px #000;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #c7dfff;
}

.btn-3d {
  background: linear-gradient(180deg, #007bff, #0040aa);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px #002e7d;
  transition: all 0.2s ease;
}

.btn-3d:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 123, 255, 0.4);
}

.btn-3d.small {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
}

.btn-3d.large {
  font-size: 1.2rem;
}

.steps {
  text-align: center;
  padding: 4rem 2rem;
}

.step-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  background: #0a0f1f;
  border-radius: 16px;
  padding: 1.5rem;
  width: 260px;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.2);
}

.step span {
  font-size: 2rem;
}

.plans {
  text-align: center;
  padding: 5rem 2rem;
  background: #0b0e18;
}

.plan-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.plan-card {
  background: #101522;
  border-radius: 16px;
  padding: 2rem;
  width: 260px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0, 123, 255, 0.5);
}

.plan-card h3 {
  color: #00aaff;
}

.featured {
  border: 2px solid #00aaff;
}

.plan-note {
  margin-top: 2rem;
  color: #a9c8ff;
}

.infra {
  text-align: center;
  padding: 4rem 2rem;
}

.tech-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.tech-icons img {
  width: 60px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.tech-icons img:hover {
  opacity: 1;
}

.cta-final {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #0a0f1f, #101522);
}

.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #7a8ea5;
}
.price {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #00aaff;
  font-weight: 600;
}

.free {
  border: 2px solid #00ffb3;
  background: linear-gradient(135deg, #0a1f14, #0c2d1f);
}

.free .btn-3d {
  background: linear-gradient(180deg, #00ffb3, #00aa6e);
  box-shadow: 0 6px #00784f;
}

.free .btn-3d:hover {
  box-shadow: 0 8px 15px rgba(0, 255, 179, 0.5);
}

.free-trial {
  margin-top: 3rem;
}
.plan-card {
  background: #101522;
  border-radius: 16px;
  padding: 2rem;
  width: 260px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 360px;
}

.plan-card p {
  margin: 0.5rem 0;
}

.plan-card .btn-3d {
  margin-top: auto;
  align-self: center;
}

.price {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #00aaff;
  font-weight: 600;
}

.free {
  border: 2px solid #00ffb3;
  background: linear-gradient(135deg, #0a1f14, #0c2d1f);
}

.free .btn-3d {
  background: linear-gradient(180deg, #00ffb3, #00aa6e);
  box-shadow: 0 6px #00784f;
}

.free .btn-3d:hover {
  box-shadow: 0 8px 15px rgba(0, 255, 179, 0.5);
}

.free-trial {
  margin-top: 4rem;
}
.cta-final {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0a0f1f, #101522);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-final h2 {
  font-size: 2rem;
  color: #e0e0e0;
  margin-bottom: 2.5rem;
}

.cta-final .btn-3d {
  margin-top: 1rem;
  background: linear-gradient(180deg, #007bff, #0040aa);
  box-shadow: 0 6px #002e7d;
}

.cta-final .btn-3d:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

.plan-card ul.features {
  list-style: none;      /* elimina bullets */
  padding: 0;            /* quita sangría izquierda */
  margin: 10px 0 0;      /* ajusta espacio arriba */
}

.plan-card ul.features li {
  margin: 4px 0;         /* espacio entre items */
  display: flex; 
  align-items: center;
  gap: 8px;              /* separa emoji/texto */
  color: var(--text);    /* asegura color correcto */
  font-size: 14px;
  line-height: 1.4;
}