/* acabo dfe ver que tenia que ser todos los css en un archivo asi q los he copiado y pegado en uno jeje */

body {
  margin: 0;
  padding: 0;
  background-color: #141414;
  font-family: Arial, sans-serif;
  color: #fff;
}

dt, dd {
  margin: 0;
  padding: 0;
}

dd {
  margin-left: 0; 
}


#contenedor, #contenido-principal {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

#cabecera {
  background-color: #000;
  text-align: center;
  width: 100%;
  height: 120px;
  padding: 20px 0;
}

#cabecera img {
  height: 80px;
  vertical-align: middle;
}

#cabecera h1 {
  display: inline-block;
  margin: 0 0 0 15px;
  color: #fff;
  vertical-align: middle;
  font-size: 28px;
}

#cabecera .subtitulo {
  color: #e50914;
  margin: 5px 0 0;
  font-size: 14px;
}

#menu-principal {
  width: 100%;
  height: 50px;
  background-color: #000;
  border-top: 1px solid #333;
  text-align: center;
}

#menu-principal ul {
  margin: 0;
  padding: 15px 0;
  list-style: none;
}

#menu-principal li {
  display: inline-block;
  margin: 0 15px;
}

#menu-principal a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

#footer {
  width: 100%;
  padding: 20px 0;
  background-color: #000;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
}

#footer p {
  color: #999;
  font-size: 14px;
  margin: 0;
}

#slider-principal {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: auto;
  max-height: 400px;
  margin-bottom: 40px;
}

.slider-item {
  width: 100%;
  position: relative;
  padding-top: 25%;
}

.slider-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.slider-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
}

.slider-content h2 {
  font-size: 48px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slider-content p {
  font-size: 24px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slider-buttons {
  display: flex;
  gap: 15px;
}

.seccion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.seccion-header h2 {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #fff;
  gap: 10px;
}

.seccion-header h2 i {
  color: #e50914;
  font-size: 24px;
}

.ver-todo {
  color: #e50914;
  text-decoration: none;
  font-size: 14px;
}

.seccion-peliculas,
.seccion-promociones,
.seccion-cineclub,
.compromiso-section,
.instalaciones-section,
.historia-section,
.membresia-section {
  margin-bottom: 60px;
}

.boton-hero,
.boton-unirse,
.boton-solicitar {
  display: inline-block;
  background-color: #e50914;
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

.boton-info {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.boton-info i {
  margin-right: 8px;
}

.boton-mas-info,
.boton-cineclub {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
}

.boton-comprar {
  background: #e50914;
  color: #fff;
  padding: 15px 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: bold;
  font-size: 19px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
}

.grid-peliculas,
.grid-peliculas-cineclub,
.grid-estrenos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
  margin-bottom: 40px;
}

.grid-promociones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.grid-cartelera {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 30px 0;
}

.pelicula-card {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pelicula-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.pelicula-imagen {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.pelicula-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pelicula-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.pelicula-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pelicula-info h3 {
  font-size: 19px;
  margin: 0 0 10px 0;
  line-height: 23px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.meta-info {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}

.meta-info dt {
  display: none;
}

.meta-info dd {
  color: #999;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.pelicula-card .meta-info span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #999;
  font-size: 14px;
  margin-right: 15px;
}

.pelicula-card .meta-info i {
  color: #e50914;
  margin-right: 5px;
}

.clasificacion,
.pelicula-card dt.clasificacion,
.pelicula-card dd.clasificacion {
  display: inline-block;
  padding: 5px 10px;
  background-color: #e50914;
  border-radius: 4px;
  margin: 10px 0;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.promo-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(26,26,26,0.8);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.promo-card:first-child {
  border: 1px solid #e50914;
}

.promo-imagen {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex: 0 0 auto;
}

.promo-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-etiqueta {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #e50914;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  z-index: 1;
}

.promo-contenido {
  padding: 25px;
  flex: 1;
  z-index: 1;
}

.promo-contenido h3 {
  font-size: 24px;
  color: #fff;
  margin: 0 0 15px 0;
}

.promo-precio {
  font-size: 36px;
  color: #e50914;
  font-weight: bold;
  margin-bottom: 15px;
}

.promo-descripcion {
  color: #ccc;
  line-height: 24px;
  margin-bottom: 15px;
}

.promo-detalles {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.promo-detalles dt {
  color: #e50914;
  font-weight: bold;
  margin-bottom: 10px;
}

.promo-detalles dd {
  color: #fff;
  padding-left: 25px;
  margin: 0 0 8px 0;
  position: relative;
  font-size: 14px;
}

.promo-detalles dd::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e50914;
}

.promo-detalles dd.restriccion::before {
  content: "!";
  color: #e50914;
  font-weight: bold;
}

.promociones-destacadas {
  padding: 40px 20px;
}

.promociones-destacadas h2 {
  text-align: center;
  color: #fff;
  font-size: 32px;
  margin-bottom: 40px;
}

.tarjeta-plus-container {
  display: flex;
  background: rgba(26, 26, 26, 0.8);
  border-radius: 10px;
  padding: 40px;
  margin: 40px auto;
  max-width: 1000px;
  gap: 40px;
}

.tarjeta-imagen {
  flex: 0 0 300px;
}

.tarjeta-imagen img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.tarjeta-info {
  flex: 1;
}

.tarjeta-info h2 {
  font-size: 36px;
  margin: 0 0 10px 0;
  color: #fff;
}

.tarjeta-info .subtitulo {
  color: #ccc;
  font-size: 18px;
  margin-bottom: 30px;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.beneficio-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
}

.beneficio-item h3 {
  color: #fff;
  font-size: 18px;
  margin: 0 0 10px 0;
}

.beneficio-item p {
  color: #ccc;
  margin: 0;
  font-size: 14px;
}

.boton-solicitar {
  display: inline-block;
  background: #e50914;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.boton-solicitar:hover {
  background: #f40612;
}

.promocion-unica {
  margin-bottom: 40px;
  padding: 0 20px;
}

.promocion-unica .promo-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.promocion-unica .promo-imagen {
  height: 100%;
}

.promocion-unica .promo-contenido {
  padding: 40px;
}


.hero-cartelera,
.hero-estrenos,
.hero-promociones {
  width: 100%;
  padding: 60px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  color: #fff;
}

.hero-content h1,
.hero-cartelera h1,
.hero-estrenos h1 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p,
.hero-estrenos p {
  font-size: 24px;
  color: #ccc;
  margin-bottom: 30px;
}


.filtros-cartelera {
  width: 300px;
  margin: 0 auto;
}

.selector-fecha {
  position: relative;
  display: inline-block;
  width: 100%;
}

.selector-fecha i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #e50914;
}

.selector-fecha select {
  width: 100%;
  padding: 12px 20px 12px 40px;
  background-color: #222;
  color: #fff;
  border: 1px solid #444;
  border-radius: 4px;
  font-size: 16px;
  appearance: none;
}


.sesiones {
  padding: 0;
  width: 100%;
  margin-top: 15px;
}

.sesiones dt,
.sesiones h3 {
  color: #e50914;
  margin-bottom: 15px;
  font-size: 19px;
}

.sesiones dd,
.sesiones li {
  display: inline-block;
  background: #e50914;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 15px 0 0;
}

.estreno-card {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.estreno-imagen {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.estreno-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estreno-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.estreno-overlay:hover {
  opacity: 1;
}

.boton-trailer {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: rgba(229, 9, 20, 0.8);
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 15px;
}

.boton-trailer i {
  margin-right: 8px;
}

.estreno-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.estreno-info h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.estreno-info .sinopsis {
  color: #ccc;
  line-height: 24px; 
  margin: 15px 0;
  flex-grow: 1;
}

.estreno-acciones {
  margin-top: 15px;
}

.fecha-estreno {
  display: inline-block;
  padding: 5px 15px;
  background-color: #e50914;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
}


#contenido-precios {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

#contenido-precios h2 {
    font-size: 40px;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.tabla-precios {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
}

.tabla-precios h3 {
    color: #e50914;
    font-size: 29px;
    margin-bottom: 20px;
}

.tabla-precios-dl {
    width: 100%;
    color: #fff;
}

.tabla-precios-dl .tabla-header {
    display: flex;
    background-color: #e50914;
    color: #fff;
    padding: 15px;
    font-size: 16px;
}

.tabla-precios-dl .tabla-header .col-1,
.tabla-precios-dl .tabla-header .col-2,
.tabla-precios-dl .tabla-header .col-3 {
    font-weight: normal;
}

.tabla-precios-dl .tabla-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tabla-precios-dl .tabla-row:last-child {
    border-bottom: none;
}

.tabla-precios-dl .col-1,
.tabla-precios-dl .col-2,
.tabla-precios-dl .col-3 {
    padding: 0 15px;
}

.tabla-precios-dl dt {
    font-weight: normal;
}

.tabla-precios-dl dd {
    margin: 0;
}

.notas {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
}

.notas h3 {
    color: #e50914;
    font-size: 29px;
    margin-bottom: 20px;
}

.notas ul {
    list-style: none;
    padding: 0;
}

.notas li {
    color: #fff;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.notas li:before {
    content: '•';
    color: #e50914;
    position: absolute;
    left: 0;
    font-size: 24px;
    line-height: 24px;
}

.precio-destacado {
    color: #e50914;
    font-weight: bold;
    font-size: 19px;
}




.hero-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
}

.hero-cineclub {
    width: 100%;
    max-width: 1200px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 56px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 24px;
    color: #ccc;
    margin-bottom: 30px;
}

.boton-hero {
    display: inline-block;
    background-color: #e50914;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 19px;
    text-decoration: none;
}

.contenido-cineclub {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.seccion-cineclub {
    margin-bottom: 60px;
}

.seccion-cineclub h2 {
    font-size: 40px;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.grid-peliculas-cineclub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.pelicula-cineclub {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pelicula-cineclub-imagen {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}

.pelicula-cineclub-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pelicula-cineclub-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pelicula-cineclub-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pelicula-cineclub-info h3 {
    font-size: 19px;
    margin: 0 0 10px 0;
    line-height: 1.2;
    color: #fff;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pelicula-cineclub-meta {
    display: flex;
    gap: 15px;
    margin-bottom: auto;
    margin: 15px 0;
}

.pelicula-cineclub-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #999;
    font-size: 14px;
    margin-right: 15px;
}

.pelicula-cineclub-meta i {
    color: #e50914;
    margin-right: 5px;
}

.boton-cineclub {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.beneficios-cineclub {
    background: rgba(229, 9, 20, 0.05);
    padding: 60px 0;
    margin-bottom: 60px;
}

.beneficios-cineclub h2 {
    font-size: 40px;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.grid-beneficios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.beneficio-card {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.beneficio-card i {
    font-size: 40px;
    color: #e50914;
    margin-bottom: 20px;
}

.beneficio-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

.beneficio-card p {
    color: #ccc;
    line-height: 1.6;
}

.membresia-section {
    margin-bottom: 60px;
}

.membresia-section h2 {
    font-size: 40px;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.planes-grid {
    max-width: 800px;
    margin: 0 auto;
}

.plan-card {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.plan-card.destacado {
    border: 2px solid #e50914;
    background: rgba(229, 9, 20, 0.05);
}

.plan-header {
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
}

.plan-header .precio {
    font-size: 48px;
    color: #e50914;
    font-weight: bold;
    margin-bottom: 5px;
}

.plan-header .periodo {
    color: #ccc;
    font-size: 16px;
}

.plan-beneficios {
    margin-bottom: 30px;
}

.plan-beneficios ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.plan-beneficios li {
    color: #fff;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.plan-beneficios li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #e50914;
}

.unirse-cineclub {
    text-align: center;
    margin-bottom: 60px;
}

.unirse-cineclub h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
}

.unirse-cineclub p {
    color: #ccc;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.boton-unirse {
    display: inline-block;
    background-color: #e50914;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
}



.hero-promociones {
    position: relative;
    height: 300px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('../img/promos/hero-promociones.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
}

.hero-content {
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.contenido-promociones {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.promociones-destacadas h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.promocion-unica .promo-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.promocion-unica .promo-imagen {
    height: 100%;
}

.promocion-unica .promo-contenido {
    padding: 40px;
}

.promo-descripcion {
    color: #ccc;
    line-height: 1.6;
}

.promo-detalles {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.promo-detalles li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.promo-detalles i {
    color: #e50914;
    font-size: 19px;
}

.promo-detalles .fa-times {
    color: #999;
}



#contenido-quienes-somos {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.historia-section {
    margin-bottom: 60px;
}

.historia-section h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.historia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.historia-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.historia-texto {
    color: #ccc;
    line-height: 29px;
}

.historia-texto p {
    margin-bottom: 20px;
}

.instalaciones-section {
    margin-bottom: 60px;
}

.instalaciones-section h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.grid-instalaciones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.instalacion-card {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.instalacion-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.instalacion-card h3 {
    color: #e50914;
    font-size: 24px;
    margin: 20px 20px 15px;
}

.instalacion-card dl {
    list-style: none;
    padding: 0 20px 20px;
    margin: 0;
}

.instalacion-card dt.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.instalacion-card dd {
    color: #ccc;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.instalacion-card dd:before {
    content: "•";
    color: #e50914;
    position: absolute;
    left: 0;
}

.compromiso-section {
    margin-bottom: 60px;
}

.compromiso-section h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.grid-compromisos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.compromiso-card {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.compromiso-card i {
    font-size: 48px;
    color: #e50914;
    margin-bottom: 20px;
}

.compromiso-card h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.compromiso-card p {
    color: #ccc;
    line-height: 24px;
}

.contacto-section {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
}

.contacto-section h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.contacto-info {
    margin-top: 20px;
}

.datos-contacto h3 {
    color: #e50914;
    font-size: 24px;
    margin-bottom: 20px;
}

.datos-contacto dl {
    list-style: none;
    padding: 0;
    margin: 0;
}

.datos-contacto dt {
    color: #fff;
    display: inline-block;
    margin-right: 10px;
    font-weight: bold;
}

.datos-contacto dd {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 18px;
}


#contenido-horarios {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

#contenido-horarios h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.horarios-apertura {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.tabla-horarios-dl {
    width: 100%;
    color: #fff;
}

.tabla-horarios-dl .tabla-header {
    display: flex;
    background-color: #e50914;
    color: #fff;
    padding: 15px;
    text-align: left;
    font-size: 19px;
}

.tabla-horarios-dl .tabla-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tabla-horarios-dl .tabla-row:last-child {
    border-bottom: none;
}

.tabla-horarios-dl .col-1,
.tabla-horarios-dl .col-2 {
    padding: 0 15px;
}

.tabla-horarios-dl dt {
    font-weight: normal;
}

.tabla-horarios-dl dd {
    margin: 0;
}



#contenido-salas {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

#contenido-salas h2 {
    font-size: 40px;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.grid-salas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.sala-card {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.sala-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid #e50914;
}

.sala-info {
    padding: 25px;
}

.sala-info h3 {
    color: #e50914;
    font-size: 29px;
    margin-bottom: 20px;
}

.caracteristicas {
    list-style: none;
    padding: 0;
    margin: 0;
}

.caracteristicas dt.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.caracteristicas dd {
    color: #fff;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 18px;
}

.caracteristicas dd:before {
    content: '•';
    color: #e50914;
    position: absolute;
    left: 0;
    font-size: 24px;
    line-height: 24px; 
}

.info-tecnica {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
    border: 1px solid rgba(255,255,255,0.1);
}

.info-tecnica h3 {
    color: #e50914;
    font-size: 29px;
    margin-bottom: 20px;
}

.info-tecnica p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
}



.contenido-legal {
    width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
}

.legal-intro {
    color: #999;
    font-size: 19px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.legal-section {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 30px;
}

.legal-icon {
    text-align: center;
    margin-bottom: 20px;
}

.legal-icon .icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    line-height: 60px; 
    background: #e50914;
    border-radius: 50%;
    display: inline-block;
}

.legal-section h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.legal-content {
    color: #e6e6e6;
}

.legal-content dl {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-content dt.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.legal-content dd {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.legal-content dd:before {
    content: "•";
    color: #e50914;
    position: absolute;
    left: 0;
}

.legal-content p {
    line-height: 24px;
    margin-bottom: 15px;
}

.contacto-section {
    grid-column: span 2;
    background: rgba(229, 9, 20, 0.1);
}

.contacto-icon {
    text-align: center;
    margin-bottom: 20px;
}

.contacto-icon .icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #e50914;
    border-radius: 50%;
    display: inline-block;
}

.contacto-section h2 {
    color: #fff;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.contacto-section p {
    color: #e6e6e6;
    text-align: center;
    margin-bottom: 20px;
}

.contacto-info {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 5px;
}

.contacto-info p {
    margin-bottom: 10px;
    color: #e6e6e6;
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contacto-info .label {
    color: #e50914;
    font-weight: bold;
    margin-right: 10px;
}



#contenido-pelicula {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.pelicula-detalle {
    width: 100%;
    background-color: #000;
    overflow: hidden;
}

.poster-background {
    display: none;
}

.pelicula-info {
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.poster {
    width: 278px;
    height: 417px;
    flex-shrink: 0;
}

.poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detalles {
    flex-grow: 1;
    color: #fff;
}

.detalles h1 {
    font-size: 36px;
    margin-bottom: 5px;
    color: #fff;
}

.clasificacion,
dt.clasificacion,
dd.clasificacion {
    background-color: #e50914;
    color: #fff;
    display: inline-block;
    margin: 5px 0;
    padding: 2px 8px;
    font-weight: bold;
    font-size: 12px;
    border-radius: 4px;
}

.meta-info {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.meta-info dt {
    display: none; 
}

.meta-info dd {
    color: #999;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.info-tecnica {
    width: 100%;
    margin: 20px 0;
}

.info-tecnica dt {
    float: left;
    clear: left;
    text-align: left;
    padding: 3px 10px 3px 0;
    color: #fff;
    width: 120px;
    font-weight: normal;
}

.info-tecnica dd {
    margin: 0;
    padding: 3px 0;
    color: #fff;
}

.sinopsis {
    margin: 30px 0;
}

.sinopsis h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.sinopsis p {
    color: #ccc;
    line-height: 1.5;
    font-size: 15px;
}

.sesiones {
    padding: 0;
    width: 100%;
}

.sesiones dt {
    color: #fff;
    margin-bottom: 15px;
    font-size: 19px;
}

.sesiones dd {
    display: inline-block;
    background: #e50914;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 15px 0 0;
}

.comprar {
    margin-top: 30px;
}

.trailer {
    text-align: left;  
    margin: 40px 0 60px 0;
    width: 100%; 
}

.trailer h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.trailer object,
.trailer iframe {
    width: 100%;  
    height: 500px;
    display: block;
}

.horarios {
    margin: 30px 0;
    width: fit-content;  
}

.horarios h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.sesiones dt {
    color: #e50914;  
    margin-bottom: 15px;
    font-size: 16px;
}

.sesiones dd {
    display: inline-block;
    background: #333; 
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 10px 10px 0;
}

.boton-comprar {
    display: inline-block;
    background: #e50914;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    width: auto; 
    min-width: 0;
    max-width: none;
}

.boton-comprar:hover {
    background: #f6121d;
}

.trailer {
    margin-top: 30px;
}

.trailer h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.trailer iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.horarios {
    margin: 30px 0;
}

.horarios h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.dia-horarios {
    margin-bottom: 20px;
}

.dia-horarios h3 {
    color: #e50914;
    font-size: 22px;
    margin-bottom: 15px;
}

.lista-horarios {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hora-sesion {
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid #e50914;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 19px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hora-sesion i {
    font-size: 13px;
}

.seccion-compra {
    margin-top: 40px;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}

th {
    background-color: #e50914;
    color: #fff;
    text-align: left;
    padding: 15px;
    font-weight: normal;
    font-size: 16px;
}

td {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

tr:last-child td {
    border-bottom: none;
}

.tabla-horarios {
    margin-bottom: 40px;
}


.tabla-precios {
    margin-bottom: 30px;
}

.tabla-precios td:nth-child(2) {
    color: #e50914;
    font-weight: bold;
}

.tabla-suplementos td:nth-child(2) {
    color: #e50914;
    font-weight: bold;
}


.tabla-horarios-dl,
.tabla-precios-dl {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
    margin: 0;
}


.tabla-header {
    display: flex;
    background-color: #e50914;
    color: #fff; 
    padding: 15px;
    font-size: 16px;
}

.tabla-header .col-1,
.tabla-header .col-2,
.tabla-header .col-3 {
    color: #fff; 
    font-weight: normal;
}


.tabla-row {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

.tabla-row:last-child {
    border-bottom: none;
}


.col-1 {
    flex: 2;
    padding-right: 15px;
}

.col-2 {
    flex: 1;
    color: #e50914;
    font-weight: bold;
}

.col-3 {
    flex: 2;
}


dt, dd {
    margin: 0;
    padding: 0;
}

.horarios-apertura {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
}

.tabla-precios {
    margin-bottom: 30px;
}

.tabla-precios-dl .col-2 {
    text-align: right;
}

.tabla-suplementos-dl .col-2 {
    color: #e50914;
    font-weight: bold;
    text-align: right;
}







