/* ================================================
   FCR LANÇAMENTOS — FILMES CLÁSSICOS RAROS
   Tema: Cinema noir escuro, dourado vintage
================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

/* ── ROOT ── */
.fcr-page {
  --fcr-gold:    #c8952a;
  --fcr-gold2:   #e8b84b;
  --fcr-red:     #c0392b;
  --fcr-dark:    #0d0d0d;
  --fcr-dark2:   #141414;
  --fcr-dark3:   #1a1a1a;
  --fcr-dark4:   #222;
  --fcr-text:    #e8e0d0;
  --fcr-muted:   #888;
  --fcr-radius:  8px;
  background: var(--fcr-dark);
  color: var(--fcr-text);
  font-family: 'Lato', sans-serif;
  min-height: 100vh;
  padding-bottom: 60px;
  /* Remove padding lateral — o tema do WP já tem */
}

/* ── HERO ── */
.fcr-hero {
  position: relative;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0e00 60%, #0d0d0d 100%);
  padding: 60px 20px 50px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(200,149,42,0.25);
}

/* Película de cinema (tiras laterais) */
.fcr-hero-film-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 18px;
  display: flex;
  gap: 0;
  overflow: hidden;
}
.fcr-hero-film-strip--bottom {
  top: auto;
  bottom: 0;
}
.fcr-hero-film-strip span {
  display: block;
  flex: 1;
  height: 18px;
  background: #000;
  border-right: 3px solid #1a1a1a;
  position: relative;
}
.fcr-hero-film-strip span::after {
  content: '';
  position: absolute;
  top: 3px; left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 12px;
  background: #1a1a1a;
  border-radius: 2px;
}

.fcr-hero-content {
  position: relative;
  z-index: 2;
}

.fcr-flame {
  font-size: 3rem;
  display: block;
  margin-bottom: 10px;
  animation: fcr-float 3s ease-in-out infinite;
}

@keyframes fcr-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.fcr-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fcr-gold2);
  margin: 0 0 12px;
  text-shadow: 0 0 40px rgba(200,149,42,0.4);
}

.fcr-hero-sub {
  font-size: 1rem;
  color: var(--fcr-muted);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin: 0;
}

/* ── GRID ── */
.fcr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 40px 20px 20px;
  max-width: 1300px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .fcr-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px 12px;
  }
}

/* ── CARD ── */
.fcr-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fcr-in 0.5s ease forwards;
  border-radius: var(--fcr-radius);
  overflow: hidden;
  background: var(--fcr-dark3);
  border: 1px solid rgba(200,149,42,0.12);
  transition: border-color 0.3s, transform 0.3s;
}

.fcr-card:hover {
  border-color: rgba(200,149,42,0.5);
  transform: translateY(-5px) scale(1.02);
  z-index: 2;
}

@keyframes fcr-in {
  to { opacity: 1; transform: translateY(0); }
}

.fcr-card-inner {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* ── POSTER ── */
.fcr-poster-wrap {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #111;
}

.fcr-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.fcr-card:hover .fcr-poster {
  transform: scale(1.08);
}

.fcr-poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.3) 40%,
    transparent 70%);
  pointer-events: none;
}

/* Badge HD/720p */
.fcr-qual {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(200,149,42,0.9);
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  border-radius: 4px;
}

/* Overlay hover */
.fcr-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.fcr-card:hover .fcr-hover-overlay {
  opacity: 1;
}

.fcr-play-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--fcr-gold2);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid var(--fcr-gold2);
  padding: 14px 18px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.fcr-play-btn:hover {
  background: rgba(200,149,42,0.15);
}

/* ── INFO ── */
.fcr-info {
  padding: 12px 12px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fcr-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.fcr-card:hover .fcr-title {
  color: var(--fcr-gold2);
}

.fcr-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 11px;
  color: var(--fcr-muted);
}

.fcr-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.fcr-meta-sep {
  color: rgba(200,149,42,0.4);
}

.fcr-genre {
  font-style: italic;
}

.fcr-cat-tag {
  display: inline-block;
  background: rgba(192,57,43,0.2);
  color: #e88080;
  border: 1px solid rgba(192,57,43,0.4);
  font-size: 10px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  text-decoration: none;
  align-self: flex-start;
  margin-top: 2px;
  transition: background 0.2s, color 0.2s;
}

.fcr-cat-tag:hover {
  background: rgba(192,57,43,0.4);
  color: #ffaaaa;
}

.fcr-date-posted {
  font-size: 10px;
  color: rgba(136,136,136,0.6);
  margin-top: auto;
  padding-top: 6px;
}

/* ── FOOTER CTA ── */
.fcr-footer-cta {
  text-align: center;
  padding: 30px 20px 20px;
}

.fcr-btn-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1.5px solid var(--fcr-gold);
  color: var(--fcr-gold2);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 4px;
  transition: background 0.25s, color 0.25s;
}

.fcr-btn-home:hover {
  background: var(--fcr-gold);
  color: #000;
}

/* ── EMPTY ── */
.fcr-empty {
  text-align: center;
  color: var(--fcr-muted);
  font-style: italic;
  padding: 60px 20px;
}

/* ── SCROLL ANIMADO (JS override) ── */
.fcr-card.fcr-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
