/* ── PAGE HERO ── */
.page-hero {
  padding: 120px 32px 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% -20%, rgba(56,189,248,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.page-hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
}

/* ── GRID ── */
.peliculas-section { padding: 0 32px var(--section-py); }
.peliculas-inner { max-width: 1100px; margin: 0 auto; }

.peliculas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pelicula-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  transition: var(--t);
  position: relative;
}
.pelicula-card:hover {
  border-color: rgba(56,189,248,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.pelicula-visual {
  height: 160px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Each film type has a unique visual */
.visual-fume { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.visual-refletiva { background: linear-gradient(135deg, #2d4059 0%, #ea907a 50%, #fbc687 100%); }
.visual-blackout { background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); }
.visual-ceramica { background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%); }
.visual-carbono { background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 50%, #11998e 100%); }
.visual-transparente { background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(56,189,248,0.08) 100%); border-bottom: 1px solid var(--glass-border); }
.visual-jateada { background: linear-gradient(135deg, #3a3f47 0%, #6b7280 50%, #9ca3af 100%); }
.visual-branca { background: linear-gradient(135deg, #e2e8f0 0%, #f8fafc 50%, #e2e8f0 100%); }
.visual-branca .visual-icon { filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3)); }
.visual-seguranca { background: linear-gradient(135deg, #0f1729 0%, #1e293b 50%, #334155 100%); }

.visual-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 12px
  );
}
.visual-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-primary);
}
.visual-icon {
  font-size: 48px;
  z-index: 1;
  position: relative;
}

.pelicula-body { padding: 24px; }
.pelicula-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pelicula-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.pelicula-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.pelicula-tags .tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 3px 9px;
}

.pelicula-specs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  gap: 12px;
}
.spec-row-text .spec-val { text-align: right; }
.spec-key { color: var(--text-muted); flex-shrink: 0; }
.spec-val { color: var(--text-secondary); font-weight: 500; }

.spec-bar-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.spec-bar {
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.spec-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--accent);
}

.pelicula-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #25d366;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.2);
  transition: var(--t);
  width: 100%;
  justify-content: center;
}
.pelicula-cta:hover {
  background: rgba(37,211,102,0.15);
  border-color: rgba(37,211,102,0.4);
  transform: none;
}

/* ── INFO BOX ── */
.info-box {
  margin-top: 52px;
  background: var(--glass-bg);
  border: 1px solid rgba(56,189,248,0.15);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.info-box-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-box-icon svg { width: 20px; height: 20px; color: var(--accent); }
.info-box-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.info-box-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 900px) { .peliculas-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { 
  .peliculas-grid { grid-template-columns: 1fr; }
  .page-hero, .peliculas-section { padding-left: 20px; padding-right: 20px; }
  .info-box { flex-direction: column; padding: 24px; }
}
