/* ═══════════════════════════════════════
   HERO FINAL — Clandestino FIX PRO
═══════════════════════════════════════ */

.cl-hero {
  position: relative;
  min-height: 90vh;
  background: #0b0b0d;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.cl-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* GRID + NOISE */
.cl-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}

.cl-hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* glow fondo */
.cl-hero__bg::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 38%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(143,17,17,0.13), transparent 70%);
  filter: blur(42px);
}

/* línea roja */
.cl-hero__redline {
  position: absolute;
  top: 130px;
  left: 80px;
  width: 60px;
  height: 2px;
  background: #8f1111;
  overflow: hidden;
  z-index: 3;
}

.cl-hero__redline::after {
  content: "";
  position: absolute;
  left: -60px;
  top: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,0,0,0.5),
    transparent
  );
  animation: redScan 3s linear infinite;
}

@keyframes redScan {
  0% { left: -60px; }
  100% { left: 100%; }
}

/* LAYOUT */
.cl-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 460px) minmax(420px, 620px);
  justify-content: space-between;
  align-items: center;
  gap: 84px;
}

/* TEXTO */
.cl-hero__copy {
  max-width: 460px;
  position: relative;
  z-index: 2;
  padding-right: 8px;
}

.cl-hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.cl-hero__title {
  font-size: clamp(50px, 5vw, 88px);
  line-height: 0.88;
  font-weight: 800;
  color: #fff;
  margin: 0;
  max-width: 6ch;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.cl-hero__title span {
  color: #d80d0d;
}

.cl-hero__rule {
  width: 40px;
  height: 2px;
  background: #8f1111;
  margin: 22px 0 18px;
}

.cl-hero__desc {
  font-size: 1.08rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  margin: 0 0 22px;
  max-width: 380px;
}

.cl-hero__bullets {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.cl-hero__bullets li {
  position: relative;
  padding-left: 18px;
  color: rgba(232, 232, 234, 0.84);
  font-size: 0.98rem;
  line-height: 1.45;
}

.cl-hero__bullets li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8f1111;
}

.cl-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cl-hero__micro {
  margin: 16px 0 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(232, 232, 234, 0.56);
}

/* BOTÓN */
.cl-btn--primary {
  padding: 15px 24px;
  font-size: 0.95rem;
}

/* IMAGEN */
.cl-hero__media {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}

.cl-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(143,17,17,0.14), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.cl-hero__media img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* IMPORTANTE: sacar hover falopa */
.cl-hero__media img:hover {
  transform: none;
}

/* MOBILE */
@media (max-width: 1024px) {
  .cl-hero {
    padding: 40px 0;
    min-height: auto;
  }

  .cl-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cl-hero__copy {
    max-width: 100%;
    padding-right: 0;
  }

  .cl-hero__title {
    max-width: 7ch;
  }

  .cl-hero__media {
    justify-content: center;
  }

  .cl-hero__media img {
    max-width: 520px;
    width: 100%;
  }

  .cl-hero__redline {
    left: 50%;
    transform: translateX(-50%);
    top: 90px;
  }
}