/* =========================
   MÓDULO 6: SOPORTE
========================= */

.support-section {
  position: relative;
  width: 100%;
  padding: 105px 0 115px;
  background:
    radial-gradient(circle at top left, rgba(28, 118, 210, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  overflow: hidden;
}

.support-section::before {
  content: "";
  position: absolute;
  right: -150px;
  top: 120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 118, 210, 0.10), transparent 66%);
  pointer-events: none;
}

.support-section::after {
  content: "";
  position: absolute;
  left: -160px;
  bottom: 80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.09), transparent 66%);
  pointer-events: none;
}

.support-container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.support-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.support-header h2 {
  margin: 0;
  color: #12233f;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.support-header p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #617089;
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Proceso */
.support-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.support-step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 300px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(22, 57, 101, 0.10);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(28, 58, 102, 0.08);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.support-step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(28, 118, 210, 0.10), transparent 42%),
    linear-gradient(315deg, rgba(0, 174, 239, 0.07), transparent 40%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .support-step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(28, 118, 210, 0.28);
    box-shadow: 0 28px 72px rgba(28, 58, 102, 0.14);
  }

  .support-step-card:hover::before {
    opacity: 1;
  }
}

.support-step-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(28, 118, 210, 0.12);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 800;
}

.support-step-icon {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: #1c76d2;
  background:
    radial-gradient(circle at top, rgba(28, 118, 210, 0.18), transparent 62%),
    #edf5ff;
  font-size: 1.35rem;
  box-shadow: inset 0 0 0 1px rgba(28, 92, 168, 0.10);
}

.support-step-card h3 {
  position: relative;
  z-index: 2;
  min-height: 2.4em;
  margin: 0 0 12px;
  color: #10213b;
  font-size: 1.22rem;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}

.support-step-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #60708a;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* CTA */
.support-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding: 28px 32px;
  border-radius: 30px;
  border: 1px solid rgba(22, 57, 101, 0.10);
  background:
    linear-gradient(135deg, rgba(28, 118, 210, 0.08), rgba(255,255,255,0.92)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(28, 58, 102, 0.08);
  overflow: hidden;
}

.support-cta h3 {
  margin: 0 0 6px;
  color: #10213b;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.support-cta p {
  margin: 0;
  color: #60708a;
  font-size: 0.96rem;
  line-height: 1.55;
}

.support-cta-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #1c76d2 0%, #1b5fb7 100%);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(28, 118, 210, 0.24);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.support-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(28, 118, 210, 0.30);
}

.support-header h2,
.support-header p {
  overflow-wrap: break-word;
}

.support-step-card h3,
.support-step-card p {
  overflow-wrap: break-word;
}

/* =========================
   RESPONSIVE: SOPORTE
========================= */

@media (max-width: 768px) {
  .support-section {
    padding: 80px 0 86px;
  }

  .support-container {
    width: min(100% - 30px, 1180px);
  }

  .support-header {
    max-width: 680px;
    margin-bottom: 42px;
  }

  .support-header h2 {
    font-size: clamp(1.85rem, 7vw, 2.4rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .support-header p {
    max-width: 620px;
    margin-top: 16px;
    font-size: 0.96rem;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .support-section {
    padding: 68px 0 74px;
  }

  .support-container {
    width: min(100% - 24px, 1180px);
  }

  .support-header {
    margin-bottom: 34px;
  }

  .support-header h2 {
    font-size: clamp(1.7rem, 8.5vw, 2rem);
    line-height: 1.14;
    letter-spacing: -0.03em;
  }

  .support-header p {
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.6;
  }
}

@media (max-width: 1100px) {
  .support-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-step-card {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .support-process {
    gap: 16px;
  }

  .support-step-card {
    min-height: 270px;
    padding: 24px;
    border-radius: 24px;
  }

  .support-step-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 16px;
  }

  .support-step-number {
    top: 20px;
    right: 20px;
    font-size: 2.3rem;
  }

  .support-step-card h3 {
    min-height: auto;
    font-size: 1.15rem;
  }

  .support-step-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 560px) {
  .support-process {
    grid-template-columns: 1fr;
  }

  .support-step-card {
    min-height: auto;
    padding: 23px 20px;
  }

  .support-step-card h3 {
    padding-right: 42px;
  }
}