

.hero-info {
  position: relative;
  height: 55vh;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.hero-content p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
}

/* ===== INTRO ===== */

.flujo-decoraeventos {
  background: #fafafa;
}

.intro-flujo {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
}

/* ===== CARDS ===== */

.paso-card {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.paso-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.paso-icono {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.paso-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: #222;
}

.paso-card p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== CTA ===== */

.cta-section {
  margin-top: 5rem;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #111 0%, #222 100%);
  color: #fff;
  border-radius: 16px;
}

.cta-section h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.cta-section p {
  color: #ccc;
  margin-bottom: 2rem;
}

/* ===== BOTONES ===== */

.botonx {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #111;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 500;
}

.botonx:hover {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
}

.volver-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #ccc;
  border-radius: 40px;
  text-decoration: none;
  color: #444;
  transition: 0.3s ease;
}

.volver-btn:hover {
  background: #eee;
  color: #111;
}