@charset "utf-8";

*{ 
  box-sizing: border-box;
}

body {
    background-color: white;
    color: rgb(6, 6, 6);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0 auto;
    font-weight: 100;
    min-height: 100dvh;
  }

  main {
    width: min(65rem, calc(100% - 3rem));
    margin-inline: auto;
  }

  p {
    line-height: 1.6;
  }
  
  p,
  li,
  figcaption {
    text-wrap: pretty;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #000000;
    line-height:  1.1;
  }
  
  img {
    max-width: 100%;
  }
  
  figure {
    margin: 0;
  }
  
 

  a {
    display: inline-block;
    padding: 8px 18px;
    background-color: black;
    color: #ffffff;
    font-weight: bold;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    align-self: start;
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: white;
    font-weight: bold;
    color: hsl(0, 0%, 100%);
    padding-block: 0.25em .35em;
    text-align: center;
    border-radius: 100vw;
    padding: .125em 1em;
  }

  a:hover,
  .vertodo a:hover {
    background-color: #F37221;
    color: white;
  }
  
  ul,
  ol {
    list-style: none;
    padding: 0;
    }
  
  footer, 
  header {
    background: #232323;
    color: white; 
    padding: 1rem;
    width: 100%;
    box-shadow: 0px 5px 5px #34113486;
  }

footer {
  margin-top: 2rem
}

footer h2 {
  color: white;
}

  header ul,
  footer ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
    gap: .5rem;
    width: min(100%, 30rem);
    margin-inline-start: auto;
  }
  
  header nav a,
  footer nav a {
    text-decoration: none;
    color: white;
    display: block;
    padding: 0.5em 1em;
    text-align: center;
    border-radius: 100vw;
    text-transform:uppercase; 
  }

  nav a:hover {
    background-color:  hsl(0, 0%, 100%);
    color: rgb(0, 0, 0);
  }

.encabezado {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Cada columna ocupa una fracción igual del espacio disponible */
  gap: 1rem;
  align-items: center;
}

.tituloencabezado {
color: white;
font-size: 20px;
font-weight: bold;
text-transform: uppercase;
margin-block-end: 0;
margin-block-start: 1rem;
}

.encabezado p {
margin: 0
}


.eventosdetiempo {
    padding: 20px;
    font-family: Arial, sans-serif;
    text-align: center;
  }
  
  .eventosdetiempo h2 {
    font-size: 24px;
    color: #4a4a4a;
    margin-bottom: 30px;
  }
  
  .eventosdetiempo {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: start;
    margin-top: 20px;
  }
  
  .lineadetiempo\.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  
  .lineadetiempo\.fecha {
    background-color: #8E4893;
    color: white;
    padding: 10px 20px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    width: 80px;
    text-align: center;
  }
  
  .lineadetiempo\.contenido ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .lineadetiempo\.contenido li {
    font-size: 14px;
    color: #4a4a4a;
  }
  
  .eventosdetiempo::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #c7a3cc;
    z-index: -1;
  }
  
  @media (max-width: 768px) {
    .eventosdetiempo {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .eventosdetiempo::before {
      display: none;
    }
  }

  .bannerweb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr)); 
  }

  .textoeventobanner {
    background-color: rgb(228, 228, 228);
    color: #000000;
    padding: 2rem;
    align-content: center;
  }

.textoeventobanner a {
    display: inline-block;
    padding: 8px 18px; /* Tamaño de botón ajustado */
    background-color: #fff;
    color: #000;
    font-weight: bold;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    align-self: start; /* Alinea el botón con el contenido */
    transition: background-color 0.3s ease;
  }

  .bannerweb a:hover {
    background-color: #0a0a0a;
    color: white;
  }

  .textoeventobanner h4 {
    color: #4a4a4a;
    text-transform: uppercase;
  }

  h1 {
    text-transform: uppercase;
    color:#fbfcff;
    background-color: #232323;
    padding: 1rem;
  }

  .tituloeventos h2 {
    border-bottom: solid 4px #6D0B74;
    color: #6D0B74;
  }

  .historiasybiografias {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .contenedorahistorias {
    background-color: #5DB285;
    color: #023118;
    padding: 2rem;
  }

  a {
    display: inline-block;
    padding: 8px 18px;
    background-color: black;
    color: #ffffff;
    font-weight: bold;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    align-self: start;
    transition: background-color 0.3s ease;
  }

  a:hover,
  .vertodo a:hover {
    background-color: #F37221;
    color: white;
  }

.vertodo a {
background-color: #2D3D56;
Grid-column: 1 / -1; 
justify-self: center;
margin-block-start: 1rem;
  }

  .historiaunica {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr)); 
    gap: 2rem;
  }

   /* ACA EMPIEZA LO DE EVENTOS */

  
  
  h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color:#000;
    border-bottom: solid 2px #000;
    padding-bottom: 0.5rem;
  }
  
  .noviembre {
    position: relative;
    border: 2px solid #000;
    padding: 20px;
    background-color: #fff;
    text-align: center;
    max-width: 400px;
  }

  .calendario01 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(30rem, 100%), 1fr));
    gap: 2rem;
    justify-items: center;
  }
  
  
  .noviembrecalendario {
    list-style: none;
    padding: 0;
  }
  
  .disnoviembre {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
  }
  
  .diasemana {
    font-weight: bold;
    color: #555;
  }
  
  .disnoviembre li {
    padding: 10px;
    font-size: 14px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
  }

 

  .caractnoviembredatos {
    text-align: center;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
  }
  

  /* Colores para los eventos */
  .conferencias {
    background-color:#ff66b3;
    color: #fff;
    padding: 1rem;
  }
  
  .manifestaciones {
    background-color: #F37221;
    color: #fff;
    padding: 1rem;
  }
  
  .proyecciones {
    background-color: #6D0B74;
    color: #fff;
    padding: 1rem;
  }
  
  .talleres {
    background-color: #2D3D56;
    color: #fff;
    padding: 1rem;
  }
  
  /* Leyenda */
  .legend {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
    font-size: 14px;
  }
  
  .legend-item {
    display: flex;
    align-items: center;
  }
  
  .circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
  }
  
  

 /* ACA EMPIEZAN LOS EVENTOS DE NOVIEMBRE EN DETALLE */

  .eventosnovdetalle, 
  .proxeventosnovdetalle {
    display: grid;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    max-width: 400px;
    background-color: white;
    overflow: hidden;
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
  }
  
  .eventosnovdetalle a, 
  .proxeventosnovdetalle a {
    margin-left: 1rem;
    margin-block-start: 1rem;
    margin-block-end: 1rem; }


  /* Imagen y título de la conferencia */
  .imgevento {
    position: relative;
  }
  
  .imgevento img {
    width: 100%;
    height: auto;
  }
  
  .imgevento h3 {
    position: absolute;
    bottom:  0;
    width: 100%;
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 10px;
    font-size: 16px;
  }

  .imgevento h4 {
    position: absolute;
    top: 0;
    color: white;
    font-weight: bold;
    padding: 10px;
    font-size: 16px;
  }

 
  
  /* Texto del evento */
  .textoevento {
    display: grid;
    padding: 1rem;
  }
  
  .textoevento h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
    margin-block-end: 0.5rem;
  }
  
  .textoevento p {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
    margin-block-end: 0;
    margin-block-start: 0;
  }
  
  /* Información adicional del evento */
.infoevento {
  display: grid;
  align-items: center;
  font-size: 14px;
  color: #666;
  gap: 10px;
  text-align: center;
}

.infoevento ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.infoevento li {
  display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-items: start;
    padding-inline-start: 1rem;
}
  
/* Contenedor de los eventos de noviembre */
.eventosnoviembre {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
  gap: 2rem; 
}

.hechosrelevantes {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
    gap: 2rem;
}

.hechoendetalle img {
  position: center;
    width: 100%;
    height: 350px;
    object-fit: cover;
    padding: 5px;
}

.nosotras {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(30rem, 100%), 1fr));
 gap: 2rem;
}

.nosotras video {
  max-width: 100%; 
  height: auto;  
}


.selected {
  background-color: #232323; 
  color: #ffffff;

}





.contenidoimagen img {
  width: 100%;
}

.infoeventoehistoria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(30rem, 100%), 1fr));
  gap: 2rem;
}

.infoylugareventoconferencia {
  background-color: #ff66b38f;
  padding: 2rem;
  display: grid;
}

.tituloconferencia {
  color: #ff66b3;
}

.infoylugareventotaller { 
  background-color:#2d3d5678;
  padding: 2rem;
  display: grid;
}

.titulotaller {
  color:#2D3D56
}

.infoylugareventoproyeccion {
  background-color:#6d0b7486;
  padding: 2rem;
  display: grid;
}

.tituloproyeccion {
  color: #6D0B74;
}

.infoylugareventomanifestacion {
  background-color:#f3722170;
  padding: 2rem;
  display: grid;
}

.titulomanifestacion {
  color:#F37221
}

.meses ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(3rem, 1fr));
    gap: 2rem;
    padding: 2rem;
}

li .mes {
  border: 2px solid #000;
  border-radius: 100%;
}

.hechoshistoria {
  background-color: #55555582;
  width: 50%
}





/* HISTORIA ACAAAAAAAAAAAAAAAA */


.historia {
  display: grid;
  align-items: center;
  position: relative;
}

.historia article:nth-child(2),
.historia article:nth-child(3),
.historia article:nth-child(4),
.historia article:nth-child(5){
margin-block-start: -20%;
}


.historia::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: #ff66b2;
  z-index: 0;
}

.hechoshistoriaizq,
.hechoshistoriader {
  width: 45%;
  padding: 20px;
  margin: 20px 0;
  background-color: #f7f7f7;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hechoshistoriaizq {
  align-self: flex-start;
  margin-right: 55%;
  text-align: right;
}

.hechoshistoriader {
  align-self: flex-end;
  margin-left: 55%;
  text-align: left;
}

.hechoshistoriaizq::before,
.hechoshistoriader::before {
  content: attr(data-year); /* Esto agrega el año como pseudo-elemento */
  position: absolute;
  transform: translateY(-50%); /* Ajusta el año para que esté centrado verticalmente */
  width: 0;
  height: 0;
  color: #fff;
  font-weight: bold;
  font-size: 14px; /* Ajusta el tamaño del texto */
  text-align: center; /* Centra el texto horizontalmente */
  line-height: 30px; /* Centra el texto verticalmente */
}

/* Triángulo apuntando hacia la derecha */
.hechoshistoriaizq::before {
  left: calc(100% + 10px); /* Posiciona el triángulo a la izquierda */
  border-top: 15px solid transparent; /* Bordes transparentes para formar el triángulo */
  border-bottom: 15px solid transparent; /* Bordes transparentes para formar el triángulo */
  border-left: 20px solid #ff66b2; /* Color del triángulo, apunta hacia la derecha */
}

/* Triángulo apuntando hacia la izquierda */
.hechoshistoriader::before {
  right: calc(100% + 10px); /* Posiciona el triángulo a la derecha */
  border-top: 15px solid transparent; /* Bordes transparentes para formar el triángulo */
  border-bottom: 15px solid transparent; /* Bordes transparentes para formar el triángulo */
  border-right: 20px solid #ff66b2; /* Color del triángulo, apunta hacia la izquierda */
}

.hechoshistoriaizq img,
.hechoshistoriader img {
  width: 100%;
  border-radius: 8px;
}

.hechoshistoriaizq h3,
.hechoshistoriader h3 {
  font-size: 18px;
  background-color: #ff66b2;
  color: white;
  padding: 0.5rem;
}

.hechoshistoriaizq h4,
.hechoshistoriader h4 {
  font-size: 24px;
  color: #333;
  margin: 8px 0;
}

.hechoshistoriaizq p,
.hechoshistoriader p {
  font-size: 16px;
  color: #666;
}



/* Estilos para dispositivos móviles */
@media (max-width: 700px) {
  .historia {
      flex-direction: column; /* Coloca los artículos en columna */
      align-items: center;    /* Centra los artículos */
      gap: 2rem;              /* Agrega un espacio de 2rem entre artículos */
  }

  .hechoshistoriaizq,
  .hechoshistoriader {
      width: 100%;          /* Los artículos ocupan todo el ancho disponible */
      margin: 0;            /* Elimina márgenes adicionales */
      text-align: left;     /* Alineación del texto consistente */
  }

  /* Ocultar los pseudo-elementos */
  .hechoshistoriaizq::before,
  .hechoshistoriader::before {
      content: none;        /* Elimina los triángulos */
  }

.historia article:nth-child(2),
.historia article:nth-child(3),
.historia article:nth-child(4),
.historia article:nth-child(5){
margin-block-start: 0%;
}
}




.infohistorias {
  background-color:#a7a7a77c;
  padding: 2rem;
}

.mujereshistoria {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(30rem, 100%), 1fr));
    gap: 2rem;
}

.eventosnoviembre h5,
.tipoevento h5 {
  color: black;
 padding: 1rem;
 background-color:#a7a7a77c;
}


.volver{
  color: black;
  border: 2px solid black;
  background-color: white;
}

.volver a:hover {
  background-color: black;
  color: white;
}


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

.infoeventoehistoria img,
.imagenhistoria img,
.contenidoimagen img  {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pregunta {
  color: #000000;
  font-weight: bold;
}

.acordeonwrapper {
  color: #000000;
}

details.acordeon {
  margin-block-end: 1rem;
}

.form {
  background-color: hsl(0 0% 100%);
  border-radius: .5em;
  box-shadow: 0 .5em 1em -.5em hsl(0 0% 0% / 30%);
}

.form__contenedor {
  margin-block-start: 3em;
  display: grid;
  gap: 2rem;
}

.form__input {
  background-color: #fbfbfb;
  width: 100%;
  border-width: 1px;
  border-color: rgb(0, 0, 0);
  margin-top: 10px;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: .5em;
}

.nombre, 
.correo, 
.tema,
.mensaje {
  background-color: hsl(0 0% 100%);
  padding: 0;
}

.form__submit {
  background-color: hsl(32, 100%, 46%);
  color: hsl(0 0% 100%);
  font-family: inherit;
  font-size: inherit;
  padding-block: .8em;
  border: none;
  border-radius: .5em;
  outline: none;
}

.bajadaencabezado {
  color: white;
  margin-block-start: 0;
  font-size: 15px;
  font-weight:normal;
  margin-block-end: 1rem;
}

.logoencabezado {
  display: grid;
  gap: 0.5rem;
}

.seccionhistorias,
.quienessomos {
 margin: 4rem 0;
}

.botoneshistoria {
  gap: 1rem;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
}