.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 610px;
  height: 480px;
  margin: 0 auto;
}

.image-wrapper img {
  width: 480px;
  display: none;
}

.image-wrapper .light-img {
  display: block;
}

.texture {
  background-color: rgba(0, 9, 73, 0.65);
}

.night-mode .texture {
  opacity: 0.7;
  background-color: #414141;
}

.night-mode .image-wrapper .light-img {
  display: none;
}

.night-mode .image-wrapper .dark-img {
  display: block;
}

.valores-section {
  background: #fff;
}

.text-primary-title {
  color: #000949;
}

.valor-card {
  background: #E3F1FF;
  border-radius: 16px;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.valor-card:hover {
  box-shadow: 0 0 0 2px #00094933;
}

.valor-header h5 {
  color: #000949;
  font-size: 1.1rem;
}

.toggle-icon {
  font-size: 1.8rem;
  color: #000949;
  transition: transform 0.3s ease;
}

.valor-text {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: #000949;
  margin-top: 10px;
  line-height: 1.4rem;
}

.valor-card.active {
  height: 188px;
}

.valor-card.active .valor-text {
  max-height: 300px;
  opacity: 1;
}

.valor-card.active .toggle-icon {
  transform: rotate(45deg);
}
