/* ─────────────────────────────────────────
   HERO
   ───────────────────────────────────────── */

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--azul-deep) 0%, var(--azul) 55%, #1a66d4 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Grain texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero-left {
  padding: 160px 6% 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-tag::before {
  content: '';
  display: none;
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--blanco);
  letter-spacing: -1.5px;
}
.hero h1 .outline {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35);
  color: transparent;
}
.hero h1 .accent {
  color: var(--rojo-vivo);
}

.hero-desc {
  margin-top: 24px;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.48);
  max-width: 400px;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-blanco {
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--blanco);
  color: var(--azul);
  padding: 13px 28px;
  border-radius: 7px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.14);
  transition: box-shadow 0.2s, transform 0.15s;
}
.btn-blanco:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.btn-ghost {
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  padding: 13px 22px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--blanco);
}

/* Right panel */
.hero-right {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.hero-right-bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.025);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-watermark {
  position: absolute;
  bottom: 40px;
  right: 4%;
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  letter-spacing: -2px;
  user-select: none;
}

.hero-pills {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 400;
  white-space: nowrap;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}
.hero-pill:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
}
.hero-pill strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blanco);
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 120px 6% 72px; }
}
