/* ===============================
   POR QUÉ ELEGIRNOS
================================ */

.porque-elegirnos {
  background-color: #ffffff;
  padding: 80px 20px;
}

.porque-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
}

/* ===============================
   ITEM
================================ */

.porque-item {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

/* visible al hacer scroll */
.porque-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* animación escalonada */
.porque-item:nth-child(1) {
  transition-delay: 0.1s;
}

.porque-item:nth-child(2) {
  transition-delay: 0.3s;
}

.porque-item:nth-child(3) {
  transition-delay: 0.5s;
}

.porque-item img {
  display: block;
  margin: 0 auto 25px auto;
  width: 90px;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

/* iconos */
.porque-item img {
  width: 90px;
  height: auto;
  margin-bottom: 25px;
}

/* título */
.porque-item h3 {
  font-size: 22px;
  font-weight: 400;
  color: #111;
  margin-bottom: 15px;
}

/* texto */
.porque-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #777;
  max-width: 300px;
  margin: 0 auto;
}

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

/* celulares */
@media (max-width: 600px) {
  .porque-elegirnos {
    padding: 60px 15px;
  }

  .porque-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .porque-item img {
    width: 75px;
  }

  .porque-item h3 {
    font-size: 20px;
  }

  .porque-item p {
    font-size: 15px;
  }

  /* animación sin delay en mobile */
  .porque-item {
    transition-delay: 0s !important;
  }
}