/* =========================
   CONTAINER
========================= */

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 60px 0;
}

.section.alt {
  background: #f8fafc;
}

/* =========================
   TITLES
========================= */

.section-title {
  font-size: 26px;
  margin-bottom: 10px;
  text-align: center;
}

.section-desc {
  text-align: center;
  font-size: 15px;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto 20px;
}

/* =========================
   TEXT ALIGN
========================= */

.text-center {
  text-align: center;
}

/* =========================
   GRID BASE
========================= */

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* AUTO GRID (cards tipo cobertura, servicios, etc.) */
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

/* =========================
   CARDS
========================= */

.card {
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

/* CARD CENTRADA (como cobertura) */
.card.center {
  text-align: center;
  font-size: 14px;
}

/* =========================
   SPACING
========================= */

.mt-2 {
  margin-top: 20px;
}

/* =========================
   STATS
========================= */

.stats-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1;
  min-width: 180px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.stat-card h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 14px;
  opacity: 0.8;
}

/* =========================
   TESTIMONIOS (3 COLUMNAS)
========================= */

.testimonial-slider {
  position: relative;
  min-height: 220px;
}

.testimonial-group {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-group.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.testimonial-meta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.tag.cliente {
  background: #2563eb;
  color: #fff;
}

.tag.empresa {
  background: #059669;
  color: #fff;
}

.tag.anonimo {
  background: #6b7280;
  color: #fff;
}

.location {
  font-size: 13px;
  opacity: 0.7;
}

/* =========================
   APPS SECTION
========================= */

.apps-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}


/* TEXTO */
.apps-content h3 {
  margin-bottom: 10px;
}

.apps-desc {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 600px;
}

/* =========================
   COVERAGE EXTRA TEXT
========================= */

.coverage-more {
  display: none;
}

/* =========================
   BUTTONS WRAPPER FIX
========================= */

.buttons.center {
  justify-content: center;
}