/* ==========================================
   HERO — SOLO PARA SERVICIOS EMPRESAS
   ========================================== */

.hero-somos {
  position: relative;
  width: 100%;
  height: 45vh;
  overflow: hidden;
}

.hero-somos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay oscuro + centrado de texto */
.hero-somos .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.hero-somos h1 {
  font-size: var(--fs-xl);
  margin-bottom: 8px;
}

.hero-somos p {
  font-size: var(--fs-md);
}

/* Responsive HERO */
@media (max-width: 768px) {
  .hero-somos {
    height: 35vh;
  }
}


/* ==========================================
   BLOQUE INTRO (texto-somos)
   ========================================== */

.texto-somos {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 15px;
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.texto-somos p {
  margin-bottom: 16px;
}

.texto-somos ul {
  margin-top: 6px;
  padding-left: 22px;
  list-style: disc;
}

.texto-somos li {
  margin-bottom: 8px;
}


/* ==========================================
   PROPUESTA DE VALOR (valor-empresas)
   ========================================== */

.valor-empresas {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 20px 20px;
  color: #444;
}

.valor-empresas .contenedor {
  max-width: 100%;
}

.icon {
  display: inline-block;
  margin-right: 6px;
}

.valor-empresas h3 {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 1.15rem;
  margin: 18px 0 6px;
}

.valor-empresas p,
.valor-empresas ul {
  margin: 0 0 10px 30px;
  line-height: 1.7;
}

.valor-empresas ul {
  padding-left: 18px;
  list-style: disc;
}

.valor-empresas li {
  margin-bottom: 6px;
}


/* ==========================================
   PASOS DEL PROCESO (pasos-reclutamiento)
   ========================================== */

.pasos-reclutamiento {
  max-width: 1000px;
  margin: 0 auto;
  padding: 25px 20px 40px;
}

.pasos-reclutamiento .contenedor {
  max-width: 100%;
}

/* Título sección */
.pasos-reclutamiento h2 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.4rem;
  margin: 0 0 8px;
}

/* Bajada del título */
.pasos-reclutamiento > .contenedor > p {
  margin: 0 0 22px;
  line-height: 1.7;
}

/* Lista de pasos */
.pasos-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Cada paso */
.paso-item {
  margin-bottom: 22px;
}

/* Título de cada paso */
.paso-item h3 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.05rem;
  margin: 0 0 4px;
}

/* Texto de cada paso */
.paso-item p {
  margin: 0 0 0 30px;
  line-height: 1.7;
}


/* ==========================================
   STICKY: CONTACTA UN EJECUTIVO
   ========================================== */

.contacta-ejecutivo-sticky {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background: #ffffff;
  border-radius: 8px 0 0 8px;
  padding: 12px 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  max-width: 220px;
  font-size: 0.9rem;
}

.contacta-ejecutivo-sticky .titulo-sticky {
  font-weight: 700;
  margin: 0 0 4px 0;
}

.contacta-ejecutivo-sticky .texto-sticky {
  margin: 0;
  line-height: 1.4;
}

.contacta-ejecutivo-sticky a {
  text-decoration: underline;
}

/* En móviles, bajar el sticky un poco */
@media (max-width: 768px) {
  .contacta-ejecutivo-sticky {
    top: auto;
    bottom: 20px;
    transform: none;
  }
}
