.tarjeta-horizontal {
  display: flex;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  overflow: hidden;
  margin: 1rem 0;
  transition: transform 0.2s;
  flex-direction: row;
}

.barra-superior {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 70px;
  
}

.menu-navegacion {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background-color: #111;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 20px;
  transition: right 0.3s ease;
  z-index: 1500;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 22px;
  justify-content: space-between;
  z-index: 2000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
  background-color: #ccb999;
  color: #421304;
  background-image: url("../imagenes/fotofondoo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 40px;
}

.logo img {
  height: 80px !important;   
  width: auto !important; 
  max-height: none !important;
  max-width: none !important;
  display: block;
}

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

.menu-toggle {
  display: none; 
}

.menu-navegacion ul {
  list-style: none;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-navegacion ul li {
  margin-bottom: 20px;
}

.menu-navegacion ul li a {
  color: #ccb999;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

.menu-navegacion ul li a:hover {
  text-decoration: underline;
}

.menu-toggle:checked + .menu-icon + 

main {
  flex: 1;
  padding: 20px;
  margin-top: 0;
  scroll-margin-top: 70px;
}

main p {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 1rem auto;
  padding: 0 1rem;
  line-height: 1.5;
}

.footer {
  font-size: 0.8rem;
  text-align: center;
  background-color: #421304;
  color: #ccb999;
  padding: 10px;
  margin-top: auto;
}
@media (min-width: 768px) {
  

  .logo img {
    height: 80px;
  }
}

.menu-toggle {
  display: none;
}

.menu-icon span {
  height: 4px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-navegacion ul {
  list-style: none;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
}

.menu-navegacion ul li {
  margin: 0.8rem 0;
}

.menu-navegacion ul li a {
  color: #ccb999;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}

.menu-navegacion ul li a:hover {
  text-decoration: underline;
}

.menu-toggle:checked + .menu-icon + .menu-navegacion {
  right: 0;
}
.menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 600px) {
  

  .logo {
    margin-bottom: 0.5rem;
  }

  .logo img {
    height: 70px;
    max-width: 100%;
    object-fit: contain;
  }

  .menu-icon {
    align-self: flex-end;
  }
  .footer {
    font-size: 0.75rem;
    padding: 8px;
  }
}
.fotoboceto {
  max-width: 600px;
  margin: 1rem auto;
  padding: 0 1rem;
  text-align: center;
}

.fotoboceto img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.menu-toggle:checked ~ .menu-navegacion ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cine-liberacion {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: rgba(255,255,255,0.9);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cine-liberacion h2 {
  color: #421304;
  margin-bottom: 1rem;
}


.tarjeta-horizontal:hover {
  transform: scale(1.01);
}

.tarjeta-horizontal img {
  width: 160px;
  height: auto;
  object-fit: cover;
}

.tarjeta-horizontal .contenido {
  padding: 1rem;
  flex: 1;
}

.tarjeta-horizontal h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: #421304;
}

.tarjeta-horizontal p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.tarjeta-horizontal a {
  color: #8b0000;
  font-weight: bold;
  text-decoration: underline;
}

@media (max-width: 600px) {
  

  .tarjeta-horizontal img {
    width: 100%;
    height: auto;
  }

  .tarjeta-horizontal .contenido {
    padding: 0.8rem;
  }

  .tarjeta-horizontal h3 {
    font-size: 1rem;
  }

  .tarjeta-horizontal p,
  .tarjeta-horizontal a {
    font-size: 0.9rem;
  }
}
.bloque-peliculas,
.bloque-cortos {
  margin-bottom: 3rem;
}

.bloque-cortos {
  border-top: 2px solid rgba(66, 19, 4, 0.2);
  padding-top: 2rem;
}

.bloque-peliculas h2,
.bloque-cortos h2 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: #421304;
}
.separador {
  border: none;
  border-top: 2px solid #421304;
  margin: 3rem auto;
  width: 80%;
}
.bloque-cine-liberacion {
  background-color: #f7f7f2;
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.accordion label {
  display: block;
  background-color: #ddd;
  padding: 1rem;
  margin-bottom: 5px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.accordion label:hover {
  background-color: #ccc;
}

.accordion .content {
  background-color: #fff;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.accordion input[type="checkbox"] {
  display: none;
}

.accordion input[type="checkbox"] ~ .content {
  display: none;
}

.accordion input[type="checkbox"]:checked ~ .content {
  display: block;
}
.bloque-cine-liberacion h2 {
  font-size: 1.5rem;
  color: #421304;
  margin-bottom: 1rem;
}

.bloque-cine-liberacion p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: left;
}

@media (max-width: 600px) {
  .bloque-cine-liberacion {
    padding: 1rem;
    border-left: 4px solid #8b0000;
  }

  .bloque-cine-liberacion h2 {
    font-size: 1.3rem;
  }

  .bloque-cine-liberacion p {
    font-size: 0.95rem;
  }
}

.lista-contexto {
  list-style: none;
  padding-left: 1rem;
  color: #333;
  background-color: rgba(255,255,255,0.6);
  border-left: 4px solid #421304;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 6px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

.lista-contexto li {
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 1.2rem;
}

.lista-contexto li::before {
  content: "📌";
  position: absolute;
  left: 0;
  top: 0;
}

.evento {
  margin-bottom: 1em;
}

.evento input[type="checkbox"] {
  display: none;
}

.evento-titulo {
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: #eee;
  padding: 0.5em 1em;
  border-radius: 6px;
  font-weight: 600;
  user-select: none;
  transition: background-color 0.3s ease;
}

.evento-titulo:hover {
  background-color: #ddd;
}

.fecha-tarjeta {
  font-weight: bold;
  margin-right: 1em;
  color: #333;
  min-width: 70px;
}

.evento-descripcion {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background-color: #f9f9f9;
  padding: 0 1.5em;
  border-left: 3px solid #555;
  margin-top: 0.2em;
  border-radius: 0 6px 6px 0;
  color: #444;
  line-height: 1.4;
}

.evento input[type="checkbox"]:checked ~ .evento-descripcion {
  max-height: 200px; 
  padding: 0.8em 1.5em;
}


@media (max-width: 600px) {
  .fecha-tarjeta {
    top: -12px;
    left: -8px;
    font-size: 0.8rem;
    padding: 3px 8px;
  }

  .evento-tarjeta p {
    font-size: 0.95rem;
  }
}
.hero {
  height: auto;
  padding: 70px 20px 60px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(66, 19, 4, 0.9)),
              url('../imagenes/fotofondoo.png') center/cover no-repeat;
  color: white;
  text-align: left;
}

.hero-texto {
  max-width: 600px;
  margin: auto;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.3rem;
  color: white;
}

.hero p {
  font-size: 0.9rem;
  margin-top: 0.3;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.boton-accion {
  background-color: #ccb999;
  color: #421304;
  padding: 0.8rem 1.5rem;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.boton-accion:hover {
  background-color: #e1cda0;
}

.relacion-conflicto {
  background: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem;
  border-left: 5px solid #8b0000;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  color: #421304;
}

.relacion-conflicto h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.relacion-conflicto ul {
  margin-top: 1rem;
  padding-left: 1rem;
}

.relacion-conflicto li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.2rem;
}

.relacion-conflicto li::before {
  content: "🎯";
  position: absolute;
  left: 0;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.evento-tarjeta,

#cine-liberacion {
  scroll-margin-top: 80px;
}
.contenedor-desplegable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, padding 0.6s ease;
}

.contenedor-desplegable.visible {
  max-height: 5000px;
  padding-top: 1rem;
}
.carrusel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 2rem auto;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.slides {
  display: flex;
  width: calc(100% * 5);
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: contain;
  display: block;
}

.nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: none;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 1rem;
}

.nav label {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  pointer-events: all;
  transition: background 0.3s;
}


.nav label:hover {
  background: rgba(0, 0, 0, 0.8);
}
#s1:checked ~ .nav1 { display: flex; }
#s2:checked ~ .nav2 { display: flex; }
#s3:checked ~ .nav3 { display: flex; }
#s4:checked ~ .nav4 { display: flex; }
#s5:checked ~ .nav5 { display: flex; }

#s1:checked ~ .slides { transform: translateX(0%); }
#s2:checked ~ .slides { transform: translateX(-100vw); }
#s3:checked ~ .slides { transform: translateX(-200vw); }
#s4:checked ~ .slides { transform: translateX(-300vw); }
#s5:checked ~ .slides { transform: translateX(-400vw); }

@media (max-width: 600px) {
  .carrusel {
    height: 250px;
  }

  .slide img {
    max-height: 300px;
    object-fit: contain;
  }

  .nav {
    display: flex !important;
    top: 45%;
  }

  .nav label {
    font-size: 1.2rem;
    padding: 0.2rem 0.5rem;
  } 

   .dia:hover {
  background: #a00000;
  }

  .evento-info {
  position: absolute;
  bottom: -160px;
  background: white;
  color: #421304;
  font-size: 0.9rem;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  width: 200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  }

  .dia:hover .evento-info {
  opacity: 1;
  visibility: visible;
  }

  }
  
  @media (max-width: 600px) {
    .proximos-eventos {
      padding: 1rem;
      margin-bottom: 2rem;
    }
    .dia {
      width: 60px;
      height: 60px;
      font-size: 1rem;
    }
    .evento-info {
      width: 180px;
      font-size: 0.75rem;
    }

  
  }
.testimonios-css {
  max-width: 700px;
  margin: 3rem auto;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
}

.testimonios-css input[type="radio"] {
  display: none;
}

.contenedor-testimonios-css {
  position: relative;
  height: 220px;
}

.testimonio-css {
  position: absolute;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 1rem;
  background: #fff;
  border-left: 4px solid #8b0000;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  box-sizing: border-box;
}

#t1:checked ~ .contenedor-testimonios-css .t1,
#t2:checked ~ .contenedor-testimonios-css .t2,
#t3:checked ~ .contenedor-testimonios-css .t3 {
  opacity: 1;
  transform: scale(1);
  position: relative;
}

.testimonio-css span {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #421304;
}

.flechas-testimonios {
  position: relative;
  height: 60px;
  margin-top: 1rem;
}
.flecha {
  width: 40px;
  height: 40px;
  background-color: #8b0000;
  color: white;
  font-size: 1.3rem;
  border-radius: 50%;
  display: none; 
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.flecha:first-of-type,
.flecha:nth-of-type(3),
.flecha:nth-of-type(5) {
  left: 10px;
}
.flecha:nth-of-type(2),
.flecha:nth-of-type(4),
.flecha:last-of-type {
  right: 10px;
}

#t1:checked ~ .flechas-testimonios .flecha[data-show="t1"],
#t2:checked ~ .flechas-testimonios .flecha[data-show="t2"],
#t3:checked ~ .flechas-testimonios .flecha[data-show="t3"] {
  display: flex;
}

.flecha:hover {
  background-color: #a00000;
}

.contacto {
  max-width: 600px;
  margin: 3rem auto;
  padding: 1.5rem;
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  text-align: center;
}

.contacto h2 {
  color: #421304;
  margin-bottom: 1rem;
}

.contacto input[type="email"] {
  padding: 0.5rem;
  width: 70%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contacto button {
  background-color: #8b0000;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contacto button:hover {
  background-color: #a00000;
}
.boton-accion {
  display: inline-block;
  background-color: #8b0000;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}
.boton-accion:hover {
  background-color: #a00000;
}
.proximos-eventos {
  max-width: 800px;
  margin: 2rem auto;
  background: rgba(255,255,255,0.95);
  padding: 2rem 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  overflow: hidden;
}

.proximos-eventos h2 {
  color: #421304;
  margin-bottom: 1rem;
  text-align: center;
}

.calendario {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.dia {
  background: #8b0000;
  color: rgb(237, 237, 237);
  width: 80px;
  height: 80px;
  border-radius: 8px;
  position: relative;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.dia:hover {
  background: #a00000;
}

.evento-info {
  position: absolute;
  top: 100%; 
  margin-top: 0.5rem;
  background: white;
  color: #421304;
  font-size: 0.9rem;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  width: 200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.dia:hover .evento-info {
  opacity: 1;
  visibility: visible;
}
.accordion input[type="checkbox"] {
  display: none;
}

.accordion label {
  display: block;
  background-color: #421304;
  color: white;
  padding: 12px 20px;
  margin-bottom: 5px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
  user-select: none;
  transition: background-color 0.3s ease;
}

.accordion label:hover {
  background-color: #ccb999;
}

.accordion .content {
  max-height: 0;
  overflow: hidden;
  background-color: #e0f2f1;
  padding: 0 20px;
  border-radius: 0 0 4px 4px;
  transition: max-height 0.5s ease, padding 0.3s ease;
  color: #ccb999;
  line-height: 1.5;
}

.accordion input[type="checkbox"]:checked + label + .content {
  max-height: 300px; 
  padding: 15px 20px;
}
.accordion input[type="checkbox"] {
  display: none;
}

.accordion label {
  display: block;
  padding: 10px 15px;
  background-color: #421304;
  color: #fff;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  border-radius: 5px;
  margin: 5px 0;
  user-select: none;
  transition: background-color 0.3s;
}

.accordion label::after {
  content: "▶";
  position: absolute;
  right: 15px;
  transition: transform 0.3s ease;
}

.accordion input[type="checkbox"]:checked + label::after {
  transform: rotate(90deg);
}

.accordion .content {
  max-height: 0;
  overflow: hidden;
  background-color: #f5f5f5;
  color: #ccb999;
  padding: 0 15px;
  border-radius: 0 0 5px 5px;
  transition: max-height 0.35s ease;
  font-weight: normal;
}

.accordion input[type="checkbox"]:checked + label + .content {
  max-height: 300px; 
  padding: 10px 15px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.barra-superior .logo img {
  height: 40px;
}

.menu-navegacion ul {
  list-style: none;
  display: flex;
  margin-left: auto;
  gap: 1rem;
}

.menu-navegacion ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  transition: background-color 0.3s ease;
  border-radius: 4px;
}

.menu-navegacion ul li a:hover,
.menu-navegacion ul li a.activo {
  background-color: #421304;
  color: white;
}

.contenedor-foro {
  max-width: 900px;
  margin: 2rem auto 4rem;
  background: white;
  padding: 2rem 2.5rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgb(0 0 0 / 0.1);
}

h1 {
  margin-bottom: 1rem;
  color: #421304;
  text-align: center;
  font-weight: 700;
  font-size: 2.2rem;
}

h2 {
  margin-bottom: 1rem;
  color: #421304;
  border-bottom: 2px solid #421304;
  padding-bottom: 0.4rem;
}

.temas-foro ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 2rem;
  color: #421304;
  font-size: 1.1rem;
  line-height: 1.4;
}

.formulario-foro label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
  color: #ccb999;
  margin-top: 1rem;
}

.formulario-foro input[type="text"],
.formulario-foro input[type="email"],
.formulario-foro textarea {
  width: 100%;
  padding: 0.6rem;
  border-radius: 6px;
  border: 1.5px solid #ccb999;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.formulario-foro input[type="text"]:focus,
.formulario-foro input[type="email"]:focus,
.formulario-foro textarea:focus {
  border-color: #421304;
  outline: none;
}

.formulario-foro button {
  margin-top: 1.5rem;
  padding: 0.7rem 2rem;
  border: none;
  background-color: #421304;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.formulario-foro button:hover {
  background-color: #421304;
}

.redes-foro ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 2rem;
}

.redes-foro ul li a {
  color: #421304;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.redes-foro ul li a:hover {
  color: #421304;
}

.footer {
  text-align: center;
  padding: 1rem 0;
  background-color: #1a1a1a;
  color: white;
  font-size: 0.9rem;
  margin-top: auto;
}
@media (max-width: 600px) {
  .barra-superior {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .menu-navegacion {
    position: static;
    background-color: #1a1a1a;
    width: 100%;
    border-radius: 0;
    margin-top: 0.5rem;
  }

  .menu-navegacion ul {
    flex-direction: column;
    gap: 0;
  }

  .menu-navegacion ul li {
    text-align: center;
  }

  .boton-accion {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    margin: 1rem 0;
  }

  .formulario-foro input[type="text"],
  .formulario-foro input[type="email"],
  .formulario-foro textarea {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .formulario-foro button {
    width: 100%;
    font-size: 1rem;
    padding: 1rem;
  }

  .grupo-tarjetas {
    flex-direction: column;
  }

  .tarjeta-horizontal {
    flex-direction: column;
    width: 100%;
  }

  .tarjeta-horizontal img {
    width: 100%;
    height: auto;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .testimonios-css {
    padding: 1rem;
  }

  .footer {
    font-size: 0.8rem;
    padding: 1rem;
  }
}
.proximos-eventos .boton-accion {
  display: inline-block;
  margin: 2rem auto 0;
  text-align: center;
}
.proximos-eventos {
  text-align: center;
}
.slides-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.slides-scroll .slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
}

.slides-scroll img {
  width: 100%;
  height: auto;
  display: block;
}
.ultimas-noticias {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  background: rgba(255,255,255,0.9);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.ultimas-noticias h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #421304;
}

.noticia {
  margin-bottom: 1rem;
}

.noticia input[type="checkbox"] {
  display: none;
}

.noticia label {
  display: block;
  background: #421304;
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.noticia label:hover {
  background-color: #8b0000;
}

.noticia .leer-mas {
  float: right;
  font-weight: normal;
  font-size: 0.9rem;
  color: #ccb999;
}

.noticia .contenido {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #f5f5f5;
  color: #421304;
  padding: 0 1rem;
  border-radius: 0 0 6px 6px;
}

.noticia input[type="checkbox"]:checked + label + .contenido {
  max-height: 400px;
  padding: 1rem;
}


.debate-simulado {
  max-width: 800px;
  margin: 3rem auto;
  padding: 1.5rem;
  background: #cc9a99;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.titulo-principal-debate {
  text-align: center;
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.debate-simulado h3 {
  text-align: center;
  color: #421304;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.mensaje {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 10px;
  max-width: 80%;
  line-height: 1.4;
  position: relative;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.usuario1 {
  background-color: #f1d3a0;
  color: #421304;
  margin-left: auto;
  border-top-right-radius: 0;
}
.usuario2 {
  background-color: #e0f2f1;
  color: #421304;
  margin-right: auto;
  border-top-left-radius: 0;
}
.usuario3 {
  background-color: #fef3c7;
  color: #421304;
  margin-left: auto;
  border-top-right-radius: 0;
}
.usuario4 {
  background-color: #f3e8ff;
  color: #421304;
  margin-right: auto;
  border-top-left-radius: 0;
}
.usuario5 {
  background-color: #f0f9ff;
  color: #421304;
  margin-left: auto;
  border-top-right-radius: 0;
}
.usuario-moderador {
  background-color: #fff5f0;
  color: #8b0000;
  border-left: 4px solid #8b0000;
  margin: 1.5rem 0;
  border-radius: 10px;
  max-width: 100%;
  padding: 1rem;
  animation: fadeInUp 0.6s ease forwards;
}

.separador-tiempo {
  text-align: center;
  font-size: 0.85rem;
  color: #8b0000;
  margin: 1rem auto;
  position: relative;
}
.separador-tiempo::before,
.separador-tiempo::after {
  content: "";
  display: inline-block;
  width: 40%;
  height: 1px;
  background-color: #ccc;
  vertical-align: middle;
  margin: 0 8px;
}

.reacciones {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.4rem;
}
.mencion {
  color: #8b0000;
  font-weight: bold;
}

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

.encuesta-interactiva {
  max-width: 600px;
  margin: 3rem auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  text-align: center;
}
.encuesta-interactiva h3 {
  color: #421304;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.opcion {
  display: block;
  background: #ccb999;
  color: #421304;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  margin: 0.6rem auto;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  max-width: 100%;
  position: relative;
}
.opcion:hover {
  background: #e1cda0;
}
.opcion input[type="radio"] {
  display: none;
}
.opcion:has(input[type="radio"]:checked) {
  background-color: #8b0000;
  color: white;
}
.confirmacion {
  display: none;
  margin-top: 1.5rem;
  font-weight: bold;
  color: #421304;
  animation: fadeInUp 0.5s ease;
}
form:has(input[type="radio"]:checked) .confirmacion {
  display: block;
}

.ver-resultados {
  display: inline-block;
  margin-top: 1rem;
  background: #8b0000;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}
.ver-resultados:hover {
  background: #a80000;
}
.toggle-resultados {
  display: none;
}
.resultados-simulados {
  display: none;
  margin-top: 2rem;
  animation: fadeInUp 0.8s ease;
}
.toggle-resultados:checked + .resultados-simulados,
form:has(.toggle-resultados:checked) ~ .resultados-simulados {
  display: block;
}
.barra {
  margin-bottom: 1rem;
}
.etiqueta {
  display: block;
  font-weight: bold;
  color: #421304;
  margin-bottom: 0.2rem;
}
.progreso {
  background: #ccb999;
  color: white;
  padding: 0.3rem;
  border-radius: 6px;
  width: 0;
  max-width: 100%;
  transition: width 0.6s ease;
  text-align: right;
  font-weight: bold;
}

.cita-cine {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1.5rem;
  font-style: italic;
  color: #421304;
  background: rgba(255, 245, 230, 0.9);
  border-left: 5px solid #8b0000;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}
.cita-cine span {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: bold;
  color: #8b0000;
}

.nube-ideas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  max-width: 700px;
  margin: 2rem auto;
  padding: 1rem;
}
.nube-ideas .idea {
  background-color: #8b0000;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  animation: fadeInUp 0.5s ease;
}
.divisor-suave {
  border: none;
  border-top: 1px solid #ccc;
  margin: 40px 0 20px 0;
}

.espaciado-seccion {
  margin-top: 20px;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 22px;
  justify-content: space-between;
  z-index: 2000;
}

.menu-icon span {
  display: block;
  height: 4px;
  background-color: #fff;
  border-radius: 2px;
}

.menu-navegacion {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background-color: #111;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 20px;
  transition: right 0.3s ease;
  z-index: 1500;
}

.menu-navegacion ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.menu-navegacion li {
  margin-bottom: 20px;
}

.menu-navegacion a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
}

.menu-toggle:checked + .menu-icon + .menu-navegacion {
  right: 0;
}

@media screen and (min-width: 1024px) {
  .menu-icon {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .menu-navegacion {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    flex-direction: row;
    align-items: center;
    padding: 0;
  }

  .menu-navegacion ul {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  .menu-navegacion li {
    margin-bottom: 0;
  }

  .menu-navegacion a {
    color: #fff;
    font-size: 1em;
  }
}
.separador-entre-secciones {
  margin: 3rem 0 2rem;
  border: none;
  border-top: 2px solid #ccc;
  width: 80%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.linea-tiempo-diario {
  max-width: 800px;
  margin: 3rem auto;
  padding: 1rem;
  background-color: #fafafa;
  border-left: 5px solid #8b0000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.linea-tiempo-diario h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.recorte {
  border-bottom: 1px dashed #ccc;
  padding: 1rem 0;
}

.recorte input[type="checkbox"] {
  display: none;
}

.recorte label {
  display: block;
  cursor: pointer;
  font-weight: bold;
  color: #8b0000;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.recorte label:hover {
  color: #b30000;
}

.recorte .fecha {
  font-family: monospace;
  background-color: #8b0000;
  color: white;
  padding: 0.2rem 0.6rem;
  margin-right: 0.5rem;
  border-radius: 3px;
  font-size: 0.9rem;
}

.contenido-recorte {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding-left: 1.5rem;
  color: #333;
  font-size: 0.95rem;
}

.recorte input[type="checkbox"]:checked ~ .contenido-recorte {
  max-height: 200px;
  padding-top: 0.5rem;
}



.cine-consciente {
  background-color:rgba(204, 185, 153, 0.7); 
  color: #f2f2f2;
  padding: 5rem 2rem;
  scroll-margin-top: 100px; 
  animation: fadeInUp 1s ease-in;
}

.contenedor-cine {
  max-width: 700px;
  margin: auto;
}

.titulo-cine {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 900;
  color: #ffff;
  animation: slideInLeft 1s ease;
}

.subtitulo-cine {
  font-size: 1.5rem;
  font-weight: 600;
  color: #421304;
  margin-bottom: 2rem;
  animation: slideInRight 1s ease;
}

.intro-cine {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  border-left: 4px solid #8b0000;
  padding-left: 1rem;
}

.cine-consciente p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.destacado {
  background-color: #8b0000;
  padding: 0.1rem 0.3rem;
  font-weight: bold;
  color: #fff;
}

.frase-cine {
  background-color: #421304;
  border-left: 6px solid #514a3d;
  padding: 1rem 1.5rem;
  font-style: italic;
  margin: 2rem 0;
  font-size: 1.1rem;
  color: #dddddd;
}

.cierre-cine {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000000;
  text-align: center;
  margin-top: 2rem;
}


@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

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


.contacto {
  background-color: #0b0b0b;
  color: #f2f2f2;
  padding: 4rem 2rem;
  text-align: center;
}

.contenedor-contacto {
  max-width: 600px;
  margin: auto;
}

.titulo-contacto {
  font-size: 2.5rem;
  color: #e63946;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contacto p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.opinion-cine {
  background-color: rgba(66, 19, 4, 0.8);
  color: #f2f2f2;
  padding: 3rem 2rem;
  border-radius: 10px;
  margin: 3rem auto;
  max-width: 700px;
  text-align: center;
  animation: fadeInUp 1s ease-in;
}

.opinion-cine h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.opinion-cine p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.opinion-cine textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
  resize: vertical;
  margin-bottom: 1rem;
}

.opinion-cine button {
  background-color: #ccb999;
  color: #421304;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.opinion-cine button:hover {
  background-color: #b89d7a;
}

.confirmacion-opinion {
  margin-top: 1rem;
  color: #ccb999;
  font-weight: bold;
}
.imagen-cine-opinion {
  width: 90%;
  max-width: 350px;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-in;
}

.contacto-pagina {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

.contacto-intro h1 {
  font-size: 2.5rem;
  color: #421304;
  text-align: center;
  margin-bottom: 1rem;
}

.contacto-intro p {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.formulario-contacto form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.formulario-contacto input,
.formulario-contacto textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.info-extra-contacto {
  margin-top: 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.info-extra-contacto h2, .info-extra-contacto h3 {
  color: #421304;
  margin-top: 1.5rem;
}

.mapa-contacto iframe {
  margin-top: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}
