body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f4f4f4;
  color: #222;
}

/* HERO BONITO */
.hero {
  position: relative;
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a23, #001f4d); /* degradado azul oscuro */
  color: white;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 122, 255, 0.45), transparent),
              radial-gradient(circle at bottom left, rgba(255, 0, 80, 0.35), transparent);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 20px;
}

.hero-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.4));
}

.hero h1 {
  font-size: 3rem;
  margin: 10px 0;
}

.hero p {
  font-size: 1.2rem;
  opacity: .9;
  margin-bottom: 20px;
}

/* BOTÓN DISCORD BONITO */
.btn-discord {
  display: inline-block;
  padding: 14px 32px;
  background: #5865F2;
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  font-size: 1.2rem;
  transition: 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.btn-discord:hover {
  background: #4752C4;
  transform: translateY(-2px);
}

/* SERVICES */
.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

.services h2 {
  text-align: center;
  margin: 40px 0 20px;
}

.service-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

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

.btn-pay {
  display: inline-block;
  padding: 10px 20px;
  background: #0070ba;
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 6px;
  transition: .2s;
}

.btn-pay:hover {
  background: #005a92;
}

/* CUADRO DE INFORMACIÓN */
.service-note {
  margin-top: 15px;
  padding: 10px 15px;
  background: #e0f0ff;
  border-left: 4px solid #0070ba;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #003366;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px 0;
  color: #333;
  font-size: 0.9rem;
}
