/* HERO GENERAL */
.hero {
  display: flex;
  flex-direction: row;
  align-items: start !important;
  gap: 40px;
  padding: 60px 20px;
  text-align: center;
  justify-content: center;
}

/* Imagen */
.hero-image img {
  max-width: 700px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* BLOQUE DE TEXTO */
.hero-text-container {
  max-width: 1200px;
  width: 90%;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(227, 140, 160, 0.2);
}

/* ================================
   HERO INTERNO → proporción 40 / 60
================================ */
.hero-text > .hero {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* imagen */
.hero-text > .hero .hero-image {
  flex: 4 1 0;
}

/* texto */
.hero-text > .hero .hero-p {
  flex: 6 1 0;
}

/* imagen ocupa todo su bloque */
.hero-text > .hero .hero-image img {
  width: 100%;
  max-width: none;
}

/* ================================
   TIPOGRAFÍA
================================ */
.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #e38ca0;
  text-align: start;
}

.hero-text h2 {
  font-size: 1.5rem;
  margin: 20px 0 10px;
  color: #e38ca0;
  text-align: start;
}

.hero-text h3 {
  margin: 20px 0 5px;
  font-size: 1.2rem;
  color: #e38ca0;
  text-align: start;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: justify;
  color: #333;
}

.hero-text ul {
  margin: 10px 0 20px 20px;
  list-style: disc;
  line-height: 1.6;
  color: #333;
}

/* ================================
   BOTONES
================================ */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-primary {
  background-color: #e38ca0;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  background-color: #fff;
  color: #e38ca0;
  border: 2px solid #e38ca0;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

/* LOGO SECUNDARIO */
.hero-logo img {
  max-width: 680px;
  margin-top: 20px;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .hero-text-container {
    padding: 30px;
    width: 95%;
  }

  .hero {
    padding-left: 0px;
    padding-right: 0px;
  }

  .hero img {
    max-width: 550px;
  }
}

h1 {
  text-align: center;
}

/* cuando no caben → columna */
@media (max-width: 768px) {
  .hero-text > .hero {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .hero-image img {
    max-width: 300px;
  }

  .hero-text-container {
    padding: 20px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 1.2rem;
  }

  .hero-text p,
  .hero-text ul {
    font-size: 0.95rem;
  }
}
