/* =====================================
   SECTION SERVICIOS AUTOMOTRIZ COMUNA
   ===================================== */

.section-servicios-automotriz-comuna {
  padding: 4.5rem 0;
  background: #f8fafc;
}

/* =====================================
   HEADER
   ===================================== */

.section-servicios-automotriz-comuna header {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ETIQUETA SUPERIOR OPCIONAL */

.section-servicios-automotriz-comuna header .section-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #22c55e;
  margin-bottom: .4rem;
  display: block;
}

/* TITULO PRINCIPAL */

.section-servicios-automotriz-comuna header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #020617;
  margin-bottom: 0.6rem;
  position: relative;
}

/* LINEA DECORATIVA DEL TITULO */

.section-servicios-automotriz-comuna header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #22c55e;
  border-radius: 3px;
  margin: 0.7rem auto 0;
}

/* SUBTITULO */

.section-servicios-automotriz-comuna header p {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.65;
}

/* =====================================
   INFO BOX
   ===================================== */

.section-servicios-automotriz-comuna .info-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;

  background: #ffffff;
  border-radius: 14px;

  padding: 1.9rem 1.4rem;

  border: 1px solid #e2e8f0;

  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.06);

  transition: 
  transform .25s ease,
  box-shadow .25s ease,
  border-color .25s ease;
}

/* HOVER */

.section-servicios-automotriz-comuna .info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.12);
  border-color: #cbd5f5;
}



.section-servicios-automotriz-comuna .info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #020617;

  margin-bottom: 0.65rem;
}

/* =====================================
   TEXTO
   ===================================== */

.section-servicios-automotriz-comuna .info-text {
  font-size: 0.96rem;
  line-height: 1.65;
  color: #475569;

  margin-bottom: 1.2rem;
}

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

@media (max-width: 992px) {

  .section-servicios-automotriz-comuna {
    padding: 3.5rem 0;
  }

  .section-servicios-automotriz-comuna header h2 {
    font-size: 1.8rem;
  }

  .section-servicios-automotriz-comuna .info-box {
    padding: 1.7rem 1.3rem;
  }

}

@media (max-width: 576px) {

  .section-servicios-automotriz-comuna {
    padding: 3rem 0;
  }

  .section-servicios-automotriz-comuna header h2 {
    font-size: 1.55rem;
  }

  .section-servicios-automotriz-comuna header p {
    font-size: .98rem;
  }

  .section-servicios-automotriz-comuna .info-img-xs {
    width: 80px;
    height: 80px;
  }

}