/* Soporte — help center style (spacing tuned for desktop + mobile) */

.soporte-main {
  background-color: #ffffff;
  /* Padding inferior moderado; el .footer global ya aporta separación */
  padding: 44px 20px 36px;
}

.soporte-wrap {
  max-width: 650px;
  margin: 0 auto;
}

/* Título → opciones */
.soporte-page-head {
  text-align: left;
  margin-bottom: 28px;
}

.soporte-title {
  font-family: var(--font-roobert);
  font-size: clamp(1.75rem, 4.5vw, 2.125rem);
  font-weight: 600;
  color: #111827;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Label de sección → filas */
.soporte-section-label {
  font-family: var(--font-roobert);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a1a1aa;
  margin: 0 0 14px;
  line-height: 1.3;
}

/* Bloque “¿No encuentras…?” */
.soporte-section {
  margin-top: 36px;
}

.soporte-followup {
  margin-top: 40px;
}

.soporte-followup-title {
  font-family: var(--font-roobert);
  font-size: 1rem;
  font-weight: 600;
  color: #3f3f46;
  margin: 0 0 16px;
  line-height: 1.35;
}

@media (min-width: 480px) {
  .soporte-followup {
    margin-top: 48px;
  }

  .soporte-page-head {
    margin-bottom: 36px;
  }
}

/* Filas clicables */
.soporte-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.soporte-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  padding: 15px 16px;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  box-sizing: border-box;
  width: 100%;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

button.soporte-row {
  -webkit-appearance: none;
  appearance: none;
}

.soporte-row-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f4f4f5;
  color: #71717a;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.soporte-row-icon--refund {
  background: #ecfdf5;
  color: #059669;
}

.soporte-row-icon--purchase {
  background: #eff6ff;
  color: #2563eb;
}

.soporte-row-icon--panel {
  background: #faf5ff;
  color: #7c3aed;
}

.soporte-row-icon--solutions {
  background: #fff7ed;
  color: #ea580c;
}

.soporte-row-icon--contact {
  background: #ecfeff;
  color: #0891b2;
}

.soporte-row-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.soporte-row-icon--faq {
  background: #fdf2f8;
  color: #db2777;
}

.soporte-row:hover .soporte-row-icon {
  background: #ececf0;
}

.soporte-row:hover .soporte-row-icon--refund {
  background: #d1fae5;
  color: #047857;
}

.soporte-row:hover .soporte-row-icon--purchase {
  background: #dbeafe;
  color: #1d4ed8;
}

.soporte-row:hover .soporte-row-icon--panel {
  background: #f3e8ff;
  color: #6d28d9;
}

.soporte-row:hover .soporte-row-icon--solutions {
  background: #ffedd5;
  color: #c2410c;
}

.soporte-row:hover .soporte-row-icon--contact {
  background: #cffafe;
  color: #0e7490;
}

.soporte-row:hover .soporte-row-icon--faq {
  background: #fce7f3;
  color: #be185d;
}

.soporte-row-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
  text-align: left;
}

@media (min-width: 480px) {
  .soporte-row {
    min-height: 56px;
    padding: 16px 18px;
  }
}

.soporte-row:hover {
  background: #fafafa;
  border-color: #d4d4d8;
}

.soporte-row:focus-visible {
  outline: 2px solid #3d15ce;
  outline-offset: 2px;
}

.soporte-row-title {
  font-family: var(--font-roobert);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #18181b;
  line-height: 1.35;
}

.soporte-row-desc {
  font-size: 0.8125rem;
  color: #71717a;
  line-height: 1.45;
}

.soporte-row-chevron {
  flex-shrink: 0;
  align-self: center;
  color: #a1a1aa;
}

.soporte-row:hover .soporte-row-chevron {
  color: #71717a;
}

/* Móvil: márgenes laterales y menos aire bajo el footer */
@media (max-width: 479px) {
  .soporte-main {
    padding: 36px 16px 28px;
  }

  .soporte-page-head {
    margin-bottom: 24px;
  }

  .soporte-section-label {
    margin-bottom: 12px;
  }

  .soporte-section {
    margin-top: 32px;
  }

  .soporte-followup {
    margin-top: 36px;
  }

  .soporte-followup-title {
    margin-bottom: 14px;
  }

  .soporte-nav {
    gap: 9px;
  }
}

