/* Start custom CSS for html, class: .elementor-element-df4e3a3 */.withia-partners {
  background-color: #F5F5F7;
  padding: 100px 40px;
  text-align: center;
  color: #1D1D1F;
}

.partners-container {
  max-width: 900px;
  margin: 0 auto;
}

.withia-partners h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.partners-intro {
  font-size: 1.1rem;
  margin-bottom: 60px;
  color: #555;
}

.partners-beneficios {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.beneficio {
  background: linear-gradient(135deg, #FFFFFF, #F5F5F7);
  border-radius: 14px;
  padding: 40px 30px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficio:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.beneficio i {
  font-size: 2rem;
  color: #0077ED;
  margin-bottom: 15px;
}

.beneficio h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.beneficio p {
  font-size: 0.95rem;
  color: #444;
}

.partners-cta {
  background: linear-gradient(135deg, #0077ED, #005FCC);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 119, 237, 0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  animation: shimmer 2s infinite linear;
}

.partners-cta:hover {
  background: #005FCC;
  box-shadow: 0 10px 32px rgba(0, 119, 237, 0.45);
}

/* Efecto brillo en movimiento */
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}/* End custom CSS */