/* ============================================================
   Ana Pao Marin · Sitio Oficial · hero.css
   Sección Hero: título, ornamentos, scroll indicator y parallax
   ============================================================ */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 50% 40% at 30% 20%, rgba(244,114,182,.25), transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(109,40,217,.22), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(245,158,11,.12), transparent 70%);
  filter: blur(40px);
  animation: heroGlow 18s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes heroGlow {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(-3%, 2%) scale(1.05); }
  100% { transform: translate(2%, -3%) scale(.98); }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Editorial corner markers */
.hero-corner {
  position: absolute;
  width: 40px; height: 40px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: rise 1.2s 1.5s forwards cubic-bezier(.2,.7,.2,1);
}
.hero-corner::before,
.hero-corner::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.hero-corner::before { width: 100%; height: 1px; top: 0; left: 0; }
.hero-corner::after  { width: 1px; height: 100%; top: 0; left: 0; background: linear-gradient(180deg, var(--accent), transparent); }
.hero-corner-tl { top: 32px; left: 32px; }
.hero-corner-tr { top: 32px; right: 32px; transform: scaleX(-1); }
.hero-corner-bl { bottom: 32px; left: 32px; transform: scaleY(-1); }
.hero-corner-br { bottom: 32px; right: 32px; transform: scale(-1, -1); }

@media (max-width: 720px) {
  .hero-corner { width: 24px; height: 24px; }
  .hero-corner-tl, .hero-corner-tr { top: 18px; }
  .hero-corner-tl, .hero-corner-bl { left: 18px; }
  .hero-corner-tr, .hero-corner-br { right: 18px; }
  .hero-corner-bl, .hero-corner-br { bottom: 18px; }
}

.hero-eyebrow {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 22px 9px 18px;
  border: 1px solid rgba(244,114,182,.35);
  border-radius: 50px;
  background:
    linear-gradient(135deg, rgba(244,114,182,.12), rgba(244,114,182,.02));
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0;
  animation: rise .9s .2s forwards cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 8px 30px -10px rgba(244,114,182,.35);
}
.hero-eyebrow .he-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(244,114,182,.5);
}
.hero-eyebrow .he-year {
  color: #fff;
  font-weight: 600;
  letter-spacing: .22em;
}
.hero-eyebrow .pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform: scale(1);}
  50%     { opacity:.4; transform: scale(.8);}
}

.hero-title {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(3rem, 11vw, 9.5rem);
  line-height: .92;
  letter-spacing: -.04em;
  color: #fff;
}
.hero-title .l1, .hero-title .l2 {
  display: block;
  /* sin overflow:hidden para que swashes del italic no se recorten al lado derecho */
  line-height: 1.12;
  padding: .02em .18em .12em .04em;
}
.hero-title .l1 span, .hero-title .l2 span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: rise 1.1s .35s forwards cubic-bezier(.2,.7,.2,1);
}
.hero-title .l2 {
  position: relative;
}
.hero-title .l2::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 70%; height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(244,114,182,.28), transparent 60%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.hero-title .l2 span {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, var(--accent), var(--gold) 70%, var(--accent-hi));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation-delay: .55s;
  padding-right: .22em;
}
@keyframes rise {
  to { transform: translateY(0); opacity: 1; }
}

.hero-tagline {
  position: relative;
  z-index: 2;
  margin-top: 32px;
  max-width: 580px;
  font-size: 1.05rem;
  color: #cbc8d8;
  opacity: 0;
  animation: rise 1s .9s forwards cubic-bezier(.2,.7,.2,1);
}
.hero-tagline strong { color: #fff; font-weight: 600; }

/* Ornamento decorativo entre título y tagline */
.hero-ornament {
  position: relative;
  z-index: 2;
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: rise 1s .8s forwards cubic-bezier(.2,.7,.2,1);
}
.hero-ornament .line {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}
.hero-ornament .line.right {
  background: linear-gradient(90deg, var(--accent), transparent);
}
.hero-ornament .star {
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(244,114,182,.7));
  animation: ornament-spin 12s linear infinite;
}
.hero-ornament .star-sm {
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(245,158,11,.6));
  animation: ornament-spin 9s linear infinite reverse;
  opacity: .85;
}
.hero-ornament .dot-mini {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
}
@keyframes ornament-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Indicador de scroll al fondo del hero */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: rise 1.2s 1.6s forwards cubic-bezier(.2,.7,.2,1);
}
.hero-scroll .line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, var(--accent));
  position: relative;
  overflow: hidden;
}
.hero-scroll .line::after {
  content: "";
  position: absolute;
  left: 0; top: -50%;
  width: 100%; height: 50%;
  background: linear-gradient(180deg, transparent, #fff);
  animation: scroll-drop 2.2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { top: -50%; }
  100% { top: 100%; }
}

.hero-roles {
  position: relative;
  z-index: 2;
  margin-top: 44px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: rise 1s 1.1s forwards cubic-bezier(.2,.7,.2,1);
}
.hero-roles .role {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.02rem;
  padding: 9px 22px 9px 14px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: rgba(255,255,255,.025);
  transition: color .35s ease, border-color .35s ease, background .35s ease, transform .35s ease;
  cursor: default;
}
.hero-roles .role-i {
  display: grid; place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  color: var(--muted);
  transition: background .35s ease, color .35s ease;
}
.hero-roles .role:hover {
  transform: translateY(-2px);
}
.hero-roles .role[data-role="modelaje"]:hover { color: var(--gold);    border-color: var(--gold); }
.hero-roles .role[data-role="modelaje"]:hover .role-i { color: #0a0a0f; background: var(--gold); }
.hero-roles .role[data-role="musica"]:hover { color: var(--accent);  border-color: var(--accent); }
.hero-roles .role[data-role="musica"]:hover .role-i { color: #0a0a0f; background: var(--accent); }
.hero-roles .role[data-role="actuacion"]:hover { color: var(--crimson); border-color: var(--crimson); background: rgba(159,18,57,.18); }
.hero-roles .role[data-role="actuacion"]:hover .role-i { color: #fff; background: var(--crimson); }
.hero-roles .role[data-role="redes"]:hover { color: var(--cyan);    border-color: var(--cyan); }
.hero-roles .role[data-role="redes"]:hover .role-i { color: #0a0a0f; background: var(--cyan); }

/* CTAs */
.hero-cta {
  position: relative;
  z-index: 2;
  margin-top: 38px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: rise 1s 1.3s forwards cubic-bezier(.2,.7,.2,1);
}
.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease, color .3s ease;
  overflow: hidden;
}
.hero-btn .hbtn-arrow {
  display: grid; place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  transition: transform .3s ease, background .3s ease;
}
.hero-btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--accent), var(--accent2, #c4458d));
  box-shadow: 0 14px 38px -12px rgba(244,114,182,.6);
}
.hero-btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: translateX(-100%);
  transition: transform .7s ease;
}
.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px -10px rgba(244,114,182,.7);
}
.hero-btn-primary:hover::before { transform: translateX(100%); }
.hero-btn-primary:hover .hbtn-arrow { transform: translateY(2px); }
.hero-btn-ghost {
  color: #fff;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
}
.hero-btn-ghost .hbtn-arrow { background: rgba(244,114,182,.18); color: var(--accent); }
.hero-btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(244,114,182,.08);
  transform: translateY(-2px);
}
.hero-btn-ghost:hover .hbtn-arrow { transform: translateX(3px); background: var(--accent); color: #fff; }

/* Marquee hero (frase rotativa) */
.hero-marquee {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  width: 100vw;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: rgba(244,114,182,.04);
}
.hero-marquee-track {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  color: #fff;
}
.hero-marquee-track span { color: var(--muted); }
.hero-marquee-track i { color: var(--accent); font-style: normal; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════