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

/*body*/
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #000000, #36163e 15%, #571db4 50%, #571db4 50%, #000000 100%);
  color: #fff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  grid-template-rows: auto 1fr auto;
}

h1, h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* Subtítulos, citas, destacados */
h3, h4, blockquote {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-style: italic;
}
/* Textos generales */
body, p, li, a, span {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;

}
/*HEADER*/
/*banner-cabecera*/
.logo_lumifest{
    height: 50px;
    
}
.container{
    padding-left: 15px;
    padding-right: 15Px;
    display: grid;
    grid-template-columns: 60px 190px max-content;
    grid-template-rows: max-content;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: #2b2c3b;
}
.nav {
    --img1: scale(1);
    --img2: scale(0);
}
.nav:has(.dropdown:target){
    --img1: scale(0);
    --img2: scale(1);
    --clip: inset(0 0 0 0)
}
.nav_container {
    width: 100%;
    height: 60px;
    display: grid;
    grid-template-areas: "title img";
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.nav_menu{
    grid-area: img;
    position: relative;
    z-index: 51;
    transform: var(--img1);
}
.nav_menu--second{
    transform: var(--img2);
}
.nav_icon{
    width: 30px;
    display: block;
}
.dropdown{
    position: absolute;
    z-index: 50;/*coloca el menu por sobre otro elementos*/
    backdrop-filter: blur(8px);
    background-color: #2731bb81;
    mask: linear-gradient(black 10%, opacity);
    width: 100%;
    right: 0;
    top: 0px;
    bottom: 1;
    padding: 1em;
    display: grid;
    align-content: center;
    justify-content: center;
    gap: .5rem;
    overflow-y: auto;
    clip-path: var(--clip, inset(0 0 100% 100%));
    transition: clip-path .5s;
}
.dropdown_list{
    list-style: none;
    justify-items: center;
    padding: 0;
}
.dropdown_link{
    color: rgb(255, 255, 255);
    padding: 1em .7em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .6rem;
    position: relative;
    background-color: var(--bg, transparent);
    border-radius: 10px;
}
.dropdown_list:has(:checked){
    --rows: 1fr;
    --rotate: rotate(180deg);
    --bg: #ffcc00;
}
.dropdown_check{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.dropdown_arrow{
    margin-left: auto;
    transform: var(--rotate, 0);
    transition: .2s transform;
}
.dropdown_content{
    display: grid;
    grid-template-rows: var(--rows, 0fr);
    transition: .3s grid-template-rows;
}
.dropdown_sub{
    overflow: hidden;
}
.dropdown_li{
    list-style: none;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 8px;
}
.dropdown_li:hover{
    background-color: #ffcc00;
}
.dropdown_anchor{
    padding: .5em 0;
    display: block;
    color: #e0e0e0;
    text-decoration: none;
}
.dropdown_link:hover{
    background-color: #ffcc00;
}

/*largometraje_cortometraje_ documental*/
.titulo_largometraje{
    justify-items: center;
    font-size: 25px;
    text-transform: uppercase;
    margin: 40px 0px 70px 0px;
    color: #ffffff;
}
.linea_vertical{
    width: 270px;
    height: 5px;
    border-radius: 5px;
    background-color: #ffcc00;
    mask: linear-gradient(black 1%, transparent);
}
/*sub-titulos*/
.sub_titulo_uno{
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    justify-items: left;
    gap: 7px;
    margin-left: 0px;
    font-size: 15px;
    text-transform: capitalize;
    color: #ffffff;
}
.sub_titulo_dos{
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    justify-items: left;
    gap: 7px;
    margin-left: 0px;
    font-size: 15px;
    text-transform: capitalize;
    color: #ffffff;
    margin-top: 90px;
}
.linea_vertical_lateral{
    width: 100%;
    height: 15px;
    border-end-start-radius: 5px;
    border-start-start-radius: 5px;
    background: #ffcc00;
    mask: linear-gradient(160deg, black 1%, transparent);
}
/*tarjetas*/
.largometraje_main{
  padding: 10px;
  margin: 0 auto;
}
#all_card_1 .box{
  width: 100vw;
  height: 100vh;
  display: inline-block;
  position: relative;
}
#all_card_1 .box > div{
  width: 100px;
  height: 100px;
  font-size: 96px;
  color: #1d1c45;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -50px;
  line-height: .7;
  font-weight: bold;
}
#all_card_1{
  overflow-y: scroll;
  overflow-x: scroll;
  transform: rotate(270deg) translateX(-120%);
  transform-origin: top left;
  position: absolute;
  width: 214px;
  height: 96vw;
  scrollbar-width: none;
  
}
#all_card_2{
  display: grid;
  gap: 20px;
  transform: rotate(90deg) translateY(_100vh);
  transform-origin: top left;
  white-space: nowrap;
  font-size: 0;
}

.card_body1{
  background: linear-gradient(180deg, #ffcc00 1%, transparent);
  padding: 5px 5px 0px 0px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/10;
  width: 210px;
  border-radius: 13px;
}
.card_tarjeta{
  border-radius: 11px;
  padding: 3px 0px 0px 3px;
  aspect-ratio: 10/16;
  width: 133px;
  transform: rotate(90deg)
}

/* Estructura general del footer */
footer {
    width: 100%;
    background-color: #1a1a2e;
    color: #ffffff;
    text-align: center;
    padding: 20px 10px;
    border: 2px solid #571db4;
    position: relative;
    bottom: 0;
    left: 0;
}
/* Contenido del footer centrado */
.footer-content {
    font-size: 10px;
}

/*pagina de festival de cine independiente*/
/* Main Content */
.main-content_pagina_principal {
  display: grid;
  gap: 1.5em;
  justify-items: center;
  text-align: center;
  padding: 20px 20px;
  margin: 0 auto;
  z-index: 0;
}
.titulo_banner{
  text-decoration: none;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: #000000;
 }
.festival-title {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Sections */
.section {
  display: grid;
  align-items: center;
  justify-items: center;
  margin-bottom: 50px;
  max-width: 395px;
  text-align: center; /* <-- antes estaba text-align: left */
  padding: 0 10; /* <-- para dar algo de espacio en móviles */
}
.section_all_index{
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(min(22em, 100%), 1fr));
  justify-items: center;
  max-width: 820px;
}
.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}
.section-content{
  text-align: center;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
}

/* Video */
.video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 60px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background-color: rgb(7, 7, 7);
}
.video-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.play-button {
  width: 80px;
  height: 80px;
  background: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}
.play-button::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 25px solid #2c3e50;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  margin-left: 5px;
}

/*pagina de menu de pelicula*/
/*fondo*/
#card_movie_largometraje{
    background-image: url(https://www.dgpc.com.ar/cine-liberacion/2025/1/vm14/webapp/imagenes/menuoswaldfox.png);
    background-repeat: no-repeat;
    background-position: right;
    background-attachment: fixed;
    background-size: cover;
}
#card_movie_cortometraje{
  background-image: url(https://www.dgpc.com.ar/cine-liberacion/2025/1/vm14/webapp/imagenes/menulacosta.png);
  background-repeat: no-repeat;
  background-position: right;
  background-attachment: fixed;
  background-size: cover;
}
.card_movie_documental{
  background-image: url(https://www.dgpc.com.ar/cine-liberacion/2025/1/vm14/webapp/imagenes/menutrincheras.png);
  background-repeat: no-repeat;
  background-position: right;
  background-attachment: fixed;
  background-size: cover;
}
.body_menupelicula{
    padding: 0px 0px 0px 20px;
}
/*titulo de movie*/
.titulo_movie{
    font-size: 40px;
    margin-top: 50px;
    margin-bottom: 70px;
    text-transform: uppercase;
}
/*iconos de reproduccion*/
.reproducir_movie1{
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 10px;
    align-items: center;
    padding-left: 15px;
    margin-bottom: 15px;
    color: #000000;
    font-size: 20px;
    width: 140px;
    height: 35px;
    border-radius: 5px;
    background-color: #ffffff;
}
.flecha_reproducir{
    height: 25px;
}
.reproducir_movie2{
    display: flexbox;
    align-content: center;
    text-align: center;
    font-size: 20px;
    width: 180px;
    height: 35px;
    border-radius: 5px;
    background-color: #ffcc00;
    mask: linear-gradient(black 1%, transparent);
}
.reproducir_star{
    display: grid;
    grid-template-columns: 155px 180px;
}
/*agregar_like_duracion_movie*/
.agregar_like_duracion_movie{
    display: grid;
    grid-template-columns: 140px 250px;
    gap: 12px;
    margin-bottom: 70px;
}
.agregrar_like{
    display: flex;
    width: 140px;
    padding-top: 10px;
    gap: 10px;
}
.agregar_like_button{
    height: 60px;
}
.duracion_movie{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    width: 250px;
}
.duracion_movie_icon{
    height: 20px;
    margin: 3px;
}
/*descripcion de pelicula*/
.descripcion_elenco_movie{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), .1fr));
}
.descripcion_movie{
    width: 230px;
    margin-bottom: 70px;
}
/*elenco*/
.elenco_movie_contenedor{
    width: 350px;
}
.elenco_movie{
    width: 190px;
    text-transform: capitalize;
}
.elenco_movie_1{
    width: 190px;
    text-transform: capitalize;
}
.elenco_movie_2{
    width: 130px;
    text-transform: capitalize;
}
.elenco_movie_3{
    width: 100px;
    text-transform: capitalize;
}

/* QUE HACEMOS Y OBJETIVOS */
.section {
    margin-bottom: 50px;
    text-align: left;
}
.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fafafa, #fbff00);
    border-radius: 2px;
}
.section-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
}


/* Formulario de sesion con redes sociales y recuperar contraseña */
.centro-pantalla {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 5; /* asegura que esté arriba del fondo */
}
.formulario-container {
    background-color: rgba(47, 44, 101, 0.95);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    width: 90%;
    max-width: 400px;
    text-align: center;
}
.login-container {
    background-color: #2f2c65;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    width: 90%;
    max-width: 400px;
    text-align: center;
}
.titulo {
    color: #ffffff;
    text-shadow: 0 2px 2px #000;
    margin-bottom: 30px;
    font-size: 26px;
    text-decoration: underline;
}
form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    font-size: 16px;
}
.boton-login {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: linear-gradient(to bottom, #FFD700, #cba300);
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    color: #1d1c45;
    cursor: pointer;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}
.boton-login:hover {
    background: linear-gradient(to bottom, #fce95d, #b48c00);
}
.olvide {
    display: block;
    margin: 15px 0;
    color: white;
    font-size: 14px;
    text-decoration: none;
}
.olvide:hover {
    text-decoration: underline;
}
.crear-cuenta {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: linear-gradient(to bottom, #FFD700, #cba300);
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    color: #1d1c45;
    cursor: pointer;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}
.crear-cuenta:hover {
    background: linear-gradient(to bottom, #fce95d, #b48c00);
}
.social-login {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px; /* separa los botones entre sí */
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center; /* centra ícono + texto */
    width: 100%;
    padding: 10px 15px;
    background-color: #fff;
    border: none;
    border-radius: 30px; /* botones más suaves y redondeados */
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-size: 16px;
    color: #333;
    transition: background 0.3s, transform 0.2s;
}
.social-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}
.social-btn .icono-red {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.social-btn span {
    text-align: center;
    flex: none; 
}


/* Perfil de usuario */
/* Cabecera */
/* Perfil */
.perfil-usuario {
  text-align: center;
  padding: 20px;
}
.foto-usuario {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 3px solid gold;
}
.foto-usuario img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nombre-usuario {
  margin: 10px 0;
  font-size: 22px;
  font-weight: bold;
}
.estadisticas {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 50px;
  margin: 20px 0;
}
.estadisticas div p {
  margin: 0;
  font-size: 14px;
  color: #cccccc;
}
.estadisticas div span {
  font-size: 18px;
  font-weight: bold;
}
.grid-publicar {
  display: grid;
  place-items: center;
  margin: 20px auto;
  max-width: 135px;
  background-color: #0d0f00;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.boton-publicar {
  background: linear-gradient(to bottom, rgb(245, 208, 0), #f3c302);
  color: #00010c;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
}

/* --- Sección de videos publicados --- */
.videos-publicados h3 {
  margin-top: 40px;
  font-size: 20px;
  font-weight: bold;
}
.barra-progreso {
  width: 70%;
  height: 10px;
  background: linear-gradient(to right, rgb(217, 241, 0), transparent);
  margin: 10px auto 20px auto;
  border-radius: 20px;
}
.galeria-videos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.video-card {
  background-color: #1b133d;
  border: 2px solid gold;
  border-radius: 12px;
  width: 100%; /* ocupará su columna */
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
  width: 210px;
}

 .video-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}
.video-card h4 {
  margin-top: 10px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: white;
}
.contador {
  margin-top: 5px;
  font-weight: bold;
  color: gold;
}

/* Ajustes solo para pantallas grandes (PC) */
@media (min-width: 768px) {
  .galeria-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 posters por fila */
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  /* Tablet: 2 columnas */
@media (min-width: 576px) {
  .galeria-videos {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* PC: 4 columnas */
@media (min-width: 992px) {
  .galeria-videos {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 20px;
  }
}
  .video-card {
    width: 100%; /* ocupa todo el espacio de su celda */
    max-width: 100%;
  }
}

/* PUBLICAR VIDEO */
    .modal-publicar {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 400px;
      background: #121326;
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(0,0,0,0.7);
      color: #fff;
      font-family: 'Arial', sans-serif;
      z-index: 1000;
      padding: 0;
      overflow: hidden;
    }

    .modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px;
    }
    .modal-header h2 {
      margin: 0;
      font-size: 18px;
      font-weight: bold;
    }
    .modal-close {
      background: none;
      border: none;
      font-size: 20px;
      color: gold;
      cursor: pointer;
    }

    .modal-section {
      padding: 0 16px 16px;
    }
    .modal-section + .modal-section {
      border-top: 1px solid #2a2c42;
    }

    .section-title {
      display: flex;
      align-items: center;
      margin-bottom: 8px;
    }
    .section-title h3 {
      margin: 0;
      font-size: 16px;
      flex: 1;
    }
    .section-underline {
      flex: 2;
      height: 4px;
      background: linear-gradient(to right, gold, transparent);
      margin-left: 8px;
      border-radius: 2px;
    }

    .modal-input,
    .modal-textarea {
      width: 100%;
      background: #fff;
      color: #000;
      border: none;
      border-radius: 4px;
      padding: 8px;
      font-size: 14px;
      margin-bottom: 12px;
    }
    .modal-textarea {
      height: 100px;
      resize: vertical;
    }

    .miniaturas {
      display: flex;
      gap: 8px;
      justify-content: space-between;
      margin-bottom: 12px;
    }
    .miniatura {
      width: calc(50% - 4px);
      background: #2a2c42;
      border-radius: 4px;
      overflow: hidden;
      text-align: center;
      position: relative;
      cursor: pointer;
      color: #ccc;
      font-size: 12px;
      padding: 8px 0;
    }
    .miniatura img {
      width: 100%;
      height: auto;
      display: block;
    }

    .video-element {
      display: flex;
      align-items: center;
      margin-bottom: 8px;
    }
    .video-element input {
      flex: 1;
      height: 32px;
      border: none;
      border-radius: 4px 0 0 4px;
      padding: 0 8px;
      font-size: 14px;
    }
    .video-element button {
      background: gold;
      border: none;
      padding: 0 12px;
      height: 32px;
      border-radius: 0 4px 4px 0;
      font-size: 14px;
      cursor: pointer;
      font-weight: bold;
      color: #121326;
    }
/*Para acomodar lo de subir archivo y que no se deforme */
    .formulario-publicar {
  max-width: 600px;
  margin: 40px auto; /* Centra el contenedor */
  background-color: #121326;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
}
/* Para pantallas pequeñas */
@media (max-width: 600px) {
  .formulario-publicar {
    margin: 20px 16px;
    padding: 16px;
  }
  .miniaturas {
    flex-direction: column;
  }
  .miniatura {
    width: 100%;
  }
  .video-element {
    flex-direction: column;
  }
  .video-element input,
  .video-element button {
    width: 100%;
    border-radius: 4px;
  }
  .video-element button {
    margin-top: 6px;
  }
}

/* Estilo general para la página principal */

.caja_titulo_largometraje{/**/
    justify-items: center;
    text-transform: uppercase;
    margin: 40px 0px 70px 0px;
}
main div a{
  color: #ffffff;
  display: block;
  width: fit-content;
  border-radius: 7px;
  padding-block: 10px;
  padding-inline: 11px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-size: 41px;
}
.tipo_a{
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.categoria_pagina_principal {
  text-align: center;
  justify-items: center;
  margin-top: 50px;
}
.categoria_pagina_principal_titulo{
  justify-items: center;
}
.categoria_pagina_principal2 {
  text-align: center;
  margin-top: 70px;
}
.all_card_pagina_principa{
  height: 250px;
  padding-bottom: 280px;
  padding-left: 30px
}


/* Responsive para móviles */
@media (max-width: 600px) {
  .poster {
    width: 160px;
  }
  .poster img {
    height: 240px;
  }
  .categoria h2 {
    font-size: 22px;
  }
}

/* 9.inscripcio a Festivales */
.inscripcion {
  padding: 20px;
}
.inscripcion h2 {
  text-align: center;
  color: #f8f8f8;
  margin-bottom: 20px;
}
form {
  max-width: 600px;
  margin: 0 auto;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
label {
  flex: 1 1 100%;
  color: #fff;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],

textarea {
  flex: 1 1 calc(50% - 10px);
  padding: 8px;
  border: none;
  border-radius: 5px;
}
textarea {
  flex: 1 1 100%;
  height: 80px;
}
input[type="file"] {
  background: #fff;
  padding: 5px;
}
button {
  width: 100%;
  padding: 10px;
  background-color: #ffcc00;
  color: #1c1c3c;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
button:hover {
  background-color: #e6b800;
}

/* Responsive para móviles */
@media (max-width: 600px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="file"],
  textarea {
    flex: 1 1 100%;
  }
}

/* 10.Seccion de noticias */
.noticias-container {
  text-align: center;
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.noticias-container img {
  width: 400px;
  border-radius: 10px;
  max-width: 100%;
}
.noticias-container h3 {
  color: #ffffff; /* azul brillante */
  font-size: 1.5rem;
  margin: 10px 0;
}
.noticias-container p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
/* Enlaces dentro de noticias (opcionalmente puedes estilizar) */
.noticias-container a {
  color: #fcfcfc;
  text-decoration: underline;
  text-decoration: none;
}
/* Responsive: ajusta espacios y tamaño en pantallas pequeñas */
@media (max-width: 600px) {
  .noticias-container {
    padding: 20px 10px;
  }
  .noticias-container h3 {
    font-size: 1.3rem;
  }
  .noticias-container p {
    font-size: 0.95rem;
  }
}

 
/* 10.1 - Noticia 1*/
.noticias-container {
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}
.noticias-container h2 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.imagen-noticia {
  width: 100%;
  max-width: 800px; 
  height: auto;
  display: block;
  margin: 30px auto 20px auto;
  border-radius: 12px; 
}
.texto-noticia {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 30px;
  padding: 0 10px;
}
.boton-inscripcion-noticia {
  display: inline-block;
  background-color: #571db4;
  color: #000000;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  margin-top: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.boton-inscripcion-noticia:hover {
  background-color: #f8f8f8;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .imagen-noticia {
    width: 100%;
    max-width: 95%;
    margin: 20px auto;
  }

  .noticias-container h2 {
    font-size: 22px;
  }

  .texto-noticia {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .boton-inscripcion-noticia {
    font-size: 15px;
    padding: 10px 20px;
  }
}

/* 10.2 - Noticia 2 */
.noticia-jurado{
  text-align: center;
}
.noticia-jurado h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.fecha-noticia {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}
.imagen-noticia {
  display: block;
  width: 75%;
  max-width: 10px;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
}
.texto-noticia {
  font-size: 16px;
  color: #fffefe;
  margin-bottom: 25px;
  text-align: justify;
  padding: 30px;
}
.boton-jurados {
    display: inline-block;
    background-color: #571db4; 
    color: #fefefe;            
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;     
    transition: background-color 0.3s ease, color 0.3s ease;
}
.boton-jurados:hover {
    background-color: #fafafa; 
    color: #ffffff;
}
.contenedor-jurado {
    text-align: center;
    margin-top: 20px;
}
.contenedor-jurado h5 {
  margin-bottom: 10px;
}


/* 10.3- Noticia 3 */
.noticias {
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.noticias img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
.imagen-noticia {
  width: 400px;
  height: auto;
  max-width: 100%;
  border-radius: 10px;
}
  
  
.section[class*="Noticia"] {
  border-radius: 16px;
  padding: 30px;
  margin: 20px auto;
  max-width: 800px;
  text-align: center;
}
.section img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  margin: 15px 0;
}
.noticias_h1 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.noticias h5 {
    font-size: 16px;
    color: white;
    margin: 10px 0;
}
.section p {
  margin: 20px 0;
  font-size: 18px;
}

/* BOTÓN "COMO LLEGAR" */
.contenedor-ubicacion {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  padding: 20px;
  max-width: 500px;
  border-radius: 12px;
  text-align: center;
}
.contenedor-ubicacion h5 {
  margin-bottom: 15px;
  font-size: 18px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Estilo del ícono SVG */
.icono-mapa {
  width: 80px;
  height: auto;
  filter: invert(1); /* invierte colores, útil si es negro */
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}
.icono-mapa:hover {
  transform: scale(1.1);
}

/* Dirección debajo del ícono */
.direccion {
  font-size: 16px;
  color: white;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .header h1 {
    font-size: 24px;
  }
  .dropdown_link {
    font-size: 14px;
  }
  .section h1 {
    font-size: 22px;
  }
  .section p {
    font-size: 16px;
  }
  .boton-ubicacion {
    font-size: 15px;
    padding: 10px 18px;
  }
}

/* 11 - JURADO */
.premios {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  font-weight: normal; /* Aplica por defecto a todo */
}

.premios h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: normal;
}

.premios h3 {
  font-size: 1.6rem;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: normal;
}

.premios p {
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: normal;
}

.premios ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  max-width: 600px;
  font-weight: normal;
  text-align: center;
}

.premios li {
  font-size: 1rem;
  line-height: 1.6;
  padding-left: 0;
  font-weight: normal;
}

.premios li strong {
  font-weight: normal; /* Esto desactiva negrita en <strong> */
}
.pagina-jurado .titulo-centrado {
  text-align: center;
  color: #ffffff;
  font-size: 2em;
  margin-bottom: 1em;
}
.pagina-jurado .premios ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.pagina-jurado .jurados {
  margin-top: 40px;
  text-align: center;
}
.pagina-jurado .jurado-bloque {
  margin-bottom: 40px;

}
.pagina-jurado .jurado-bloque h3 {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}

/* Contenedor de jurados en stack por defecto (móvil) */
.pagina-jurado .jurado-contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Estilo individual del jurado */
.pagina-jurado .jurado {
  text-align: center;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pagina-jurado .jurado img {
  width: 180px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px #ffffff;
}

.pagina-jurado .jurado h4 {
  margin: 10px 0 8px;
  font-size: 1.1em;
  color: #ffffff;
}

.pagina-jurado .jurado p {
  font-size: 0.95em;
  color: #ffffff;
  line-height: 1.5;
  padding: 0 10px;
}

/* --- Estilos para PC --- */
@media (min-width: 768px) {
  .pagina-jurado .jurado-contenedor {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .pagina-jurado .jurado {
    flex: 1 1 30%;
  }
}