/* ==========================================================================
   :: seccion-s (Mis Servicios)
   ========================================================================== */

.seccion-s {
  padding: 2rem;
  background-color: #f9fafb;
}

/* modulo-s1: Encabezado */
.modulo-s1 {
  margin-bottom: 2.5rem;
}

.contenido-s11 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.contenido-s12 {
  color: #6b7280;
  font-size: 1rem;
}

/* modulo-s2: Grid de servicios */
.modulo-s2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

/* bloque-s21: Tarjeta individual */
.bloque-s21 {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.bloque-s21:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* contenido-s211: Contenedor de Imagen y Badge */
.contenido-s211 {
  position: relative;
  height: 200px;
}

.contenido-s211 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-s2111 {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #000;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* contenido-s212: Información */
.contenido-s212 {
  padding: 1.5rem;
  flex-grow: 1;
}

.titulo-s2121 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.descripcion-s2122 {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* contenido-s213: Footer y Botones */
.contenido-s213 {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-s2131 {
  font-size: 0.813rem;
  color: #9ca3af;
}

.link-s2132 {
  background: #000;
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.link-s2132:hover {
  opacity: 0.8;
}
