.vc-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 1rem 1rem;
  text-align: center;
}
.vc-hero h1 {
  font-size: 1.8rem;
  color: var(--navy);
  margin: 0 0 .5rem;
}
.vc-hero p {
  color: var(--text-muted);
  margin: 0;
}

.vc-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.vc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.vc-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #fff;
  overflow: hidden;
}
.vc-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.vc-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  color: var(--gray-400);
}
.vc-card__body {
  padding: .65rem .7rem .75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vc-card__marca {
  font-size: .68rem;
  color: var(--text-muted);
  margin-bottom: .1rem;
}
.vc-card h2 {
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .4rem;
  line-height: 1.3;
}
.vc-card__precio {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 .3rem;
}
.vc-card__minima {
  padding: .3rem .45rem;
  background: var(--orange-light);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
  font-size: .65rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}
.vc-card__condiciones {
  margin: 0 0 .5rem;
  padding-left: .9rem;
  font-size: .62rem;
  color: var(--text-muted);
  flex: 1;
}
.vc-card__condiciones li {
  margin-bottom: .1rem;
}
.vc-card__btn {
  margin-top: auto;
  width: 100%;
  padding: .5rem .4rem;
  font: inherit;
  font-weight: 600;
  font-size: .7rem;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--navy);
  border-radius: 6px;
  cursor: pointer;
}
.vc-card__btn:hover {
  background: var(--blue-light);
}

@media (min-width: 900px) {
  .vc-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .vc-card h2 {
    font-size: .88rem;
  }
  .vc-card__precio {
    font-size: 1.1rem;
  }
  .vc-card__btn {
    font-size: .75rem;
  }
}

.vc-empty {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  text-align: center;
  color: var(--text-muted);
}

.vc-form {
  max-width: 700px;
  margin: 2rem auto 3rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.vc-form h2 {
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0 0 .25rem;
}
.vc-form > p {
  color: var(--text-muted);
  font-size: .88rem;
  margin: 0 0 1.25rem;
}
.vc-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.vc-form__field {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.vc-form__field--full {
  grid-column: 1 / -1;
}
.vc-form label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.vc-form input,
.vc-form select,
.vc-form textarea {
  font: inherit;
  padding: .65rem .8rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: #fff;
}
.vc-form button[type="submit"] {
  width: 100%;
  margin-top: .5rem;
  padding: .85rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.vc-form button[type="submit"]:disabled {
  opacity: .6;
  cursor: default;
}
.vc-form__ok {
  display: none;
  text-align: center;
  padding: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}

@media (max-width: 560px) {
  .vc-form__row {
    grid-template-columns: 1fr;
  }
}
