.hero-carousel img {
  height: 70vh;
  object-fit: cover;
}

.hero-overlay {
  max-width: 90%;
  text-shadow: 0 4px 20px rgba(0,0,0,.35);
}

.categorias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.categoria img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.pasos-grid .paso {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.pasos-grid .paso:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.paso-1 { background-color: #cf4b9e; }
.paso-2 { background-color: #e180b6; }
.paso-3 { background-color: #fb9ed5; }

.cta {
  background-image: url('/recursos/Empieza.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}