.hero {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 250px;
  }
}

/* HERO TEXTO */
.hero-texto {
  width: 100%;
  padding: 20px 60px 60px;
  /* 👈 solo espacio normal arriba */
  background: white;
}

.hero-contenido {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* TEXTO IZQUIERDA */
.hero-texto-info {
  flex: 1.2;
}

.hero-texto-info h1 {
  font-size: 42px;
  font-weight: 600;
  color: #111;
  margin: 0 0 20px 0;
  /* 🔥 quitamos margen arriba */
}

.hero-texto-info p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
  /* 🔥 evita espacios raros */
}

/* LOGO DERECHA */
.hero-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo img {
  width: 100%;
  max-width: 420px;
  height: auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-contenido {
    flex-direction: column;
    text-align: center;
  }

  .hero-logo {
    justify-content: center;
  }

  .hero-logo img {
    width: 70%;
    max-width: 300px;
  }
}