/* Cinematic minimalist theme: deep red, white, black */
:root {
  --bg: #0a0a0a;
  --bg-soft: #121212;
  --text: #f3f3f3;
  --muted: #b9b9b9;
  --accent: #c1121f; /* deep red */
  --accent-soft: #7a0c15;
  --card: #161616;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; scroll-behavior: smooth; }

a { color: var(--text); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: center; gap: 1rem;
  padding: .8rem 1rem; background: rgba(10,10,10,.7); backdrop-filter: blur(6px); border-bottom: 1px solid #222;
}

.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: 'Playfair Display', serif; }
.brand-title { font-weight: 800; letter-spacing: .24em; }
.logo-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 20px var(--accent); }

.nav a { margin: 0 .6rem; opacity: .9; }
.nav a:hover { opacity: 1; }

.lang-switch { display: inline-flex; gap: .4rem; }
.lang { background: #1c1c1c; border: 1px solid #333; color: #eee; padding: .35rem .6rem; border-radius: 999px; cursor: pointer; }
.lang.active { background: var(--accent); border-color: var(--accent); }

.hero {
  position: relative; min-height: 88vh; display: grid; place-items: center; overflow: clip;
}
.hero-poster { width: 100%; height: 88vh; object-fit: cover; filter: grayscale(10%) contrast(105%) brightness(85%); }
.hero::after {
  content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0,0,0,.25), rgba(0,0,0,.75));
}
.hero-overlay {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 2rem;
  animation: fadeUp 1s ease both;
}
.title { font-family: 'Playfair Display', serif; font-weight: 900; letter-spacing: .22em; font-size: clamp(2.8rem, 7vw, 6rem); margin: 0; }
.subtitle { margin: .6rem 0 1rem; font-size: clamp(1rem, 2.8vw, 1.6rem); opacity: .95; }
.quote { font-style: italic; opacity: .9; max-width: 900px; }
.cta-row { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }
.cta {
  display: inline-block; margin-top: 1.2rem; background: var(--accent); color: #fff; border: none; padding: .9rem 1.2rem; border-radius: 999px;
  box-shadow: var(--shadow); font-weight: 700; letter-spacing: .04em; transition: transform .15s ease, box-shadow .15s ease;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 14px 35px rgba(193,18,31,.4); }
.cta.outline { background: transparent; border: 1px solid var(--accent); }

.section { padding: clamp(2.2rem, 4vw, 4rem) 1rem; }
.section .section-inner { max-width: 1200px; margin: 0 auto; }
.section.bg-dark { background: var(--bg-soft); border-top: 1px solid #1f1f1f; border-bottom: 1px solid #1f1f1f; }

.section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.4rem); margin: 0 0 .8rem; }

.section .bullets { list-style: none; padding: 0; margin: 1rem 0 0; }
.section .bullets li { margin: .4rem 0; color: var(--muted); }

.section .section-inner .col { flex: 1 1 0; }
.section .section-inner { display: flex; flex-wrap: wrap; gap: 2rem; }
.section .media { display: grid; place-items: center; }
.author-photo { width: min(100%, 280px); height: auto; border-radius: 16px; box-shadow: var(--shadow); border: 1px solid #333;display: block; margin-left: auto; margin-right: auto; }

.synopsis .logline { font-weight: 700; margin-bottom: .6rem; }
.note, .muted { color: var(--muted); }

.awards-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1rem; }
.award-card { background: var(--card); border: 1px solid #252525; padding: 1rem; border-radius: 16px; position: relative; box-shadow: var(--shadow); }
.award-card.placeholder { opacity: .8; }
.award-ribbon { position: absolute; top: -6px; right: -6px; width: 0; height: 0; border-left: 16px solid transparent; border-right: 16px solid transparent; border-bottom: 24px solid var(--accent); }

.video-frame { position: relative; width: 100%; max-width: 960px; margin: 0 auto; }
.video-frame { position: relative; padding-top: 56.25%; overflow: hidden; border-radius: 14px; box-shadow: var(--shadow); margin-bottom: 1.5rem; }
.video-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

.links-list { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: .6rem; margin-top: .5rem; }
.link-item { display: block; background: #141414; border: 1px solid #272727; padding: .9rem 1rem; border-radius: 12px; }
.link-item:hover { border-color: var(--accent); }

.form { display: grid; gap: .8rem; margin-top: 1rem; }
.form .grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
.form label { display: grid; gap: .35rem; font-size: .95rem; }
.form input, .form select, .form textarea {
  background: #111; border: 1px solid #2a2a2a; color: #eee; padding: .8rem .9rem; border-radius: 10px; width: 100%;
}
.form .check { display: flex; align-items: flex-start; gap: .5rem; }
.form .check input { width: auto; margin-top: .25rem; }
.hidden { display: none; }
.thanks { display: grid; place-items: center; min-height: 100vh; background: var(--bg); color: var(--text); }
.thanks-wrap { text-align: center; padding: 2rem; }
.thanks .cta { margin-top: 1rem; }

.site-footer { text-align: center; padding: 2rem 1rem; color: var(--muted); border-top: 1px solid #1a1a1a; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Small screens */
@media (max-width: 720px) {
  .nav { display: none; }
  .site-header { grid-template-columns: auto 1fr; }
  .form .grid-2 { grid-template-columns: 1fr; }
}
.award-image {
  max-width: 160px;
  height: auto;
  margin: 12px auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* CINEMATIC POSTER LIGHT EFFECT */
.hero-poster {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(1.25) contrast(1.2) saturate(1.1) sepia(0.15);
  transition: filter 0.8s ease, transform 0.6s ease;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
}

.hero-poster:hover {
  filter: brightness(1.35) contrast(1.25) saturate(1.2) sepia(0.2);
  transform: scale(1.02);
}
/* SCALE DOWN THE HERO POSTER FOR BETTER BALANCE */
.hero-poster {
  max-width: 600px; /* ajusta a tu gusto: 500px, 550px o 650px */
  margin: 0 auto;
  display: block;
}
/* Improve readability of hero subtitle and quote */
.hero h2,
.hero p {
  color: #f2f2f2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero h2 {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero p {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
}
/* ===== CALL TO ACTION BELOW POSTER ===== */
.below-hero {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.below-hero .cta {
  background-color: #3b2a20;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.below-hero .cta:hover {
  background-color: #6a4b32;
  transform: translateY(-3px);
}

.below-hero .cta.outline {
  background: transparent;
  color: #3b2a20;
  border: 2px solid #3b2a20;
}

.below-hero .cta.outline:hover {
  background-color: #3b2a20;
  color: #fff;
}

@media (max-width: 768px) {
  .below-hero {
    margin-top: 1.5rem;
  }

  .below-hero .cta {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
  }
}
/* ===== HERO TEXT BELOW POSTER (LIGHT ON DARK BACKGROUND) ===== */
.hero-text {
  margin-top: 2.2rem;
  text-align: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  color: #f3f3f3; /* blanco cálido */
  padding: 0 20px;
}

/* Subtítulo (Tagline principal) */
.hero-text .subtitle {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 12px rgba(255, 255, 255, 0.25);
}

/* Cita (Quote) */
.hero-text .quote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  color: #e9e9e9; /* blanco grisáceo para no chocar */
  margin-bottom: 2.2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 0 10px rgba(255, 255, 255, 0.25);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1024px) {
  .hero-text .subtitle {
    font-size: 1.7rem;
  }
  .hero-text .quote {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .hero-text {
    margin-top: 1.5rem;
    max-width: 90%;
  }
  .hero-text .subtitle {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
  }
  .hero-text .quote {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
}
/* ==== GRAPHIC UNIVERSE SECTION ==== */
#graphic {
  background-color: #0d0d0d;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

##graphic h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #ffffff;
  margin: 0 0 0.8rem;
  letter-spacing: 0.5px;
  text-transform: none; /* 👈 esto mantiene el formato normal */
}

#graphic p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-family: 'Lato', sans-serif;
  font-size: 1.1em;
  line-height: 1.7em;
  color: #dcdcdc;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery img {
  width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.cta-btn {
  display: inline-block;
  background-color: #e3b04b;
  color: #0d0d0d;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #fff;
  color: #000;
}
/* ==== GRAPHIC UNIVERSE ==== */
#graphic {
  background-color: #0d0d0d;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

#graphic h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #ffffff;
  margin: 0 0 0.8rem;
}

#graphic p {
  max-width: 850px;
  margin: 0 auto;
  font-family: 'Lato', sans-serif;
  font-size: 1.05em;
  line-height: 1.7em;
  color: #ddd;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.gallery img {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.cta-btn {
  display: inline-block;
  background-color: #e3b04b;
  color: #0d0d0d;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #fff;
  color: #000;
}

💡 Este código usa los mismos data-i18n que ya tienes en el script.js,
así que se traducirá automáticamente entre inglés y español.

🎨 2️⃣ Añade los estilos en style.css
Abre tu style.css y al final agrega este bloque:

css
Copy code
/* ==== LOGLINE & SYNOPSIS SECTION ==== */
#synopsis {
  background-color: #111;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

#synopsis h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.4em;
  color: #ffffff;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#synopsis .logline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2em;
  color: #e3b04b; /* dorado sutil */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

#synopsis p {
  font-family: 'Lato', sans-serif;
  font-size: 1.05em;
  line-height: 1.7em;
  color: #ddd;
  max-width: 850px;
  margin: 0 auto 20px auto;
}

#synopsis .note {
  font-size: 0.95em;
  color: #aaa;
  margin-top: 30px;
  font-style: italic;
}
/* ==== AWARDS SECTION ==== */
#awards {
  background-color: #0d0d0d;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.awards-list {
  list-style: none; /* quita viñetas */
  padding-left: 0;
  margin: 0 auto;
  max-width: 700px;
}

.awards-list li {
  position: relative;
  padding-left: 25px; /* espacio para el icono */
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 1.05em;
  color: #fff;
  text-align: left;
  line-height: 1.6;
}

/* Estrella dorada como viñeta */
.awards-list li::before {
  content: "★"; /* símbolo */
  color: #e3b04b; /* dorado */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1em;
  line-height: 1.6;
}
/* ==== SHARE LINE SECTION ==== */
#share {
  background-color: #0d0d0d;
  text-align: center;
  padding: 40px 20px 60px;
}

.share-line {
  font-family: 'Playfair Display', serif;
  font-size: 1.1em;
  font-style: italic;
  color: #e3b04b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}
