/* --- HERO SECTION --- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8%;
  color: #fff;
  text-align: left;
  background: none; /* el fondo lo controla el body */
}

.hero-content {
  max-width: 700px; /* antes era 520px */
  white-space: nowrap; /* evita el salto de línea en el H1 */
}


.hero h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero ul {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.hero ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #f1f1f1;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  position: relative;
  padding-left: 18px;
}

.hero ul li::before {
  content: "✔";
  color: #ff007d;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-button {
  display: inline-block;
  background-color: #ff007d;
  color: #fff;
  padding: 14px 34px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-button:hover {
  background-color: #ff007d;
  transform: translateY(-2px);
}
