/* ==========================================
   HERO — SERVICIOS PARTICULARES
   ========================================== */

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

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

.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;
  }
}


/* ==========================================
   INTRO PARA PERSONAS (texto-somos)
   ========================================== */

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

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

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

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

/* Bloque de llamada a la acción */
.texto-somos .call-to-action {
  margin-top: 24px;
  font-weight: 500;
}

.texto-somos .call-to-action a {
  margin-left: 6px;
}


/* ==========================================
   BLOQUE SERVICIOS PARTICULARES
   ========================================== */

.servicios-particulares-bloque {
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 20px 20px 30px;
  background: #f9fbff;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.servicios-particulares-bloque h2 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Ícono pequeño delante de títulos */
.icon {
  display: inline-block;
  margin-right: 4px;
}

/* Cada ítem de servicio */
.servicio-item {
  margin-bottom: 18px;
}

.servicio-item h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.servicio-item p {
  margin: 0 0 0 26px;
  line-height: 1.7;
  color: #555;
}

/* Responsive: reducir un poco márgenes en móviles */
@media (max-width: 768px) {
  .texto-somos {
    padding: 30px 16px 16px;
  }

  .servicios-particulares-bloque {
    margin: 0 10px 30px;
    padding: 18px 16px 24px;
  }

  .servicio-item p {
    margin-left: 20px;
  }
}
