/* Start custom CSS for shortcode, class: .elementor-element-45337f5 */.vh-colores-section {
  width: 100%;
  padding: 20px 0;
}

.vh-colores-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.vh-color-item {
  text-align: center;
  text-decoration: none;
  color: #2f2f2f;
}

.vh-color-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #f7f4ef;
  border: 1px solid #eee;
  transition: all .25s ease;
}

.vh-color-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vh-color-item:hover .vh-color-img-wrap {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.vh-color-name {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}

.vh-color-placeholder {
  width: 100%;
  height: 100%;
  background: #e8e1d7;
}

/* Celular */
@media (max-width: 768px) {
  .vh-colores-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .vh-color-img-wrap {
    border-radius: 12px;
  }

  .vh-color-name {
    font-size: 12px;
    margin-top: 7px;
  }
}/* End custom CSS */