/* ============================= */
/* SECCIÓN FAQ                   */
/* ============================= */

.faq-section {
  position: relative;
  padding: 90px 10%;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fc 100%);
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 320px; height: 320px;
  background: linear-gradient(135deg, rgba(0,194,255,0.12), rgba(10,31,68,0.03));
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
}

.faq-section::after {
  content: "";
  position: absolute;
  right: -80px; bottom: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(0, 194, 255, 0.06);
  pointer-events: none;
}

.faq-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.faq-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(10, 31, 68, 0.06);
  color: var(--azul-principal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.faq-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--azul-principal);
  margin-bottom: 12px;
}

.faq-header p {
  color: var(--gris-texto);
  font-size: 17px;
  line-height: 1.7;
}

.faq-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.faq-card {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(10, 31, 68, 0.08);
  border: 1px solid rgba(10, 31, 68, 0.05);
  transition: all 0.35s ease;
}

.faq-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(10, 31, 68, 0.12);
}

.faq-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,194,255,0.15), rgba(10,31,68,0.08));
  box-shadow: inset 0 0 0 1px rgba(0, 194, 255, 0.12);
}

.faq-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--azul-principal);
  stroke-width: 2;
}

.faq-card h3 {
  font-size: 20px;
  line-height: 1.4;
  color: var(--azul-principal);
  margin-bottom: 16px;
  font-weight: 700;
}

.faq-card p {
  color: #5a6b85;
  font-size: 16px;
  line-height: 1.7;
}

/* ============================= */
/* RESPONSIVE FAQ                */
/* ============================= */

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

@media (max-width: 640px) {
  .faq-section {
    padding: 70px 6%;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-header h2 {
    font-size: 32px;
  }

  .faq-card {
    padding: 28px 20px;
  }
}
