/* =========================
   SECTION
========================= */
.por-que-elegirnos {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fafafa, #ffffff);
}

.elegirnos-container {
  max-width: 1300px; /* MÁS GRANDE */
  margin: auto;
}

/* HEADER */
.elegirnos-header {
  text-align: center;
  margin-bottom: 70px;
}

.elegirnos-header h2 {
  font-size: 3rem; /* MÁS GRANDE */
  font-weight: 800;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 18px;
}

.elegirnos-header h2::after {
  content: "";
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #cc0000, #990000);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.elegirnos-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-top: 15px;
}

/* GRID */
.elegirnos-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ITEM */
.elegirnos-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;

  background: white;

  /* MÁS ESPACIO */
  padding: 28px;

  border-radius: 18px;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;

  border: 1px solid #f0f0f0;
}

/* HOVER */
.elegirnos-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 35px rgba(204, 0, 0, 0.18);
}

/* NUMERO */
.item-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: #cc0000;
  line-height: 1;
  min-width: 70px;
}

/* TEXTO */
.item-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.item-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

/* =========================
   ANIMACIÓN SCROLL
========================= */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .elegirnos-header h2 {
    font-size: 1.7rem;
  }
  .por-que-elegirnos {
    padding: 70px 15px;
  }

  .elegirnos-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .elegirnos-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 25px;
  }

  .item-number {
    font-size: 2rem;
    min-width: auto;
  }

  .item-content h3 {
    font-size: 1.2rem;
  }

  .item-content p {
    font-size: 0.95rem;
  }
}
