.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
  padding: 0rem 6rem;
  flex-wrap: wrap;
  min-height: 100vh;
  background-color: black;
  gap: 2rem;
  padding-top: 40px;
}

/* Contenido */
.hero-content {
  max-width: 600px;
  flex: 1;
  text-align: left;
}

.hero-name {
  display: inline-block;
  background: #f8e1ec;
  color: #d63384;
  padding: 6px 14px;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  border-radius: 6px;
  margin-top: 2rem;
  font-weight: bold;
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #d63384;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.hero p {
  margin: 1.2rem 0 2rem;
  line-height: 1.6;
  color: white;
  font-size: 1rem;
  text-align: justify;
}

/* Botones */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-buttons a {
  color: white;
  background-color: #d63384;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-buttons a:hover {
  background-color: #a81d64;
}

.hero-buttons i {
  font-size: 1.1rem;
}

/* Imagen */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 100%;
}

/* 📱 Responsivo */
@media (max-width: 1024px) {
  .hero {
    padding: 3rem 2rem;
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    padding-top: 40px;
  }


  .hero h2 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image img {
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-image img {
    max-width: 220px;
  }
}
