* {
  margin: 0;
  padding: 0;
  text-align: left;
  list-style: none;
  box-sizing:content-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #262626;
  }
  
  img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 1em;
}

/*BOTON*/
.boton-normal {
  display: inline-block;
  border: 3px solid #E7431D;
  border-radius: 20px 0 20px 0;
  padding: 0.7em 2em;
  background: transparent;
  color: #E7431D;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  margin-top: 3em;
  margin-bottom: 3em;
}

/*TEXTO*/
p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
}

h1, h2 {
  color: #e63912;
  text-align: left;
  font-size: 2.5em;
 line-height: 1.2em;
}

h2 {
   font-size: 2rem;
  margin-bottom: 0.5rem;
}

h4 {
 font-weight: 100;
}

h5 {
 padding-bottom: 1em;
border-bottom-style: dotted;
color:#1c1c1c;
display: block;
font-size: 0.8em;
margin-block-end: 1.67em;
margin-block-start: 1.67em;
margin-inline-end: 0px;
margin-inline-start: 0px;
font-weight: bold;
unicode-bidi: isolate;
}

/*LINKS*/
a:link {
  color:#cc3310
  }
a:visited {
  color:#cc3310;
  }
a:hover {
  color:#E7431D;
  }
a {
 text-decoration: none;
}




/*MENU*/
  #logo {
  width: 100%;
  }
  
  header {
      background-color: #E7431D;
      color: #fbf7e6;
      width: 100%;
  }
  
.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.menu ul li a {
  text-decoration: none;
  color: #fbf7e6;
  font-weight: bold;
}

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger-menu .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fbf7e6;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 995px) {
  .menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu .nav-links {
    display: none;
    width: 100%;
  }

  .menu .nav-links.active {
    display: block;
  }

  .menu ul {
    flex-direction: column;
    width: 100%;
  }

  .menu ul li {
    margin: 10px 0;
    text-align: center;
  }

  .hamburger-menu {
    display: block;
    align-self: flex-end;
    position: absolute;
    top: 20px;
    right: 20px;
  }
}
  body {
    background-color: #f9dfb4;
    color: #000;
    margin-top: 0;
  }

main {
 margin: 3em;
}








/*FORMULARIO*/
form input,
form select,
form textarea {
  flex: 1;
  padding: 0.8rem;
  background-color: #e63912;
  color: white;
  border: none;
  border-radius: 0.5rem;
}

form textarea {
  width: 100%;
  height: 100px;
  resize: none;
}

.formulario ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.actual {
  font-weight: bold;
  color:#E7431D;
}

.botonform {
  display: inline-block;
  border-radius: 20px 0 20px 0;
  padding: 0.7em 2em;
  background-color: #262626;
  color:#f9dfb4;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  margin-top: 3em;
  margin-bottom: 3em;
}

.form-enter {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}

.form-enter input,
.form-enter select,
.form-enter textarea {
  width: 80%;
  color:#f9dfb4;
  margin-bottom: 1em;
}

.form-enter-corto input,
.form-enter-corto select,
.form-enter-corto textarea {
  width: 30%;
  color:#f9dfb4;
  margin-bottom: 1em;
}





/*FOOTER*/
footer {
  background-color: #1c1c1c;
  color: #fbf7e6;
  text-align: center;
  padding: 2em;
}

footer p {
  margin-left: 2em;
  color: #fbf7e6;
}

footer ul {
  margin-left: 2em;
}

footer ul li {
  color: #fbf7e6;
}

.redes {
  display: flex;
  gap: 1em;
  align-items: center;

}






/*HOME*/
.index {
  margin: 0;
}

.comite {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
}

.comite .imagen-comite {
    width: 100%;
    margin-top: 1em;
}

.comite .imagen-comite img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 400px;
}

.comite h2 {
    font-size: 3em;
}

.comite-texto .ver-mas {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #e63912;
    border: 2px solid #e63912;
    text-decoration: none;
    border-radius: 20px 0 20px 0;
    margin-bottom: 3em;
}

@media (min-width: 900px) {
    .comite {
        flex-direction: row;
        justify-content: space-between;
    }

    .comite .imagen-comite,
    .comite-texto {
        width: 50%;
        margin-top: 0;
        margin-left: 1em
    }

    .comite-texto {
        text-align: left;
    }
}

.comite-member img {
  width: 200px;
}

.comite p {
  color:#f9dfb4;
  margin-bottom: 4em;
}

.comite-texto h5 {
 padding: 1em;
 border-bottom-style: dotted;
color:#f9dfb4;
}


.comite {
 background-image: url(../imagenes/comite.png);
 background-size: contain;
 background-repeat: no-repeat;
 background-position: left;
 padding: 1em;
}

@media (min-width: 600px) {
 .comite {
   background-size: cover;
   background-position: top;
   width: 100%;
   overflow: hidden;
 }
}

@media (max-width: 617px) {
 .comite {
   background-size: contain;
   background-position: left;
 }
}

.comite-member {
  margin-bottom: 2em;
}

.comite-member a {
  margin-bottom: 1em;
}

.comite h2 {
 margin-bottom: 2.5em;
 margin-top: 1.5em;
}

/*PELICULAS HOME SCROLL*/
.proyectos {
    padding: 2em;
}

.pieza {
    width: 200px;
    scroll-snap-align: start;
}

.pieza img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.galeria-scroll {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 1em;
        gap:1em;
}

.galeria-scroll::-webkit-scrollbar {
    height: 8px;
}

.galeria-scroll::-webkit-scrollbar-thumb {
    background-color: #E7431D;
    border-radius: 10px;
}

.galeria-scroll::-webkit-scrollbar-track {
    background-color: #f9dfb4;
}

/*FECHAS IMPORTANTES HOME*/
.fechas {
    background-color: #262626;
    padding: 2em;
    color: #fbf7e6;
}

.fechas h2 {
    margin-bottom: 1.5em;
}

.cajas-fechas {
  overflow: scroll;
  display: flex;
  gap: 20px;
}

.fecha {
    background-color: #f9dfb4;
    color: #e63912;
    padding: 1.5em 1em;
    border-radius: 20px 0 20px 0;
    text-align: center;
    flex: 1;
    min-width: 100px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.fecha p {
    font-size: 2.5em;
    font-weight: bold;
    margin: 0;
    line-height: 1;
    color: #e63912;
}

.fecha span {
    font-size: 1em;
    margin-top: 0.5em;
    color: #e63912;
    line-height: 1.3;
}







/*COMITENTE (HTML)*/
.comite-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.comite-member div img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 1rem;
}

.comite-text {
  text-align: left;
  max-width: 900px;
  margin-top: 1em;
}

.comite-text h3 {
  color: #d1302d;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.comite-text p:first-of-type {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.comite-text p {
  margin-bottom: 1rem;
}

/* redes */
.comite-text ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.logoig {
  width: 70px;
  height: auto;
}

.logolk {
  width: 70px;
  height: auto;
}

@media (min-width: 768px) {
  .comite-member {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }

  .comite-member img {
    margin-bottom: 0;
  }
}









/*TRAILERS*/
.video-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.trailer iframe {
  width: 100%;
}

.ficha {
  padding: 1rem;
  max-width: 700px;
}

.ficha h2 {
  color: #e33618;
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.ficha p {
  margin: 0.2rem 0;
  font-size: 0.95rem;
}

.ficha p:first-of-type {
  font-style: italic;
  color: #555;
}

.entrevista {
  max-width: 700px;
}

.entrevista h3 {
  margin-bottom: 0.5rem;
}

.entrevista iframe {
  width: 100%;
  height: 315px;
  margin-top: 1rem;
  border-radius: 6px;
}

.piezas {
  padding: 2rem 1rem;
  max-width: 1000px;
}

.piezas h5 {
  font-size: 1.1rem;
  border-bottom: 1px dotted #333;
  margin-bottom: 1rem;
}

.pieza {
  min-width: 200px;
  flex-shrink: 0;
  text-align: center;
}
.pieza img {
  width: 100%;
  border-radius: 4px;
}

.entrevista p {
  font-style: italic;
}








/*RECURSOS EDUCATIVOS*/
.educacion {
    margin-top: 3em;
}

.educacion h3,h4  {
 margin-bottom: 1em;
}

.educacion h3 {
 color:#e63912;
 margin-top: 0.5em;
}

.educacion h5{
 color:#555555;
 border-bottom: none;
 padding: 0;
}

.trailer {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.trailer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container {
    max-width: 800px;
    margin: 2em auto;
}

.entrevista h3 {
  margin-top: 2em;
  margin-bottom: -0.5em;
}
.entrevista p {
  margin-bottom: 1em;
}




/*VIDEO*/
.video-responsive-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 90%;
}

.video-responsive-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-scroll-container {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 1em;
    padding-bottom: 1em;
    scroll-snap-type: x mandatory;
}

.video-wrapper {
    flex: 0 0 auto;
    width: 350px;
    aspect-ratio: 16/9;
    position: relative;
    scroll-snap-align: start;
}

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


@media (max-width: 768px) {
    .video-wrapper {
        width: 250px;
    }
}






/*PODCAST*/
.podcast .boton-normal {
  margin-top: 1em;
  margin-bottom: 1em;
}

.podcast h2 {
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 0.3em;
}

.podcast h4 {
  color:#555555;
}

.podcast {
 display: flex;
 flex-direction: row-reverse;
align-items: flex-start;
justify-content: flex-end;
gap: 2em;
}

.podcast p {
 max-width: 950px;
}

@media (max-width: 930px) {
  .podcast {
    flex-direction: column;
  }
  #arriba {
    margin-top: 0;
  }
  iframe {
    margin-top: -3em;
    margin-bottom: 1em;
  }
  .podcast .boton-normal {
   margin-top: 0.3em;
  
  }
}

.podcast article {
 margin-top: 2em;
}

.podcast a {
   text-decoration: none;
}






/*FORO*/
.fondo-negro {
 background-color: #000;
 margin: 0;
 padding: 3em;
}

.fondo-negro h1 {
 color:#e63912;
}

.fondo-negro p {
 color:#fbf7e6;
}

.boton-sesion {
  display: inline-block;
  border: 3px solid #E7431D;
  border-radius: 20px 0 20px 0;
  padding: 0.7em 2em;
  background-color:#E7431D;
  font-weight: bold;
  text-align: center;
  margin-top: 3em;
  margin-bottom: 3em;
}

.boton-sesion a {
  color: #f9dfb4;
    text-decoration: none;
}

.comentario {
  max-width: 600px;
  margin: 1em auto;
  padding: 1.5em;
  border-radius: 20px 0 20px 0;
  border: 0.5em solid #f9dfb4;
  background-color: #f9dfb4;
  box-sizing: border-box;
}
.comentario h4 {
  color: #e63912;
}

.comentario p {
  color: #1c1c1c;
}

#respuesta {
 margin-top:4em;
}




/*CONVOCATORIAS*/
.convocatorias {
 margin:0;
}

.titulo-eventos {
font-size: 1.5em;
font-weight: 100;
}

/*fondo rojo*/
.rojo {
  background-color:#e63912;
  padding: 3em;
}
.rojo h2 {
  color:#f9dfb4;
}
.rojo h3 {
 color:#f9dfb4;
 margin-bottom: 1em;
}
.rojo .boton-normal {
  border: 3px solid #f9dfb4;
  color: #f9dfb4;
  margin-bottom: 0;
  margin-top: 1em;
  display: inline-block;
  margin-right: 2em;
}
.rojo p {
  margin-top: 1em;
}
/*fondo negro*/
.negro {
  background-color:#262626;
  padding: 3em;
}
.negro h2 {
  color:#e63912;
}
.negro h3 {
 color:#e63912;
 margin-bottom: 1em;
}
.negro .boton-normal {
  border: 3px solid #f9dfb4;
  color: #f9dfb4;
  margin-bottom: 0;
  margin-top: 1em;
  display: inline-block;
  margin-right: 2em;
}
.negro p {
  margin-top: 1em;
  color: #f9dfb4;
}
.negro li {
  color:#f9dfb4;
}
/*fondo cremita*/
.cremita {
  padding: 3em;
}
.cremita h3 {
 margin-bottom: 1em;
}
.cremita .boton-normal {
  margin-bottom: 0;
  margin-top: 1em;
  display: inline-block;
  margin-right: 2em;
}
.cremita p {
  margin-top: 1em;
}


.padding {
 padding: 3em;
}






/*INICIAR SESION*/
.iniciosesion {
 display: inline-block;
  border: 3px solid #262626;
  border-radius: 20px 0 20px 0;
  padding: 0.7em 2em;
  background-color:#262626;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.iniciosesion p {
  color: #f9dfb4;
  font-weight: 100;
}

.iniciosesion h1 {
 margin-top: 0.7em;
}

.iniciosesion form input {
  background-color: #f9dfb4;
  display: block;
  width: 90%;
  color: #262626;
  margin-top: 2em;
  margin-left: 1em;
  margin-bottom: 1rem;
  border-radius: 20px 0 20px 0;
}

.boton-sesion {
display: inline-block;
  border-radius: 20px 0 20px 0;
  background-color:#E7431D;
  color: #f9dfb4;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  margin-top: 0;
}

.iniciosesion a {
 color:#f9dfb4;
}

.sesioninfo {
 font-style: italic;
 font-weight: lighter;
}