/* ============================================================
   HIMPULSA — ciudad.css
   Estilos exclusivos de las páginas de ciudad:
   /bogota/ · /medellin/ · /cali/ · /barranquilla/ · /cartagena/
   Se carga DESPUÉS de paginas.css, así que tiene la última palabra.
   ============================================================ */

/* ─── ESTADÍSTICAS (columna derecha del bloque "¿Por qué…?") ─── */
.pg-split-fig { width: 100%; }
.pg-stats-ciudad {
  display: grid;
  gap: 16px;
}
.pg-stat-ciudad {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--bg);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio-md);
  padding: 24px 28px;
  transition: border-color .3s ease, transform .3s ease;
}
.pg-stat-ciudad:hover { border-color: rgba(196,251,54,0.35); transform: translateX(4px); }
.pg-stat-ciudad-num {
  font-family: var(--font-titulo);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  line-height: 1;
  color: var(--lima);
  min-width: 120px;
}
.pg-stat-ciudad-lbl {
  font-size: 15px;
  line-height: 1.5;
  color: var(--gris);
}

/* ─── TARJETAS DE PLANES ─── */
.pg-section .pg-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.pg-section .pg-cards .pg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  background: var(--bg2);
  border: 1px solid var(--gris-borde);
  border-radius: 16px;
  padding: 36px 30px 30px;
}
.pg-section .pg-cards .pg-card-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  border-radius: 14px;
  background: rgba(129,69,255,0.14);
  margin-bottom: 20px;
}
.pg-section .pg-cards .pg-card-titulo {
  font-family: var(--font-titulo);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}
.pg-section .pg-cards .pg-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gris);
  margin-bottom: 24px;
  flex-grow: 1;              /* empuja precio y botón al fondo: tarjetas parejas */
}
.pg-section .pg-cards .pg-card-precio {
  font-size: 14px;
  color: var(--gris-meta);
  line-height: 1.6;
  padding-top: 20px;
  border-top: 1px solid var(--gris-borde);
  margin-bottom: 22px;
}
.pg-section .pg-cards .pg-card-precio strong {
  display: block;
  font-family: var(--font-titulo);
  font-size: 30px;
  font-weight: 900;
  color: var(--blanco);
  margin-bottom: 2px;
}
.pg-section .pg-cards .pg-card .btn-primary {
  display: block;
  width: 100%;
  text-align: center;
}

/* Tarjeta destacada (Plan Impulso) */
.pg-section .pg-cards .pg-card-featured {
  border: 1.5px solid var(--lima);
  background: linear-gradient(180deg, rgba(196,251,54,0.07), var(--bg2) 45%);
  box-shadow: 0 20px 60px rgba(129,69,255,0.18);
  transform: translateY(-8px);
}
.pg-section .pg-cards .pg-card-featured:hover { transform: translateY(-12px); }
.pg-section .pg-cards .pg-card-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--lima);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 6px 16px;
  border-radius: var(--radio-pill);
}

/* ─── PREGUNTAS FRECUENTES ─── */
.pg-section .pg-faq-lista {
  max-width: 820px;
  margin: 40px auto 0;
  display: grid;
  gap: 12px;
}
.pg-section .pg-faq-item {
  background: var(--bg);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radio-md);
  padding: 0 26px;
  transition: border-color .3s ease;
}
.pg-section .pg-faq-item.open { border-color: rgba(196,251,54,0.35); }
.pg-section .pg-faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  background: none;
  border: none;
  color: var(--blanco);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 22px 0;
}
.pg-section .pg-faq-ico {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(196,251,54,0.12);
  color: var(--lima);
  font-size: 20px;
  line-height: 1;
}
.pg-section .pg-faq-resp {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.pg-section .pg-faq-resp p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gris);
  padding-bottom: 22px;
  margin: 0;
}

/* ─── CTA FINAL ─── */
section.pg-cta {
  max-width: none;
  padding: var(--section-pad);
  background:
    radial-gradient(circle at 50% 0%, rgba(129,69,255,0.22), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--gris-borde);
}
section.pg-cta > * { max-width: 700px; margin-left: auto; margin-right: auto; }
.pg-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .pg-section .pg-cards { grid-template-columns: 1fr; max-width: 480px; gap: 32px; }
  .pg-section .pg-cards .pg-card-featured,
  .pg-section .pg-cards .pg-card-featured:hover { transform: none; }
}
@media (max-width: 600px) {
  .pg-stat-ciudad { padding: 20px; gap: 16px; }
  .pg-stat-ciudad-num { min-width: 90px; }
  .pg-section .pg-faq-item { padding: 0 18px; }
  .pg-section .pg-faq-btn { font-size: 15px; }
  .pg-cta-btns a { width: 100%; text-align: center; }
}