.servicio-par {
  width: 100%;
  min-height: calc(100vh);
  margin: 0;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  gap: 3rem;
  background-color: #ffffff;
  position: relative;
}

.servicio-par__header {
  text-align: center;
  margin-bottom: 0;
  max-width: 1300px;
}

.servicio-par h2 {
  font-size: 45px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin: 0 0 1rem 0;
  color: #2c2c2c;
  line-height: 1.2;
}

.servicio-par__resaltado {
  color: #f78c2b;
  font-weight: 700;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px  1px 0 #000,
    1px  1px 0 #000;
}


.servicio-par__subtitulo {
  font-size: 25px;
  font-weight: 400;
  margin: 0 0 1.5rem 0;
  color: #666;
  line-height: 1.4;
  font-weight: 600;
}

.servicio-par__subtitulo strong {
  color: #f78c2b;
  font-weight: 700;
  font-size: 30px;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px  1px 0 #000,
    1px  1px 0 #000;
}

.servicio-par__descripcion {
  font-size: 23px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
  width: 100%;
  max-width: 1500px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.servicio-par__contenido {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 4rem;
  width: 100%;
  max-width: 1200px;
  flex: 1;
}

/* Columna izquierda */
.servicio-par__izquierda {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.servicio-par__imagen {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.servicio-par__imagen img {
  width: 100%;
  max-width: 500px;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Columna derecha */
.servicio-par__derecha {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
}

/* Beneficios */
.servicio-par__beneficios {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  justify-content: flex-start;
  flex: 1;
}

.beneficio {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 55px;
}

.beneficio:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.beneficio__icono {
  flex-shrink: 0;
}

.beneficio__icono img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.beneficio__texto {
  flex: 1;
  font-size: 20px;
  line-height: 1.5;
  color: #444;
}

.beneficio__texto strong {
  color: #2c2c2c;
  font-weight: 600;
}

/* Tipos de servicio */
.tipo-par {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  width: 100%;
  flex-shrink: 0;
  padding-top: 1rem;
}

.tipo-par__texto {
  font-size: 20px;
  font-weight: 600;
  color: #555;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
}

/* Botones */
.par-boton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  color: #000000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  width: 100%;
  max-width: 280px;
  letter-spacing: 0.3px;
}

.par-boton__icono {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 8px;
}

.par-boton--enterprise {
  background: linear-gradient(135deg, #f78c2b 0%, #e67e22 100%);
}

.par-boton--enterprise:hover {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(231, 126, 34, 0.3);
}

.par-boton--pyme {
  background: linear-gradient(135deg, #f78c2b 0%, #e67e22 100%);
}

.par-boton--pyme:hover {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(231, 126, 34, 0.3);
}


/* Tablet y móviles grandes (768px y menor) */
@media (max-width: 768px) {
  .servicio-par {
    padding: 4rem 1.5rem;
    gap: 2rem;
  }

  .servicio-par h2 {
    font-size: 32px;
  }

  .servicio-par__subtitulo {
    font-size: 27px;
  }

  .servicio-par__descripcion {
    font-size: 22px;
  }

  .servicio-par__contenido {
    display: grid;
    grid-template-areas: 
      "beneficios"
      "boton-enterprise"
      "boton-pyme";
    gap: 2rem;
    width: 100%;
    max-width: 500px;
  }

  .servicio-par__imagen {
    display: none;
  }

  .servicio-par__izquierda {
    grid-area: boton-enterprise;
    width: 100%;
    justify-content: center;
  }

  .servicio-par__derecha {
    display: contents;
  }

  .servicio-par__beneficios {
    grid-area: beneficios;
    margin-bottom: 1rem;
  }

  .tipo-par--pyme {
    grid-area: boton-pyme;
    width: 100%;
  }

  .beneficio {
    padding: 0.8rem 1rem;
  }

  .beneficio__texto {
    font-size: 0.9rem;
  }

  .par-boton {
    max-width: 100%;
    font-size: 0.9rem;
    padding: 1rem 1.2rem;
  }
}

/* Móviles pequeños (440px y menor) */
@media (max-width: 440px) {
  .servicio-par {
    padding: 3rem 1rem;
    gap: 1.5rem;
  }

  .servicio-par h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .servicio-par__subtitulo {
    font-size: 25px;
  }

  .servicio-par__descripcion {
    font-size: 18px;
  }

  .servicio-par__contenido {
    gap: 1.5rem;
  }

  .servicio-par__beneficios {
    gap: 1rem;
  }

  .beneficio {
    padding: 0.7rem 0.8rem;
    gap: 0.8rem;
  }

  .beneficio__icono img {
    width: 35px;
    height: 35px;
  }

  .beneficio__texto {
    font-size: 0.85rem;
  }

  .tipo-par__texto {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .par-boton {
    font-size: 0.85rem;
    padding: 0.9rem 1rem;
    gap: 0.6rem;
  }

  .par-boton__icono {
    width: 24px;
    height: 24px;
  }
}