/* =========================================================
   7. WHY / POR QUÉ ELEGIRNOS
   ========================================================= */
.why-section {
  background-color: var(--bg-why);
  padding: 90px 0;
  overflow: hidden;
}

.why-row {
  min-height: auto;
}

.why-image-wrap {
  max-width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.08);
  background-color: #ffffff;
}

.why-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.why-copy {
  max-width: 100%;
  padding-left: 10px;
}

.why-title {
  margin: 0 0 18px 0;
  color: #111827;
  font-size: clamp(2.2rem, 3.2vw, 3.7rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
  max-width: 620px;
}

.why-title span {
  display: block;
  color: #111827;
}

.why-text {
  color: #667085;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 620px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 22px;
  background-color: #ffffff;
  border: 1px solid #e6e8ec;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.04);
}

.why-item:hover {
  border-color: rgba(245, 130, 32, 0.35);
  box-shadow: 0 10px 20px rgba(245, 130, 32, 0.08);
  transform: translateY(-2px);
}

.why-check {
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(245, 130, 32, 0.12);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin-top: 2px;
}

.why-check i {
  font-size: 1rem;
  line-height: 1;
}

.why-item h3 {
  margin: 0 0 6px 0;
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 700;
  color: #111827;
}

.why-item p {
  margin: 0;
  color: #667085;
  font-size: 0.96rem;
  line-height: 1.65;
}

.why-actions {
  margin-top: 22px;
}

.why-actions .why-btn {
  background-color: var(--secondary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 22px;
  border-radius: 12px;
  min-width: 220px;
  text-transform: uppercase;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.why-actions .why-btn:hover {
  background-color: var(--secondary-dark);
  color: var(--white);
}
