@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  border-radius: 0;
}

/*header*/
.header {
    height: 70px;
    background-color: #F7EEE6;
    position: fixed;        
    top: 0;                 
    left: 0;
    width: 100%;
    z-index: 10000;         
}

.menu {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.menu_hamburguesa {
    display: none;
}

.menu_hamburguesa:checked ~ .ul_links {
    height: calc(100vh - 70px);
}

.logo {
    width: auto;
    height: 35px;
}

.list_icon {
    color: #201E1F;
    cursor: pointer;
}

.label_hamburguesa svg {
  color: #E95623; 
  fill: #201E1F;  
  transition: color 0.3s ease;
}

.ul_links {
    list-style: none;
    width: 100%;
    background-color: #E95623;
    position: absolute;
    top: 70px;
    left: 0;
    height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    transition: all .3s;
    z-index: 9999;
}

.ul_links li {
    width: 70%;
    text-align: center;
    border-bottom: 3px solid #201E1F; 
    padding: 16px 0;                                  
}

.ul_links li:last-child {
    border-bottom: none;
}

.ul_links a {
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Archivo', sans-serif ;
    font-style: normal;
    font-size: 34px;
    color: #201E1F;
    font-weight: 900;
    display: block;
    width: 100%;
}

.ul_links a:hover {
    color: #fff;
}

.link {
    font-size: 2rem;
    color: #201E1F;
    font-weight: bold;
}

.icono_cerrar {
    display: none;
}

.menu_hamburguesa:checked ~ .label_hamburguesa .icono_menu {
    display: none;
}

.menu_hamburguesa:checked ~ .label_hamburguesa .icono_cerrar {
    display: block;
}

main {
    margin-top: 70px;       
}

body {
    background-color: #201E1F;
}

/*slider*/
#slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 290px;           
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none; 
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;        
  border: none;            
  font-size: 2rem;         
  color: #DAFF02;          
  cursor: pointer;
  z-index: 10;
  padding: 0;              
  line-height: 1;
}

.prev { left: 16px; }
.next { right: 24px; }

.prev:hover, .next:hover {
  color: #000;             
}

.dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: none;
  cursor: pointer;
  padding: 0;
}

.dot.active {
  background: #DAFF02;
}

.etiqueta {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #685BC7;
  color: #F7EEE6;
  font-family: 'Archivo', sans-serif ;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slide-texto {
  position: absolute;
  bottom: 32px;
  left: 32px;
  color: #F7EEE6;
  max-width: 80%;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.slide-texto h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.slide-texto h3 a {
  font-family: 'Archivo', sans-serif ;
  font-weight: 900;
  color: #E95623;
  text-transform: uppercase;
  text-decoration: none;
}

.slide-texto h3 a:hover {
  color: #F7EEE6;
}

.slide-texto p {
  font-family: 'Inter', sans-serif;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.3;
}

.slide img,
.slide::after,
.slide-texto,
.etiqueta {
  position: absolute;
}

.slide img {
  position: relative;
  z-index: 0;
}

.etiqueta, .slide-texto {
  z-index: 2;
}

/*seccion festival*/
#festival {
    text-align: left;
    margin: 32px;
}

#festival h1 {
    text-transform: uppercase;
    font-family: 'Archivo', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 34px;
    color: #DAFF02;
}

#festival h1 span {
  display: block;
}

#festival h2 {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    color: #E95623;
    margin-top: 8px;
}

#festival p {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    color: #F7EEE6;
    margin-top: 12px;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
  z-index: 1;
  pointer-events: none;
}

/*seccion botones*/
#botones ul {
  list-style: none;
  padding: 32px;
  margin: 0;
  display: flex;
  flex-direction: column;   
  align-items: center;
  gap: 16px;
}

#botones li {
  width: 100%;
  max-width: 300px;          
}

#botones a {
  display: block;
  background-color: #685BC7;
  color: white;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  padding: 12px 0;
  width: 100%;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

#botones a:hover {
  background-color: #7a6ce0;
  transform: scale(1.05);
}

/*seccion info*/
#info {
    text-align: left;
    margin: 32px;
}
#info h2 {
    text-transform: uppercase;
    font-family: 'Archivo', sans-serif ;
    font-style: normal;
    font-weight: 900;
    font-size: 34px;
    color: #DAFF02;
}

#info h3 {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: #E95623;
    margin-top: 8px;
}

#info p {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    color: #F7EEE6;
    margin-top: 12px;
}

/*seccion peliculas*/
#peliculas h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
  margin-left: 32px;
  color: #F7EEE6; 
}

.galeria {
  display: flex;
  gap: 16px;
  overflow-x: auto;         
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  margin-left: 16px;
  margin-right: 16px;     
  -webkit-overflow-scrolling: touch; 
}

.galeria::-webkit-scrollbar {
  height: 6px;
}

.galeria::-webkit-scrollbar-thumb {
  background: #F7EEE6;
  border-radius: 3px;
}

.galeria figure {
  flex: 0 0 auto;           
  width: 130px;
  scroll-snap-align: start;
  text-align: center;
}

.galeria img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.galeria img:hover {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.galeria figcaption {
  margin-top: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #F7EEE6;
}


/*footer*/
#footer {
    background-color: #000;  
    text-align: center;
    padding: 20px 0;
}

#footer img {
    display: block;
    margin: 0 auto;
    max-width: 120px; 
}

.footer-contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

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

.iconos img {
    width: 20px;
    height: 20px;
    transition: filter 0.3s ease;
}

.footer-derechos p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin: 5px 0;
    font-size: 0.9rem;
    color: #F7EEE6;
}

/*responsive de header, slider, seccion festival, botones, info, peliculas y footer*/
@media (min-width: 768px) {

/* header */
  .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
  }

  .label_hamburguesa {
    display: none; 
  }

   .ul_links {
    display: flex;
    align-items: center;       
    justify-content: center;   
    flex-direction: row;
    position: static;
    background: none;
    height: auto;
    gap: 2rem;
    width: auto;
  }

  .ul_links li {
    border: none;
    padding: 0;
    width: auto;
  }

  .ul_links a {
    font-size: 1rem;
    color: #201E1F;
    font-weight: 700;
  }

  .ul_links a:hover {
    color: #E95623;
  }

  .logo {
    content: url("../imagenes/contraplano_negro.svg");
    height: 40px; 
  }


  /*slider*/
  .slider-container {
    height: 500px;
  }


  .prev, .next {
    font-size: 3rem;
  }

  /*seccion festival*/
  #festival {
    text-align: left;
    margin: 80px auto;
    max-width: 1000px;
  }

  #festival h1 {
    font-size: 64px;
    margin-left: 32px;
  }

  #festival h1 span {
    display: inline-block;   
    margin-right: 8px;       
  }

  #festival h2 {
    font-size: 54px;
    margin-left: 32px;
  }

  #festival p {
    font-size: 40px;
    margin-left: 32px;
  }

  /*botones*/
  #botones ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px;
    justify-items: center;
  }

  #botones li {
    width: 100%;
    max-width: none;
  }

  /*info*/
  #info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 40px;
    margin: 60px;
    justify-items: center;
  }

  #info h2 {
    grid-column: 1 / -1;
    font-size: 60px;
  }

  #info h3 {
    font-size: 40px;
  }

  #info p {
    font-size: 18px;
    line-height: 1.6;
  }

  
/*peliculas*/
.galeria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 24px;
    overflow: visible;       
    justify-items: center;
    align-items: start;
  }

  .galeria figure {
    width: 200px;
  }

  .galeria img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(100%);
  }

  .galeria figcaption {
    font-size: 14px;
  }

/*footer*/
  .footer-contenedor {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1000px;
    margin: 20px auto;
  }

  .footer-derechos {
    text-align: right;
  }
}

@media (min-width: 1080px) {
  /*botones*/
  #botones ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px;
    justify-items: center;
  }

  #botones li {
    width: 100%;
    max-width: none;
  }
}

/*pagina programacion*/
.titulo_pagina {
    margin: 32px 32px 0 32px;
    padding: 32px 0 0 0;
}
.titulo_pagina h1 {
    font-family: 'Archivo', sans-serif ;
    font-weight: 700;
    font-style: bold;
    font-size: 34px;
    color: #DAFF02;
    text-transform: uppercase;
}

.titulo_pagina p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    color: #F7EEE6;
    margin-top: 8px;
}

.dia {
  background-color: #F7EEE6; 
  padding: 20px; 
  margin: 32px;
}

.titulo {
    border-bottom: 3px solid #E95623; 
    padding-bottom: 10px; 
    margin-bottom: 15px;
}

.titulo h2 {
    font-family: 'Archivo', sans-serif ;
    font-weight: 600;
    font-style: bold;
    font-size: 24px;
    color: #E95623;
    text-transform: uppercase;   
}

.titulo p {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    color: #201E1F;
    margin-top: 4px;
}

.dia h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-style: bold;
    font-size: 16px;
    color: #685BC7;
}

.listas {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.lista_1, .lista_2 {
    flex: 1;
    min-width: 45%;
}

.lista_1 img {
    width: 100%;
    height: auto;
    margin: 10px 0;
    filter: grayscale(100%);
}

.lista_1 p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: bold;
    font-size: 10px;
    color: #201E1F;
}

.lista_2 p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 13px;
    color: #201E1F;
}
.evento {
    margin: 0 10px;
}

.lista_2 .evento:not(:last-child) {
  border-bottom: 3px solid #E95623; 
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.proyeccion_2 {
    border-bottom: 3px solid #E95623; 
    padding-bottom: 10px; 
    margin-bottom: 15px;
}

.proyeccion_2 img {
    width: 100%;
    height: auto;
    margin: 10px 0;
    filter: grayscale(100%);
}

.proyeccion_2 p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: bold;
    font-size: 10px;
    color: #201E1F;
}

.evento p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 13px;
    color: #201E1F;
}

h3 a {
  color: #685BC7; 
  text-decoration: none;
}

h3 a:hover {
  color: #000; 
}

@media (min-width: 768px) {
  .programacion-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .titulo_pagina {
    grid-column: 1 / -1; 
    grid-row: 1;         
    text-align: left;  
    margin-bottom: 20px; 
  }

  .dia {
    grid-row: 2; 
  }
}

/*pagina - reproductor*/
.nombrepelicula {
  text-align: left;
  padding: 60px 32px 40px;
}

.nombrepelicula h1 {
  color: #DAFF02; 
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 10px;
}

.nombrepelicula h2 {
  color: #F7EEE6; 
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.nombrepelicula p {
  color: #F7EEE6;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.nombrepelicula p span:first-child {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  color: #F7EEE6; 
  margin-bottom: 10px;
}

.reproductor {
  position: relative;
  width: 100%;
  max-width: 900px; 
  margin: 0 auto;
  aspect-ratio: 16 / 9; 
}

.reproductor iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 768px) {
  .pagina-pelicula {
    display: flex;
    flex-direction: column; 
    align-items: center;
  }

  .nombrepelicula {
    order: 1; 
    width: 80%;
  }

  .nombrepelicula p {
    max-width: none;   
    width: 100%;       
    margin: 0;         
    text-align: left;
  }

  .reproductor {
    order: 2; 
    width: 70%;
    justify-content: center;
  }

  .reproductor iframe {
    width: 100%;
    height: 400px;
  }
}

/*pagina debates*/
.debate {
  background-color: #F7EEE6; 
  padding: 24px;
  margin: 32px 32px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: "Inter", sans-serif;
}

.titulo_pagina {
  text-decoration: none;
}

.usuario {
  display: flex;
  align-items: center; 
  gap: 10px; 
}

.usuario img {
  width: 40px;      
  height: 40px;     
  border-radius: 50%; 
  object-fit: cover;  
}

.usuario p {
  margin: 0;        
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #201E1F;
}

.articulo h2 {
  font-family: "Archivo", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.articulo h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #E95623; 
  margin-top: 8px;
}

.articulo h2 a {
  text-decoration: none;
  color: #E95623; 
  transition: color 0.2s ease;
}

.articulo h2 a:hover {
  color: #000;
}

.articulo p {
  color: #201E1F;
  line-height: 1.6;
}

.iconos-articulo {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  margin-top: 16px;
}

.grupo-izquierda {
  display: flex;
  align-items: center;
  gap: 16px; 
}

.iconos-articulo a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #201E1F;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

.iconos-articulo a img {
  width: 20px;
  height: 20px;
  transition: filter 0.2s ease;
}

.iconos-articulo a:hover {
  transform: scale(1.05);
  color: #E95623;
}

@media (min-width: 768px) {
  .debates-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .titulo_pagina {
    grid-column: 1 / -1; 
    grid-row: 1;         
    text-align: left;  
    margin-bottom: 20px; 
  }
}

@media (min-width: 1080px) {
  .debates-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .titulo_pagina {
    grid-column: 1 / -1; 
    grid-row: 1;         
    text-align: left;  
    margin-bottom: 20px; 
  }
}

/*pagina sesion*/
.sesion {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    min-height: 100vh;
    background-color: #201E1F;
}

.sesion-logo img {
    width: 250px;
    margin: 100px;
}

.formulario {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
}

.formulario label {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

.formulario input[type="email"],
.formulario input[type="password"] {
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #F7EEE6;
    background-color: #F7EEE6;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.checkbox {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.checkbox label {
    font-size: 0.9rem;
    color: #F7EEE6;
    margin-bottom: 10px;
}

button[type="submit"] {
    background-color: #685BC7;
    border: none;
    padding: 12px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-style: bold;
    font-size: 1rem;
    font-weight: 700;
    color: #F7EEE6;
    cursor: pointer;
    margin-bottom: 15px;
    text-decoration: none;
}

button[type="submit"]:hover {
    background-color: #000;
}

.formulario p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    color: #F7EEE6;
}

.formulario a {
    color: #F7EEE6;
    font-weight: 800;
    text-decoration: none;
}

.formulario a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .sesion {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 80px;
        padding: 120px 60px;
    }

    .sesion-logo img {
        width: 200px;
        margin-bottom: 0;
    }

    .formulario {
        max-width: 500px;
    }
}

/*pagina registro*/
.formulario input[type="text"],
.formulario input[type="password"],
.formulario input[type="email"] {
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #F7EEE6;
    background-color: #F7EEE6;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

#confirmar-password {
    margin-bottom: 25px;
}

.form-error {
  display: none;
  background-color: #E95623;
  color: #F7EEE6;
  padding: 10px 14px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.form-error.activo {
  display: block;
  animation: aparecer 0.3s ease-out;
}

@keyframes aparecer {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/*pagina perfil*/
main.perfil {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    background: linear-gradient(
        to bottom,
        #201E1F 0%, 
        #201E1F 12%,  
        #F7EEE6 12%, 
        #F7EEE6 100%  
    );
    padding-top: 50px;
}

.fotoperfil {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
}

.fotoperfil img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.info-usuario {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
}

.info-usuario h1 {
    font-family: 'Archivo', sans-serif ;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 5px;
    color:#E95623;
}

.info-usuario p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    opacity: 0.8;
    color: #201E1F;
}

.actividad-contenedor {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0; 
    margin-bottom: 30px;
    padding: 20px 0;
}

.actividad {
    text-align: center;
    position: relative;
}

.actividad:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 3px;
    background-color: #E95623;
}

.actividad span:first-child {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #E95623;
    margin-bottom: 5px;
}

.actividad span:last-child {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #201E1F;
    word-wrap: break-word;
    max-width: 90px; 
    margin: 0 auto;
    line-height: 1.2;
}

.historial {
    text-align: center;
    margin: 32px;
}

.historial p {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #201E1F;
}

.peli-historial {
    display: flex;
    justify-content: center; 
    gap: 1.5rem; 
}

.peli-historial img {
    width: 100%;
    max-width: 100px; 
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    filter: grayscale(100%);
}

.peli-historial img:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.favoritos {
    text-align: center; 
    margin: 32px;
}

.favoritos p {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #201E1F;
}

.peli-favoritas {
    display: flex;
    justify-content: center; 
    gap: 1.5rem; 
}

.peli-favoritas img {
    width: 100%;
    max-width: 100px; 
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    filter: grayscale(100%);
}

.peli-favoritas img:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.cerrarsesion {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 30px;
}

#cerrarSesion {
    background-color: #685BC7; 
    color: #F7EEE6;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    border: none;
    width: 180px;   
    height: 60px;  
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#cerrarSesion:hover {
    background-color: #000; 
    transform: scale(1.05);
}

@media (min-width: 768px) {
  .peliculas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 30px;
  }
}

/*pagina contraplano*/
.contraplano {
  background-color: #201E1F;
  margin-top: 100px;
  margin-left: 32px; 
  margin-right: 32px;
  font-family: 'Inter', sans-serif;
  color: #F7EEE6;
}

.contraplano h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700; 
  font-style: normal;
  text-transform: uppercase;
  color: #DAFF02; 
  margin-bottom: 24px;
  text-align: left;
}

.video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 32px;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.info-nosotros {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-texto h2 {
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  margin-bottom: 12px;
  color: #F7EEE6;
}

.info-texto span {
  font-family: 'Inter', sans-serif;
  display: inline;
  font-size: 14px; 
  line-height: 1.6;
}

.negrita {
  font-weight: 800 ;
  font-style: italic;
  margin-right: 2px; 
}

.normal {
  font-weight: 400;
}

.equipo-contenedor h2 {
  margin-bottom: 15px;
}

.info-equipo {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.equipo-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  margin-bottom: 16px;
}

.equipo-img img {
  width: 100%;
  aspect-ratio: 1/1; 
  object-fit: cover;
}

.equipo-img p {
  background-color: #DAFF02;
  font-size: 12px;
  color: #201E1F;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 8px 0;
  font-weight: normal;
}

@media (min-width: 768px) {
  .info-nosotros {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 30px;
  }

  .equipo-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  margin: 20px;
}
}

/*pagina workshops*/
.workshops {
  background-color: #201E1F; 
  padding: 32px 16px; 
  font-family: 'Inter', sans-serif;
}

.workshops h1 {
  color: #DAFF02; 
  text-align: left;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.charla {
  background-color: #F7EEE6; 
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.charla h2 {
  color: #E95623; 
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.charla img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 8px;
  filter: grayscale(100%);
}

.charla h3 {
  font-weight: bold;
  margin-bottom: 4px;
  color: #201E1F;
}

.charla p {
  font-size: 14px;
  line-height: 1.6;
  color: #201E1F;
  margin-bottom: 12px;
}

.charla button {
  background-color: #685BC7; 
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  text-align: left;
  width: auto; 
  display: inline-block; 
  margin-left: 0;
  margin-right: 285px; 
}

.charla button a {
  color: #F7EEE6;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

@media (min-width: 768px) {
  .workshops {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .titulo_pagina {
    grid-column: 1 / -1; 
    grid-row: 1;         
    text-align: left;  
    margin-bottom: 20px; 
  }
}

/*pagina explorar*/
.explorar {
  background-color: #201E1F; 
  padding: 32px 16px;
  font-family: 'Inter', sans-serif;
  color: #F7EEE6;
}

.explorar h1 {
  color: #DAFF02; 
  text-align: left;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.peli-grande {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent; 
  padding: 16px;
  margin-bottom: 32px;
  width: 90%; 
}

.peli-grande img {
  width: 70%;
  height: auto;
  margin-bottom: 12px;
  object-fit: cover;
  filter: grayscale(100%);
}

.peli-grande p {
  text-align: center;
  font-weight: bold;
  margin-bottom: 12px;
  color: #F7EEE6; 
}

.peli-grande button {
  background-color: #685BC7;
  border: none;
  padding: 10px 60px;
  cursor: pointer;
  display: inline-block;
}

.peli-grande button a {
  color: #F7EEE6;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

.grilla-contenedor {
  margin-bottom: 32px;
}

.grilla-titulo h2 {
  color: #F7EEE6; 
  font-weight: 700;
  margin-bottom: 28px;
  text-align: left; 
}

.grilla {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  grid-auto-rows: 150px; 
  gap: 8px;
  margin-bottom: 16px;
}

.grilla img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.grilla-contenedor button {
  background-color: #685BC7;
  border: none;
  padding: 10px 60px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

.grilla-contenedor button a {
  color: #F7EEE6;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

@media (min-width: 768px) {
  .explorar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px;
    justify-items: center;
  }
}

@media (min-width: 1080px) {
  .grilla {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    width: 100%;
  }

  .peli-grande img {
  width: 65%;
  height: auto;
  margin-bottom: 12px;
  object-fit: cover;
  filter: grayscale(100%);
}
}

/*pagina crear debate*/
.creardebate {
  background-color: #201E1F; 
  padding: 32px 16px;
  font-family: 'Inter', sans-serif;
  color: #F7EEE6;
}

.crear-articulo h1 {
  color: #DAFF02; 
  text-align: left;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.formulario {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
}

.formulario label {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

textarea#contenido {
  background-color: #F7EEE6;
  color: #201E1F;
  border: 1px solid #ccc;
  padding: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  width: 95%;
  resize: vertical;
}

.form-articulo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
}

.boton-debate button {
  background-color: #685BC7; 
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  text-align: left;
  width: auto; 
  display: inline-block; 
  margin-left: 32px;
  margin-right: 285px; 
}

.boton-debate button a {
  color: #F7EEE6;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

@media (min-width: 768px) {
  .formulario {
    display: flex;
    flex-direction: column;
    width: 150%;
    max-width: 500px;
}
}