.hc-banner {
  background: linear-gradient(135deg, var(--color-accent) 0%, #f97316 50%, #fbbf24 100%);
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
}
.hc-banner__bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(0,0,0,0.04) 0px, rgba(0,0,0,0.04) 1px,
    transparent 1px, transparent 12px
  );
}
.hc-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}
.hc-banner__label {
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-2);
}
.hc-banner__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: #fff;
  line-height: 1;
  letter-spacing: 0.02em;
}
.hc-banner__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  max-width: 40ch;
  margin-top: var(--space-3);
}
.hc-banner__cta {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  flex-shrink: 0;
}
/* AMBOS BOTONES IDÉNTICOS */
.btn--white,
.btn--outline-white {
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn--white:hover,
.btn--out-line-white:hover { 
  background: rgba(255,255,255,0.1); 
  border-color: #fff; 
}
