/* ============================================================
   DCS S.A. — Home Page Styles
   ============================================================ */

/* ── STATS STRIP (sección oscura con counters) ── */

.stats-strip {
  padding-block: var(--space-12);
}

.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  text-align: center;
}

.stats-strip .stat-item {
  padding: var(--space-4) var(--space-3);
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.stats-strip .stat-item:last-child {
  border-right: none;
}

/* ── VALUE PROPS ── */

.value-props {
  background: var(--color-white);
}

/* ── SOLUTIONS OVERVIEW ── */

.solutions-overview {
  position: relative;
}

.solutions-overview__cta {
  text-align: center;
  margin-top: var(--space-8);
}

/* ── PARTNERS PREVIEW ── */

.partners-preview .section-header {
  margin-bottom: var(--space-6);
}

/* ── CONTACTO TEASER ── */

.contact-teaser {
  background: var(--color-bg-lighter);
}

.contact-teaser__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-teaser__title {
  font-size: var(--text-h2);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  letter-spacing: var(--letter-spacing-heading);
  line-height: var(--line-height-heading);
  margin-bottom: var(--space-2);
}

.contact-teaser__subtitle {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

.contact-teaser__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact-teaser__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-bg-light);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-light);
}

.contact-teaser__map-placeholder {
  text-align: center;
  color: var(--color-text-muted);
  padding: var(--space-6);
}

.contact-teaser__map-placeholder svg {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-2);
  color: var(--color-primary);
}

/* ── RESPONSIVE ── */

@media (max-width: 960px) {
  .stats-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-strip .stat-item:nth-child(2) {
    border-right: none;
  }

  .stats-strip .stat-item:nth-child(1),
  .stats-strip .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}

@media (max-width: 480px) {
  .stats-strip .container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
  }

  .stats-strip .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .stat-number {
    font-size: 40px;
  }
}
