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

.elegirnos {
  padding: 80px 5%;
  background: #f7f9fc;
  position: relative;
  overflow: hidden;
}

/* Acento geométrico de fondo */
.elegirnos::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Header ── */
.elegirnos-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.elegirnos-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--celeste-acento);
  background: rgba(0, 194, 255, 0.1);
  border: 1px solid rgba(0, 194, 255, 0.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.elegirnos-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--azul-principal);
  line-height: 1.15;
  margin-bottom: 12px;
}

.elegirnos-header p {
  font-size: 16px;
  color: var(--gris-texto);
  line-height: 1.7;
}

/* ── Grid ── */
.elegirnos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Card ── */
.elegirnos-card {
  background: white;
  border: 1px solid #edf0f5;
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.elegirnos-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--celeste-acento), #009ed6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.elegirnos-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 31, 68, 0.1);
  border-color: rgba(0, 194, 255, 0.3);
}

.elegirnos-card:hover::after {
  transform: scaleX(1);
}

/* ── Ícono ── */
.elegirnos-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.12), rgba(0, 158, 214, 0.08));
  border: 1px solid rgba(0, 194, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s, border-color 0.25s;
}

.elegirnos-card:hover .elegirnos-icon {
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.2), rgba(0, 158, 214, 0.15));
  border-color: rgba(0, 194, 255, 0.45);
}

.elegirnos-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--celeste-acento);
}

/* ── Texto ── */
.elegirnos-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--azul-principal);
  margin-bottom: 10px;
  line-height: 1.3;
}

.elegirnos-card p {
  font-size: 14px;
  color: var(--gris-texto);
  line-height: 1.7;
}

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

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

  .elegirnos-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .elegirnos {
    padding: 56px 5%;
  }

  .elegirnos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .elegirnos-header {
    margin-bottom: 36px;
  }

  .elegirnos-header h2 {
    font-size: 24px;
  }

  .elegirnos-card {
    padding: 24px 20px;
  }
}
