.value-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.value-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  border-top: 4px solid var(--pantone-313);
}

.value-card i {
  color: var(--pantone-313);
  font-size: 2rem;
  margin-bottom: 20px;
}

.value-card h3 {
  color: var(--pantone-546);
  margin-bottom: 15px;
  font-weight: 700;
}

.value-card p {
  color: var(--pantone-546);
  opacity: 0.8;
}

/* Estilos para los controles de navegación de Owl Carousel */
.owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
}

.owl-prev,
.owl-next {
  position: absolute;
  background: var(--pantone-152) !important;
  color: white !important;
  width: 45px;
  height: 45px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px !important;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.owl-prev {
  left: -60px;
}

#values-slider .owl-next {
  right: -55px;
}

.owl-prev:hover,
.owl-next:hover {
  background: var(--pantone-152) !important;
  transform: scale(1.1);
}

.owl-prev i,
.owl-next i {
  font-size: 18px;
  font-weight: bold;
}

/* Estilos para los dots de navegación */
.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pantone-152);
  transition: background-color 0.3s ease;
}

.owl-dot.active span {
  background: var(--pantone-152);
}

/* Responsive */
@media (max-width: 768px) {

  .owl-prev {
    left: -15px;
    width: 40px;
    height: 40px;
  }

  .owl-next {
    right: -15px;
    width: 40px;
    height: 40px;
  }

  .owl-prev i,
  .owl-next i {
    font-size: 20px !important;
  }
}

