.por-que-elegir {
  width: 100%;
  min-height: calc(100vh);
  margin: 0;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  gap: 2.5rem;
  background-color: #98A4BC;
  position: relative;
}

.por-que-elegir h2 {
  text-align: center;
  font-size: 48px;
  font-family: 'Poppins', sans-serif;
  padding: 0;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1B2838;
}

.por-que-elegir h2 strong {
  font-weight: 800;
}

.por-que-elegir__contenido {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 950px;
}

.por-que-elegir__ventajas {
  flex: 2 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.ventaja {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #F0F4FF;
  color: #334;
  border-radius: 30px;
  padding: 1.2rem 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  font-size: 20px;
  font-weight: 600;
}

.ventaja:hover {
  transform: translateY(-5px); 
  box-shadow: 0 8px 20px rgba(42, 63, 167, 0.15);
}

.ventaja img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.por-que-elegir__imagen {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #CDE2D4;
  border-radius: 16px;
  padding: 1.5rem;
}

.por-que-elegir__imagen:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.por-que-elegir__imagen img {
  width: 100%;
  max-width: 320px;
  object-fit: cover;
}

.por-que-elegir__cta {
  width: 100%;
  display: flex;
  justify-content: center;
}

.por-que-elegir__cta a {
  font-size: 18px;
}

.btn-contacto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  font-size: 8px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  width: 100%;
  max-width: 300px;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, #f78c2b 0%, #e67e22 100%);
}

.btn-contacto:hover {
  transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    background-color: #ffb428;
}

/* Para pantallas de hasta 768px */
@media (max-width: 768px) {
  .por-que-elegir h2{
    font-size: 32px;
  }
  .por-que-elegir__contenido {
    flex-direction: column;
    gap: 2rem;
  }

  .por-que-elegir__ventajas {
    flex: 1 1 auto;
  }

  .por-que-elegir__imagen {
    display: none;
  }

  .btn-contacto {
    width: 100%;
    max-width: 350px;
    padding: 12px 18px;
    font-size: 18px;
  }
}

/* Para pantallas de hasta 440px */
@media (max-width: 440px) {
  .por-que-elegir__contenido {
    gap: 1.5rem;
  }

  .por-que-elegir__ventajas {
    gap: 1rem;
  }

  .ventaja {
    font-size: 16px;
    padding: 1rem 1rem;
  }

  .btn-contacto {
    width: 100%;
    max-width: 280px;
    padding: 10px 14px;
    font-size: 16px;
  }
}
