/* LoWater Xpress — estilos exclusivos de /cobertura. Requiere main.css. */

.stats-row { display: flex; justify-content: center; gap: 60px; margin-top: 48px; }
.stat-item { text-align: center; }
.stat-value { font-family: 'Space Grotesk', sans-serif; font-size: 48px; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 14px; color: var(--gray); margin-top: 4px; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 32px; margin-bottom: 12px; }
.section-header p { color: var(--gray-light); }

.main-cities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.city-card-main {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.city-card-main:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2); }

.city-icon {
  width: 64px; height: 64px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
}

.city-card-main h3 { font-size: 22px; margin-bottom: 8px; }
.city-card-main p { font-size: 14px; color: var(--gray); margin-bottom: 16px; }

.city-badge {
  background: rgba(0, 230, 118, 0.15);
  color: var(--success);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.other-cities { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }

.city-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.city-card:hover { border-color: var(--primary); background: rgba(0, 212, 255, 0.1); transform: translateY(-4px); }
.city-card svg { width: 28px; height: 28px; color: var(--primary); margin-bottom: 12px; }
.city-card .name { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.city-card .status { font-size: 12px; color: var(--success); }

.more-cities-header { text-align: center; margin: 60px 0 48px; }
.more-cities-header h2 { font-size: 32px; margin-bottom: 12px; }
.more-cities-header p { color: var(--gray-light); }

.how-it-works { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }

.step-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
}

.step-number {
  width: 56px; height: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px; font-weight: 700; color: var(--dark);
  margin: 0 auto 20px;
}

.step-card h3 { font-size: 20px; margin-bottom: 12px; }
.step-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

.cta-section {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(14, 246, 204, 0.1) 100%);
  border-top: 1px solid rgba(0, 212, 255, 0.3);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 { font-size: 36px; margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: var(--gray-light); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

@media (max-width: 1024px) {
  .main-cities { grid-template-columns: repeat(2, 1fr); }
  .how-it-works { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-cities { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; gap: 32px; }
  .other-cities { grid-template-columns: repeat(2, 1fr); }
}
