/* ============================================
   ESTILOS PERSONALIZADOS PARA ARTÍCULO DE CINE
   Diseño cinematográfico y audiovisual
   ============================================ */

:root {
  --color-cinema-dark: #1a0000;
  --color-cinema-red: #e50914;
  --color-cinema-gold: #ffd700;
  --color-cinema-silver: #c0c0c0;
  --color-cinema-purple: #8b0049;
  --color-text-cinema: #e5e5e5;
  --color-bg-cinema: #141414;
}

/* ============================================
   CONTENEDOR CON EFECTO PELÍCULA
   ============================================ */
.noticia-container-cinema {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--color-cinema-dark) 0%,
    #000000 100%
  );
  position: relative;
  overflow: hidden;
}

/* Efecto de grano de película vintage */
.noticia-container-cinema::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.03) 2px,
    rgba(255, 255, 255, 0.03) 4px
  );
  pointer-events: none;
  z-index: 1;
  animation: film-grain 0.3s steps(1) infinite;
}

@keyframes film-grain {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
}

/* Efecto de luces de cine en los bordes */
.noticia-container-cinema::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(255, 215, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(229, 9, 20, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 1;
}

.noticia-completa-cinema {
  margin-left: 350px;
  width: calc(100% - 350px);
  min-height: 100vh;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

/* ============================================
   HEADER CON EFECTO PREMIERE
   ============================================ */
.noticia-header-cinema {
  background: linear-gradient(
    135deg,
    var(--color-cinema-dark) 0%,
    var(--color-cinema-purple) 100%
  );
  color: var(--color-text-cinema);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--color-cinema-gold);
}

/* Efecto de spotlight cinematográfico */
.noticia-header-cinema::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 215, 0, 0.15) 0%,
    transparent 70%
  );
  animation: spotlight-rotate 20s linear infinite;
  transform-origin: center;
}

@keyframes spotlight-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.noticia-categoria-badge-cinema {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    var(--color-cinema-red) 0%,
    var(--color-cinema-purple) 100%
  );
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow:
    0 0 20px rgba(229, 9, 20, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: neon-pulse 2s ease-in-out infinite;
}

@keyframes neon-pulse {
  0%,
  100% {
    box-shadow:
      0 0 20px rgba(229, 9, 20, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow:
      0 0 40px rgba(229, 9, 20, 0.8),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

.noticia-titulo-principal-cinema {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 25px;
  color: var(--color-cinema-gold);
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(255, 215, 0, 0.3);
  position: relative;
  letter-spacing: -1px;
}

/* ============================================
   IMAGEN DESTACADA CON EFECTO CINEMASCOPE
   ============================================ */
.noticia-imagen-destacada-cinema {
  margin: 0;
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-top: 2px solid var(--color-cinema-gold);
  border-bottom: 2px solid var(--color-cinema-gold);
}

.noticia-imagen-destacada-cinema::before,
.noticia-imagen-destacada-cinema::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
  z-index: 2;
  pointer-events: none;
}

.noticia-imagen-destacada-cinema::before {
  top: 0;
}

.noticia-imagen-destacada-cinema::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.noticia-imagen-destacada-cinema img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(1.2);
}

/* ============================================
   CONTENIDO CON TEMA AUDIOVISUAL
   ============================================ */
.noticia-contenido-cinema {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-cinema);
}

.noticia-contenido-cinema .lead {
  font-size: 1.4rem;
  font-weight: 500;
  color: white;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(229, 9, 20, 0.1) 0%,
    rgba(139, 0, 73, 0.1) 100%
  );
  border-left: 5px solid var(--color-cinema-gold);
  border-radius: 5px;
  line-height: 1.7;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.noticia-contenido-cinema h2 {
  font-size: 2.2rem;
  color: var(--color-cinema-gold);
  margin: 50px 0 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  padding-bottom: 15px;
}

.noticia-contenido-cinema h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-cinema-gold), transparent);
}

.noticia-contenido-cinema h2 i {
  color: var(--color-cinema-red);
  font-size: 2.5rem;
  text-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
}

/* ============================================
   CARDS DE PRODUCCIÓN AUDIOVISUAL
   ============================================ */
.production-card {
  background: linear-gradient(
    135deg,
    rgba(229, 9, 20, 0.05) 0%,
    rgba(20, 20, 20, 0.8) 100%
  );
  border: 2px solid var(--color-cinema-gold);
  border-radius: 15px;
  padding: 35px;
  margin: 35px 0;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 215, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.production-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.production-card:hover::before {
  left: 100%;
}

.production-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-cinema-red);
  box-shadow:
    0 15px 50px rgba(229, 9, 20, 0.3),
    inset 0 1px 0 rgba(255, 215, 0, 0.2);
}

.production-card h3 {
  color: var(--color-cinema-gold);
  margin: 0 0 20px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.production-card i {
  color: var(--color-cinema-red);
  font-size: 2.2rem;
  text-shadow: 0 0 10px rgba(229, 9, 20, 0.6);
}

/* ============================================
   PODCAST SECTION
   ============================================ */
.podcast-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #8b0049 0%, #e50914 100%);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  margin: 0 5px 5px 0;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
  transition: all 0.3s;
}

.podcast-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.6);
}

.podcast-badge i {
  animation: podcast-pulse 2s ease-in-out infinite;
}

@keyframes podcast-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* ============================================
   LISTAS CON ESTILO CLAQUETA
   ============================================ */
.noticia-lista-cinema {
  margin: 30px 0;
  padding-left: 0;
  list-style: none;
}

.noticia-lista-cinema li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px;
  background: linear-gradient(
    90deg,
    rgba(229, 9, 20, 0.05) 0%,
    transparent 100%
  );
  border-left: 4px solid var(--color-cinema-gold);
  border-radius: 5px;
  transition: all 0.3s;
}

.noticia-lista-cinema li:hover {
  background: linear-gradient(
    90deg,
    rgba(229, 9, 20, 0.1) 0%,
    transparent 100%
  );
  border-left-width: 6px;
  transform: translateX(8px);
}

.noticia-lista-cinema li i {
  color: var(--color-cinema-gold);
  font-size: 1.8rem;
  flex-shrink: 0;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* ============================================
   BLOCKQUOTE ESTILO GUION
   ============================================ */
.noticia-quote-cinema {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(26, 0, 0, 0.6) 100%
  );
  border-left: 6px solid var(--color-cinema-red);
  padding: 35px 45px;
  margin: 45px 0;
  border-radius: 0 10px 10px 0;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  font-family: "Courier New", monospace;
}

.noticia-quote-cinema::before {
  content: "INT. ESCENA - DÍA";
  position: absolute;
  top: 15px;
  left: 45px;
  font-size: 0.75rem;
  color: var(--color-cinema-gold);
  font-weight: 700;
  letter-spacing: 2px;
}

.noticia-quote-cinema p {
  font-size: 1.2rem;
  font-style: italic;
  color: white;
  margin: 25px 0 20px;
  line-height: 1.8;
}

.noticia-quote-cinema cite {
  display: block;
  text-align: right;
  font-size: 1rem;
  color: var(--color-cinema-gold);
  font-weight: 700;
  font-style: normal;
  font-family: "Inter", sans-serif;
}

/* ============================================
   GALERÍA ESTILO FILMSTRIP
   ============================================ */
.filmstrip-gallery {
  margin: 50px 0;
  padding: 30px 0;
  background: linear-gradient(to bottom, #000 0%, #1a1a1a 50%, #000 100%);
  border-top: 5px solid var(--color-cinema-gold);
  border-bottom: 5px solid var(--color-cinema-gold);
  position: relative;
}

.filmstrip-gallery::before,
.filmstrip-gallery::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 15px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-cinema-gold) 0px,
    var(--color-cinema-gold) 10px,
    #000 10px,
    #000 20px
  );
}

.filmstrip-gallery::before {
  top: 0;
}
.filmstrip-gallery::after {
  bottom: 0;
}

.filmstrip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.filmstrip-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 3px solid var(--color-cinema-silver);
  transition: all 0.3s;
  cursor: pointer;
  filter: grayscale(20%);
}

.filmstrip-grid img:hover {
  transform: scale(1.08);
  border-color: var(--color-cinema-gold);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
  filter: grayscale(0%);
}

/* ============================================
   CTA ESTILO PREMIERE
   ============================================ */
.noticia-cta-cinema {
  background: linear-gradient(
    135deg,
    var(--color-cinema-red) 0%,
    var(--color-cinema-purple) 100%
  );
  border-radius: 15px;
  padding: 45px;
  margin: 50px 0;
  display: flex;
  gap: 30px;
  align-items: center;
  box-shadow:
    0 15px 50px rgba(229, 9, 20, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.noticia-cta-cinema::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 200%;
  }
}

.noticia-cta-cinema i {
  font-size: 5rem;
  color: var(--color-cinema-gold);
  flex-shrink: 0;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  animation: camera-roll 4s ease-in-out infinite;
}

@keyframes camera-roll {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

.noticia-cta-cinema h3 {
  margin: 0 0 15px;
  font-size: 1.8rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.noticia-cta-cinema .btn {
  background: var(--color-cinema-gold);
  color: #000;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.noticia-cta-cinema .btn:hover {
  background: white;
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* ============================================
   TESTIMONIOS ESTILO CREDITS
   ============================================ */
.testimonios-cinema {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.testimonio-cinema {
  background: linear-gradient(
    135deg,
    rgba(20, 20, 20, 0.8) 0%,
    rgba(26, 0, 0, 0.8) 100%
  );
  border: 2px solid var(--color-cinema-silver);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.testimonio-cinema:hover {
  border-color: var(--color-cinema-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.testimonio-cinema i {
  color: var(--color-cinema-gold);
  font-size: 3rem;
  margin-bottom: 15px;
}

.testimonio-cinema p {
  font-style: italic;
  margin: 0 0 15px;
  font-size: 1.05rem;
  color: var(--color-text-cinema);
}

.testimonio-cinema cite {
  color: var(--color-cinema-gold);
  font-weight: 600;
  font-size: 0.95rem;
  font-style: normal;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media screen and (max-width: 768px) {
  .noticia-completa-cinema {
    margin-left: 0;
    width: 100%;
  }

  .noticia-header-cinema {
    padding: 40px 20px;
  }

  .noticia-titulo-principal-cinema {
    font-size: 2.2rem;
  }

  .noticia-contenido-cinema {
    padding: 40px 20px;
  }

  .production-card {
    padding: 25px;
  }

  .noticia-cta-cinema {
    flex-direction: column;
    text-align: center;
  }

  .filmstrip-grid {
    grid-template-columns: 1fr;
  }
}
