.hero {
  background: url('../images/sep29_2.webp') center/cover no-repeat;
  height: 65vh;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 100%;
  height: 100%;
background:
radial-gradient(circle at top left, rgba(14, 0, 218, 0.5) 10%, transparent 40%),
radial-gradient(circle at 30% 10%, rgba(68, 223, 223, 0.5) 10%, transparent 40%),
radial-gradient(circle at 60% 10%, rgba(14, 0, 218, 0.5) 15%, transparent 40%),
  radial-gradient(circle at bottom right, rgba(68, 223, 223, 0.5) 10%, transparent 30%), 
  radial-gradient(circle at center, rgba(14, 0, 218, 0.1) 30%, transparent 50%),
radial-gradient(circle at 30% 80%, rgba(14, 0, 218, 0.4) 20%, transparent 30%),
  radial-gradient(circle at top right, rgba(0, 1, 1, 0.7) 15%, transparent 40%),
radial-gradient(circle at 65% 80%, rgba(68, 223, 223, 0.4) 10%, transparent 32%),
  radial-gradient(circle at bottom left, rgba(0, 1, 1, 0.7) 20%, transparent 40%),
rgba(4, 38, 43, 0.5);
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 8rem 0 0 5rem;
  padding: 2rem 5rem;
  color: white;
  text-align: left;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
}

.hero-content p {
  font-size: 25px;
  margin-top: 1rem;
  margin-bottom:0;
}

.hero-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.8rem;
  border: 2px solid white;
  background: white;
  color: #001b3a;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 20px;
}

.hero-button:hover {
  background: #001b3a;
  color: white;
}
/* ===========================
   TABLETS (≤ 1024px)
   =========================== */
@media (max-width: 1024px) {
  .hero {
    height: 75vh;
    background-position: center top;
  }
  .hero-content {
    margin: 6rem 0 0 3rem;
    padding: 1.5rem 3rem;
    max-width: 900px;
  }
  .hero-content h1 {
    font-size: 40px;
  }
  .hero-content p {
    font-size: 20px;
    margin-top: 2.5rem;
  }
  .hero-button {
    margin-top: 1.8rem;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
  }
}

/* ===========================
   TELÉFONOS (≤ 768px)
   =========================== */
@media (max-width: 768px) {
  .hero {
    height: 65vh;
    align-items: flex-end;
  }

  .hero-overlay {
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto 4rem auto;
    padding: 1.5rem;
    text-align: center;
    max-width: 600px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 18px;
    margin-top: 1.8rem;
  }

  .hero-button {
    margin-top: 1.5rem;
    padding: 0.7rem 1.3rem;
    font-size: 0.95rem;
    border-width: 1.5px;
  }
}

/* ===========================
   TELÉFONOS PEQUEÑOS (≤ 480px)
   =========================== */
@media (max-width: 480px) {
  .hero {
    height: 60vh;
    background-position: center;
  }

  .hero-content {
    margin: 0 auto 3rem auto;
    padding: 1.2rem;
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 16px;
    margin-top: 1.2rem;
  }

  .hero-button {
    margin-top: 1.2rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border-width: 1.5px;
    border-radius: 8px;
  }
}

/* ===========================
   EXTRAS (≤ 360px)
   =========================== */
@media (max-width: 360px) {
  .hero {
    height: 55vh;
  }
  .hero-content h1 {
    font-size: 22px;
  }
  .hero-content p {
    font-size: 15px;
  }
  .hero-button {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}
