/* ============================================================
   EQUIPAMIENTO VISUAL — catalogo-2026.css
   ============================================================ */

.cat-hero {
  background: var(--color-teal);
  padding: 2.8rem 0;
}

.cat-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cat-hero__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-lime);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.cat-hero__sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  line-height: 1.6;
}

.cat-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-teal);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}

.cat-hero__btn:hover {
  background: var(--color-white);
}

/* Visor */
.cat-viewer {
  background: #f0f0f0;
  padding: 2.5rem 0 3rem;
}

.cat-viewer__frame {
  display: block;
  width: 100%;
  height: 88vh;
  min-height: 600px;
  border: none;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  background: #fff;
}

@media (max-width: 600px) {
  .cat-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cat-viewer__frame {
    height: 70vh;
    min-height: 400px;
  }
}
