/* =============================================
   GRUPO SALVADOR — CSS GESTIÓN EMPRESARIAL
   ============================================= */

/* ── HERO ── */
.gs-gst-hero { background: var(--gs-gray-light, #F5F5F5); padding: 64px 0 56px; text-align: center; }
.gs-gst-hero__inner { max-width: 760px; margin: 0 auto; }
.gs-gst-hero__eyebrow {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--gs-red, #8B1A1A);
  margin-bottom: 14px;
}
.gs-gst-hero__title {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  color: #111;
  margin-bottom: 20px;
}

/* ── BLOQUES ── */
.gs-gst-bloques { background: #fff; padding: 56px 0 64px; }
.gs-gst-bloques__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gs-gst-card {
  border: 1.5px solid #E5E5E5;
  border-radius: 12px;
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, border-color .2s;
}
.gs-gst-card:hover {
  box-shadow: 0 6px 26px rgba(0,0,0,.09);
  border-color: #d0d0d0;
}
.gs-gst-card__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gs-red, #8B1A1A);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.gs-gst-card__title { font-size: 18px; font-weight: 700; color: #111; margin-bottom: 10px; }
.gs-gst-card__desc { font-size: 14px; color: #666; line-height: 1.55; margin-bottom: 16px; }
.gs-gst-card__list { list-style: none; flex: 1; margin-bottom: 22px; }
.gs-gst-card__list li {
  font-size: 14px; color: #555; line-height: 1.5;
  padding-left: 16px; margin-bottom: 10px;
  position: relative;
}
.gs-gst-card__list li::before {
  content: "•";
  position: absolute; left: 0; top: 0;
  color: #999;
}
.gs-gst-card__cta {
  align-self: flex-start;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  background: var(--gs-red, #8B1A1A);
  padding: 10px 22px;
  border-radius: 999px;
  transition: background .2s;
}
.gs-gst-card__cta:hover { background: var(--gs-red-hover, #6E1414); }

/* ── INTRO ── */
.gs-gst-intro { max-width: 640px; margin: 0 auto 40px; text-align: center; font-size: 16px; color: #555; line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .gs-gst-bloques__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .gs-gst-hero { padding: 48px 0 40px; }
  .gs-gst-card { padding: 26px 20px 24px; }
}
