/* ============================================================
   Ana Pao Marin · Sitio Oficial · acting.css
   Mundo 3 · Actuación (carrusel de pósters, showreel)
   ============================================================ */

.world-acting {
  --w: var(--gold);
  position: relative;
  padding: 60px 0 140px;
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(159,18,57,.25), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(245,158,11,.08), transparent 70%),
    linear-gradient(180deg, #0a0608 0%, #14090c 50%, #0a0608 100%);
  overflow: hidden;
}
.world-acting::before {
  content: 'CINEMA';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-weight: 200;
  letter-spacing: .25em;
  font-size: 26rem;
  color: rgba(245,158,11,.025);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}
.world-acting > * { position: relative; z-index: 2; }

/* === Header de la sección Actuación (estilo cartelera) === */
.acting-header {
  margin: 20px 0 50px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(245,158,11,.18);
  position: relative;
}
.acting-header::after {
  content: "";
  position: absolute; left: 0; right: 70%; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .85;
}
.ah-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 28px;
}
.ah-title .label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.ah-title .label::before {
  content: ""; width: 36px; height: 1px; background: var(--gold);
}
.ah-title h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0;
  color: #fff;
  padding-top: .06em;
}
.ah-title h2 em {
  display: inline-block;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, var(--gold) 0%, #fde68a 50%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: .06em .18em .08em 0;
}

/* Tarjeta tipo "ticket de cine" en el lado derecho */
.ah-ticket {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.25));
  border: 1px solid rgba(245,158,11,.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 8px 24px -12px rgba(245,158,11,.35);
}
/* Perforaciones laterales tipo boleto */
.ah-ticket::before,
.ah-ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #0a0608;
  border: 1px solid rgba(245,158,11,.28);
  transform: translateY(-50%);
}
.ah-ticket::before { left: -6px; }
.ah-ticket::after  { right: -6px; }

.ah-reel {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: radial-gradient(circle at 30% 30%, rgba(245,158,11,.25), transparent 70%);
  border: 1px solid rgba(245,158,11,.4);
  animation: ah-reel-spin 8s linear infinite;
}
@keyframes ah-reel-spin { to { transform: rotate(360deg); } }

.ah-ticket-text {
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1.1;
}
.ah-mini {
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(245,158,11,.75);
  font-weight: 600;
}
.ah-ticket-text strong {
  font-family: var(--serif-it, var(--display));
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  letter-spacing: .02em;
}

.ah-meta {
  font-family: var(--serif-it);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  text-align: right;
  max-width: 560px;
  margin: 0 0 28px auto;
}

/* Stats row (paralelo a music/modeling) */
.ah-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 8px;
}
.ah-stat {
  display: flex; flex-direction: column; gap: 6px;
  padding: 0 24px;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.ah-stat + .ah-stat::before {
  content: "";
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 60%;
  background: linear-gradient(180deg, transparent, rgba(245,158,11,.35), transparent);
}
.ah-stat:first-child { padding-left: 0; }
.ah-stat-num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  display: inline-flex; align-items: baseline; gap: 4px;
}
.ah-unit {
  font-size: 1rem; font-weight: 400;
  color: var(--muted); letter-spacing: .05em;
  font-style: normal;
}
.ah-stat-lbl {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.ah-stat-cta { cursor: pointer; transition: transform .25s ease; }
.ah-stat-cta .ah-stat-num.ah-stat-icon {
  background: linear-gradient(135deg, var(--gold), #fde68a);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  line-height: 1;
  transition: transform .3s ease;
}
.ah-stat-cta:hover .ah-stat-num.ah-stat-icon { transform: translateX(6px); }
.ah-stat-cta .ah-stat-lbl { color: var(--gold); }

@media (max-width: 800px) {
  .ah-top { grid-template-columns: 1fr; gap: 24px; }
  .ah-ticket { justify-self: start; }
  .ah-meta { text-align: left; margin: 0 0 20px 0; }
  .ah-stats { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .ah-stat + .ah-stat::before { display: none; }
  .ah-stat:nth-child(odd) { padding-left: 0; }
  .ah-stat:nth-child(even) { border-left: 1px solid rgba(245,158,11,.22); }
}

/* Offset anchor para el navbar fijo */
#postersCarousel, #actingReel {
  scroll-margin-top: 80px;
}

/* Marquee theatre lights */
.marquee-lights {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 40px;
  max-width: 720px;
  padding: 18px 0;
  border-top: 1px dashed rgba(245,158,11,.3);
  border-bottom: 1px dashed rgba(245,158,11,.3);
}
.marquee-lights .bulb {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold), 0 0 4px #fff inset;
  animation: bulbBlink 2s ease-in-out infinite;
}
@keyframes bulbBlink {
  0%, 60%, 100% { opacity: 1; box-shadow: 0 0 18px var(--gold), 0 0 4px #fff inset; }
  30%, 70%      { opacity: .35; box-shadow: 0 0 4px var(--gold); }
}

/* Filtros tipo "now showing" */
.poster-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 30px 0 50px;
}
.poster-filters button {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid rgba(245,158,11,.3);
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: #f5e9c8;
  background: rgba(0,0,0,.25);
  letter-spacing: .03em;
  transition: all .35s ease;
}
.poster-filters button:hover { border-color: var(--gold); color: var(--gold); }
.poster-filters button.active {
  background: var(--gold);
  color: #0a0608;
  border-color: var(--gold);
  font-weight: 600;
  box-shadow: 0 8px 24px -10px var(--gold);
}

/* Posters grid */
.posters-carousel {
  position: relative;
  margin-top: 8px;
}
.posters-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 24px 8px 40px;
  scrollbar-width: none;
}
.posters-track::-webkit-scrollbar { display: none; }
.posters-track .poster {
  flex: 0 0 260px;
  scroll-snap-align: center;
}
.posters-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,.4);
  background: rgba(10,4,8,.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 1.4rem;
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 5;
  transition: all .3s ease;
}
.posters-nav:hover {
  background: var(--gold);
  color: #0a0608;
  box-shadow: 0 0 24px rgba(245,158,11,.5);
  transform: translateY(-50%) scale(1.05);
}
.posters-nav.prev { left: -10px; }
.posters-nav.next { right: -10px; }
.posters-nav.at-edge { opacity: .55; }
@media (max-width: 700px) {
  .posters-track .poster { flex-basis: 220px; }
  .posters-nav { width: 44px; height: 44px; font-size: 1.1rem; }
  .posters-nav.prev { left: 4px; }
  .posters-nav.next { right: 4px; }
}
.poster {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(180deg, #1a0a08, #0a0508);
  border: 1px solid rgba(245,158,11,.15);
  transition: transform .55s cubic-bezier(.2,.7,.2,1), box-shadow .55s, opacity .35s, filter .35s;
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow: 0 14px 40px -20px rgba(0,0,0,.9);
}
.poster.dim { opacity: .25; filter: grayscale(.6); }
.poster:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px -20px rgba(245,158,11,.4), 0 30px 60px -30px rgba(0,0,0,1);
}
/* Poster art — imagen real con overlay tonal */
.poster .art {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-color: #15080a;
  filter: saturate(.95) contrast(1.05);
  transition: transform .8s ease;
}
.poster:hover .art { transform: scale(1.06); }
.poster .art::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,4,8,.35) 0%, rgba(10,4,8,.15) 38%, rgba(10,4,8,.85) 78%, rgba(10,4,8,.96) 100%),
    radial-gradient(ellipse at 50% 30%, var(--pa1, rgba(245,158,11,.18)) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, var(--pa2, rgba(159,18,57,.35)) 0%, transparent 65%);
}
.poster .art::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}
/* Marco doble dorado (estilo art déco) */
.poster .frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(245,158,11,.35);
  border-radius: 2px;
  pointer-events: none;
}
.poster .frame::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(245,158,11,.18);
  border-radius: 2px;
}
/* Ornamentos en las 4 esquinas */
.poster .corner {
  position: absolute;
  width: 22px; height: 22px;
  z-index: 3;
  color: var(--gold);
  opacity: .85;
  pointer-events: none;
}
.poster .corner::before,
.poster .corner::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.poster .corner::before { width: 14px; height: 1px; }
.poster .corner::after  { width: 1px;  height: 14px; }
.poster .corner.tl { top: 18px; left: 18px; }
.poster .corner.tl::before { top: 0; left: 0; }
.poster .corner.tl::after  { top: 0; left: 0; }
.poster .corner.tr { top: 18px; right: 18px; }
.poster .corner.tr::before { top: 0; right: 0; }
.poster .corner.tr::after  { top: 0; right: 0; }
.poster .corner.bl { bottom: 18px; left: 18px; }
.poster .corner.bl::before { bottom: 0; left: 0; }
.poster .corner.bl::after  { bottom: 0; left: 0; }
.poster .corner.br { bottom: 18px; right: 18px; }
.poster .corner.br::before { bottom: 0; right: 0; }
.poster .corner.br::after  { bottom: 0; right: 0; }

/* Contenido tipográfico del póster */
.poster .info {
  position: absolute;
  inset: auto 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 3;
  color: #fff;
}
.poster .yr {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: .95rem;
  color: var(--gold);
  letter-spacing: .35em;
  margin-bottom: 14px;
  padding-bottom: 14px;
  position: relative;
  width: 100%;
}
.poster .yr::after {
  content: "✦";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .55rem;
  color: var(--gold);
  background: linear-gradient(180deg, transparent 50%, #0a0608 50%);
  padding: 0 8px;
}
.poster .yr::before {
  content: "";
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .5;
}
.poster .ttl {
  display: inline-block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.45rem;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 14px;
  padding: .06em .14em .08em 0;
  text-shadow: 0 4px 30px rgba(0,0,0,.9), 0 1px 0 rgba(0,0,0,.5);
}
.poster .star-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}
.poster .star-credit .pre {
  font-size: .56rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.poster .star-credit .name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  background: linear-gradient(90deg, var(--gold), #fde68a, var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: .04em;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.poster .star-credit .role-line {
  font-size: .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid rgba(245,158,11,.3);
  width: 75%;
}
.poster .ribbon {
  position: absolute;
  top: 14px;
  right: -34px;
  background: var(--gold);
  color: #0a0608;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 5px 40px;
  transform: rotate(45deg);
  z-index: 4;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
}
.poster .ribbon.netflix { background: #e50914; color: #fff; }
.poster .ribbon.cine    { background: var(--gold);  color: #0a0608; }
.poster .ribbon.tv      { background: #f472b6; color: #0a0608; }
.poster .ribbon.streaming { background: #6d28d9; color: #fff; }
.poster .info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 18px 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.92) 60%);
  z-index: 3;
}
.poster .yr {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: .85rem;
  color: var(--gold);
  letter-spacing: .25em;
  margin-bottom: 4px;
}
.poster .ttl {
  display: inline-block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 4px;
  padding: .06em .14em .08em 0;
}
.poster .role {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* Showreel CTA — estilo Academy */
.showreel-cta {
  margin-top: 80px;
  padding: 60px 40px;
  border: 1px solid rgba(245,158,11,.3);
  border-radius: 16px;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(245,158,11,.1), transparent 70%),
    linear-gradient(180deg, rgba(20,8,12,.6), rgba(10,4,8,.4));
  position: relative;
  overflow: hidden;
}
.showreel-cta::before, .showreel-cta::after {
  content: "⚜";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
  color: var(--gold);
  opacity: .12;
}
.showreel-cta::before { left: 30px; }
.showreel-cta::after  { right: 30px; transform: translateY(-50%) scaleX(-1); }
.showreel-cta .reel-eyebrow {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding: 6px 18px;
  border: 1px solid rgba(245,158,11,.35);
  border-radius: 50px;
}
.showreel-cta h3 {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 12px;
}
.showreel-cta p { color: var(--muted); margin-bottom: 28px; max-width: 520px; margin-inline: auto; }
.showreel-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold), #fde68a, var(--gold));
  color: #0a0608;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  transition: all .3s;
  text-decoration: none;
}
.showreel-cta .btn:hover { transform: translateY(-3px); box-shadow: 0 15px 40px -10px var(--gold); }

/* ════════════════════════════════════════════════