/* ==================== VARIABLES Y RESET ==================== */
:root {
  --fondo: #0a0a0a;
  --texto: #e0e0e0;
  --acento: #6b1c23;
  --acento-hover: #8a2a2f;
  --borde: #333;
  --rojo-brillante: #dc2626;
  --banner-overlay: rgba(0, 0, 0, 0.4);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--fondo);
  color: var(--texto);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ==================== TIPOGRAFÍA ==================== */
h1, h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f5f5f5;
  margin-bottom: 1rem;
}

h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  color: #e0e0e0;
}

a, button, input, label, .btn {
  font-family: 'Montserrat', sans-serif;
}

/* ==================== BANNER HERO ==================== */
.hero-banner {
  position: relative;
  width: 100%;
  height: 600px;
  background-image: url('assets/images/banner.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0a0a0a;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--banner-overlay);
}

/* ==================== NAVEGACIÓN ==================== */
.main-nav {
  background: #111;
  padding: 1rem;
  border-bottom: 1px solid var(--borde);
  position: sticky;
  top: 0;
  z-index: 100;
}

#menu-toggle {
  display: none;
  background: var(--acento);
  border: none;
  color: white;
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 4px;
}

#menu-toggle:hover {
  background: var(--acento-hover);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--texto);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.5rem 0;
}

.main-nav a:hover {
  color: var(--acento-hover);
  border-bottom: 2px solid var(--acento);
}

/* ==================== ESTRUCTURA GENERAL ==================== */
main {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  padding: 0 2rem;
}

section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--borde);
}

/* ==================== SECCIÓN DESTACADA ==================== */
.featured-section {
  background: transparent;
}

.featured-book-layout {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  margin-top: 2rem;
}

.book-info {
  flex: 1;
  max-width: 600px;
}

.book-info h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.book-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: var(--acento-hover);
  margin-bottom: 1rem;
}

.book-info p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.featured-banner-container {
  flex-shrink: 0;
  width: 400px;
}

.featured-banner {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.featured-banner:hover {
  transform: scale(1.02);
}

.book-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.genre-tag {
  background: var(--acento);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}

.book-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  padding: 0.8rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--acento);
  color: white;
}

.btn-primary:hover {
  background: var(--acento-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 28, 35, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--texto);
  border: 2px solid var(--borde);
}

.btn-secondary:hover {
  background: var(--borde);
  color: white;
}

/* ==================== PERFIL DE AUTOR ==================== */
.author-profile-large {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  background: #111;
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid var(--borde);
  margin-top: 2rem;
}

.author-photo-large {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--acento);
  flex-shrink: 0;
}

.author-bio-large h2 {
  margin-top: 0;
  font-size: 3rem;
  line-height: 1.1;
}

.author-bio-large .bio-text {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.author-social {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--borde);
}

.author-social h3 {
  margin-bottom: 1rem;
}

/* ==================== GRID DE OBRAS ==================== */
.obras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.obra-card {
  background: #111;
  border-radius: 8px;
  border: 1px solid var(--borde);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.obra-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cover-frame {
  background-color: var(--rojo-brillante);
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.cover-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.25);
}

.obra-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 5/8;
  object-fit: cover;
  display: block;
  border-radius: 3px;
}

.obra-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.obra-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.obra-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--acento-hover);
  margin-bottom: 1rem;
  font-style: italic;
}

.obra-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.question-highlight {
  font-style: italic;
  color: var(--acento-hover);
  border-left: 3px solid var(--acento);
  padding-left: 1rem;
  margin: 1.5rem 0;
}

.serie-libros {
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 4px;
  margin: 1.5rem 0;
  border-left: 3px solid var(--acento);
}

.serie-libros h4 {
  font-family: 'Oswald', sans-serif;
  margin-bottom: 0.8rem;
  color: var(--acento-hover);
}

.serie-libros ul {
  list-style: none;
  padding-left: 0;
}

.serie-libros li {
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.serie-libros li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--acento);
}

/* ==================== FORMULARIOS ==================== */
form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 400px;
}

input[type="email"], input[type="search"] {
  padding: 0.8rem;
  border: 1px solid var(--borde);
  border-radius: 4px;
  background: #111;
  color: var(--texto);
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}

input:focus {
  outline: 2px solid var(--acento);
  border-color: transparent;
}

.form-note {
  font-size: 0.85rem;
  color: #999;
  margin-top: 0.5rem;
}

#search-results {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--borde);
  border-radius: 4px;
  background: #111;
  min-height: 50px;
}

#search-results .obra-card {
  margin-bottom: 1rem;
}

/* ==================== PIE DE PÁGINA ==================== */
.site-footer {
  position: relative;
  background-image: url('assets/images/pie_de_pagina.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 2rem;
  text-align: center;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  color: #f5f5f5;
}

.footer-content p {
  margin: 0.5rem 0;
}

.footer-tagline {
  font-style: italic;
  color: #ccc;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--texto);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid var(--borde);
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
}

.social-links a:hover {
  background: var(--acento);
  border-color: var(--acento);
  color: white;
  transform: translateY(-2px);
}

/* ==================== FORMULARIO DE CONTACTO ==================== */
.contact-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--texto);
}

.contact-form-wrapper {
  background: #111;
  border: 2px solid var(--borde);
  border-radius: 8px;
  padding: 3rem;
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--texto);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: #1a1a1a;
  border: 1px solid var(--borde);
  border-radius: 4px;
  color: var(--texto);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--acento);
  box-shadow: 0 0 0 3px rgba(107, 28, 35, 0.2);
  background: #111;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 1.2rem;
  background: #0f2528;
  color: white;
  border: none;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--acento);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 28, 35, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin-top: 1.5rem;
}

/* ==================== PÁGINA DE GRACIAS ==================== */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--fondo);
}

.thank-you-container {
  text-align: center;
  max-width: 600px;
  background: #111;
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid var(--borde);
}

.thank-you-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.share-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--borde);
}

.share-section h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.share-text {
  color: #999;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-share {
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-share.whatsapp {
  background: #25D366;
  color: white;
}

.btn-share.whatsapp:hover { background: #128C7E; transform: translateY(-2px); }
.btn-share.twitter {
  background: #000000;
  color: white;
  border: 1px solid #333;
}

.btn-share.twitter:hover { background: #333; transform: translateY(-2px); }
.btn-share.facebook {
  background: #1877F2;
  color: white;
}

.btn-share.facebook:hover { background: #0D65D9; transform: translateY(-2px); }

/* ==================== BREADCRUMBS ==================== */
.breadcrumbs-book {
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #777;
  font-family: 'Montserrat', sans-serif;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #333;
}

.breadcrumbs-book a {
  color: #8a2a2f;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-book a:hover {
  color: #fff;
  text-decoration: underline;
}

.breadcrumbs-book span {
  margin: 0 0.4rem;
  color: #555;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  #menu-toggle {
    display: block;
  }
  .main-nav ul {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--borde);
  }
  .main-nav ul.active {
    display: flex;
  }
  .main-nav li {
    width: 100%;
    text-align: center;
  }
  .main-nav a {
    display: block;
    padding: 0.8rem;
  }

  .hero-banner {
    height: auto;
    min-height: 300px;
    max-height: 500px;
    background-size: contain;
    padding: 2rem 0;
  }

  .featured-book-layout {
    flex-direction: column;
  }

  .featured-banner-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .book-info {
    max-width: 100%;
    text-align: center;
  }

  .book-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .author-profile-large {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
  }

  .author-photo-large {
    width: 200px;
    height: 200px;
  }

  .author-bio-large h2 {
    font-size: 2.5rem;
    margin-top: 1rem;
  }

  .obras-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cover-frame {
    padding: 8px;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .social-links a {
    width: 100%;
    max-width: 300px;
  }

  main {
    padding: 0 1rem;
  }

  .book-page, .press-container, .legal-container, .about-container {
    padding: 1.5rem 1rem;
  }

  .book-hero {
    gap: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .book-cover img {
    max-width: 220px;
  }

  .book-info h1 {
    font-size: 1.6rem;
  }

  .book-tagline {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
  }

  .excerpt-box, .bonus-section, .bio-box, .character-bio {
    padding: 1.2rem;
  }

  .character-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .character-img {
    width: 120px;
    height: 120px;
  }
  
  .breadcrumbs-book {
    font-size: 0.8rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .contact-intro {
    font-size: 1rem;
  }
  
  .thank-you-container {
    padding: 2rem 1.5rem;
  }
  
  .share-buttons {
    flex-direction: column;
  }
  
  .btn-share {
    width: 100%;
  }
}

/* ==================== ACCESIBILIDAD ==================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--acento);
  color: white;
  padding: 0.5rem;
  z-index: 100;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* ==================== CONTENEDORES CON SCROLL INTERNO ==================== */
/* Para móvil: cajas con scroll en lugar de todo el texto visible */

@media (max-width: 768px) {
  /* Sinopsis con scroll */
  .synopsis {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 1rem;
    scrollbar-width: thin;
    scrollbar-color: #6b1c23 #1a1a1a;
  }
  
  /* Extracto con scroll */
  .excerpt-box {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 1rem;
    scrollbar-width: thin;
    scrollbar-color: #6b1c23 #1a1a1a;
  }
  
  /* Fichas de personajes con scroll */
  .character-bio {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 1rem;
    scrollbar-width: thin;
    scrollbar-color: #6b1c23 #1a1a1a;
  }
  
  /* Estilo del scrollbar para Webkit (Chrome, Safari) */
  .synopsis::-webkit-scrollbar,
  .excerpt-box::-webkit-scrollbar,
  .character-bio::-webkit-scrollbar {
    width: 6px;
  }
  
  .synopsis::-webkit-scrollbar-track,
  .excerpt-box::-webkit-scrollbar-track,
  .character-bio::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 3px;
  }
  
  .synopsis::-webkit-scrollbar-thumb,
  .excerpt-box::-webkit-scrollbar-thumb,
  .character-bio::-webkit-scrollbar-thumb {
    background: #6b1c23;
    border-radius: 3px;
  }
  
  .synopsis::-webkit-scrollbar-thumb:hover,
  .excerpt-box::-webkit-scrollbar-thumb:hover,
  .character-bio::-webkit-scrollbar-thumb:hover {
    background: #8a2a2f;
  }
}

/* ==================== MEJORAS DE LEGIBILIDAD EN MÓVIL ==================== */
@media (max-width: 768px) {
  /* Aumentar interlineado */
  .book-page p,
  .synopsis p,
  .excerpt-box p,
  .character-bio p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
  }
  
  /* Aumentar tamaño de fuente en móvil */
  .book-page,
  .synopsis,
  .excerpt-box,
  .character-bio {
    font-size: 1.05rem;
  }
  
  /* Mejorar espaciado entre párrafos */
  .excerpt-box p + p {
    margin-top: 1.2rem;
  }
  
  /* Sangría en extractos */
  .excerpt-box p {
    text-indent: 1.5rem;
  }
  
  .excerpt-box p:first-of-type {
    text-indent: 0;
  }
}

/* ==================== BLOG ==================== */
.blog-section {
  padding: 4rem 0;
}

.blog-post {
  background: #111;
  border: 1px solid var(--borde);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
}

.post-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--borde);
}

.post-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.post-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.post-date {
  color: #888;
  font-size: 0.9rem;
}

.post-category {
  background: var(--acento);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-family: 'Oswald', sans-serif;
}

.post-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.tag {
  background: #1a1a1a;
  color: #aaa;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  font-size: 0.8rem;
  border: 1px solid var(--borde);
}

.post-image-container {
  margin: 2rem auto;
  text-align: center;
  max-width: 700px;
}

.post-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.post-content {
  line-height: 1.8;
  color: var(--texto);
}

.post-content p {
  margin-bottom: 1.2rem;
}

.post-content strong {
  color: #fff;
}

.post-content em {
  color: var(--acento-hover);
  font-style: italic;
}

.synopsis-box,
.tropes-box,
.purchase-box,
.author-note {
  background: #1a1a1a;
  border-left: 3px solid var(--acento);
  padding: 1.2rem;
  border-radius: 0 4px 4px 0;
  margin: 1.5rem 0;
}

.synopsis-box h4,
.tropes-box h4,
.purchase-box h4,
.author-note h4 {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}

.tropes-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.tropes-box li {
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.tropes-box li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--acento);
}

.purchase-box ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}

.purchase-box a {
  color: #8a2a2f;
  word-break: break-all;
}

.post-cta {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.author-note {
  background: linear-gradient(135deg, #1a0505 0%, #111 100%);
  border-left-color: #8a2a2f;
}

.author-note p:last-child {
  margin-bottom: 0;
}

.blog-coming-soon {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-style: italic;
}

/* Lista de posts en blog.html */
.posts-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.post-preview {
  background: #111;
  border: 1px solid var(--borde);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.post-preview:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  border-color: var(--acento);
}

.post-preview h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.post-preview .post-excerpt {
  color: var(--texto);
  margin: 1rem 0;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  color: var(--acento-hover);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #fff;
}

/* Responsive para blog */
@media (max-width: 768px) {
  .blog-post,
  .post-preview {
    padding: 1.5rem;
  }
  
  .post-header h3 {
    font-size: 1.5rem;
  }
  
  .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .post-image-container {
    max-width: 100%;
  }
  
  .post-cta {
    flex-direction: column;
  }
  
  .post-cta .btn {
    width: 100%;
  }
  
  .synopsis-box,
  .tropes-box,
  .purchase-box,
  .author-note {
    padding: 1rem;
  }
}

/* ==================== PRÓXIMOS LANZAMIENTOS ==================== */
.coming-soon-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 100%);
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.coming-soon-container {
  max-width: 1200px;
  margin: 0 auto;
}

.coming-soon-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: #8a2a2f;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.coming-soon-card {
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.coming-soon-card:hover {
  border-color: #6b1c23;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(107, 28, 35, 0.3);
}

.coming-soon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6b1c23, #8a2a2f, #6b1c23);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.coming-soon-card:hover::before {
  opacity: 1;
}

.coming-soon-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #222;
  color: #8a2a2f;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.coming-soon-badge.confidential {
  background: linear-gradient(135deg, #6b1c23, #8a2a2f);
  color: #fff;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.coming-soon-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0 0.25rem;
}

.coming-soon-title {
  font-style: italic;
  color: #8a2a2f;
  margin: 0 0 1rem;
  font-size: 1rem;
}

.coming-soon-desc {
  color: #bbb;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.coming-soon-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #1a0505;
  color: #6b1c23;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.secret-project {
  border-style: dashed;
  border-color: #6b1c23;
}

.coming-soon-cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px dashed #333;
}

.coming-soon-cta p {
  color: #bbb;
  margin-bottom: 1rem;
}

.coming-soon-cta .btn {
  display: inline-block;
}

/* Responsive para Próximos Lanzamientos */
@media (max-width: 768px) {
  .coming-soon-section {
    padding: 3rem 1rem;
  }
  .coming-soon-section h2 {
    font-size: 1.5rem;
  }
}

/* ==================== NEWSLETTER ==================== */
.newsletter-section {
  padding: 4rem 2rem;
  background: #111;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: #8a2a2f;
  margin-bottom: 1rem;
}

.newsletter-section p {
  color: #bbb;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 0.8rem;
  background: #1a1a1a;
  border: 1px solid var(--borde);
  border-radius: 4px;
  color: var(--texto);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--acento);
  box-shadow: 0 0 0 3px rgba(107, 28, 35, 0.2);
}

.newsletter-form .btn {
  padding: 0.8rem 2rem;
}

.newsletter-note {
  color: #666;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input[type="email"] {
    width: 100%;
  }
  .newsletter-form .btn {
    width: 100%;
  }
}

/* ==================== ELIMINAR BOTÓN DE SONIDO ==================== */
#sound-toggle {
  display: none !important;
}