@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Recursive:wght@300;400;500;900&display=swap');

:root {
    --color-primero: rgb(112, 178, 156);
    --color-segundo: rgb(207, 103, 71);  
    --color-tercero:rgb(102, 159, 183); ;
    --texto: black; 
}

*{
  font-family: 'Recursive', sans-serif;
  font-family: 'Roboto', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

html{
  height: -webkit-fill-available;
}

/*rotulo-------*/

h2{
  font-family: 'Recursive', sans-serif;
  color: var(--color-tercero);
  font-size: 2em;

}






/*HEADER-------*/


.menu ul {
  display: flex;
  flex-direction: column;
  
}


nav {
  position: relative;
}



header {
  background-color:black;
  padding: 1em;
  position: sticky;
  top: 0;
  z-index: 8000;
  box-shadow: 0 4px 2px hsl(0 0% 0% / 0.25);
  

}
.menu-btn{
  border-radius: 50%;
  padding: .65rem;
  width: 3rem;
  aspect-ratio: 1;cursor: pointer;
  transition: all 0.3s ease-out; 
  position: fixed;
  top: 1em;
  right: 1em;
  z-index: 9000;
}

.contenedora {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: left;
  margin-top: 1em;
  max-width: 70em;
}


.menu-btn .btn-linea {
  width: 25px;
  height: 3px;
  margin: 4px 0 4px 0;
  background: hsl(0 0% 90%);
  transition: all 0.3s ease-out;
  position: relative;
  z-index: 9000;
}

.menuVisible .menu-btn .btn-linea {
  transform: rotate(180deg);
}
.menuVisible .menu-btn .btn-linea:nth-child(1) {
  transform: rotate(45deg) translate(4px, 6px);
}
.menuVisible .menu-btn .btn-linea:nth-child(2) {
  opacity: 0;
}
.menuVisible .menu-btn .btn-linea:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}

nav ul {
  opacity: 0; 
  visibility: hidden; 
  position: absolute;
  background-color:var(--color-segundo ) ;
  padding: 4em;
  right: 0rem;
  top: calc(100% + 2rem);
  z-index: 9999;
  transition: all .5s ease; 
}

.menuVisible ul {
  visibility: visible; 
  opacity: 100%; 
  transition: all .5s .2s ease; 
}


header nav ul li a {
  color: white;
  display: block;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-size: 0.9em;
  text-align: center;
  padding: 1.2em;
  text-decoration: none;
  border-bottom: solid 1px white;
  margin-top: .8em;
  margin-bottom: .8em;

}

nav ul li a:hover {
 color: var(--color-segundo);
  background-color: white;

  font-weight: 600;
}



ul, ol {
list-style: none;
}


/*HOME-------*/

#logoColoso img{
  max-width: 22em;
  margin-left: 1em;
  margin-right: 1em;
}
  
.fondonegro{
  background-image: url(../imagenes/homeimg.jpg);
  background-size: cover;
  max-height: 37em;
  padding-bottom: 4em;
  padding-top: 4em;
}

.articuloinicio{
  max-width: 70em;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  

}

.textoinicio{
  max-width: 30em;
  text-align: left;
  padding-top: 1em;
  }
  

.textoblanco{
  color: black;
  margin-top: 1em;
  margin-bottom: 2em;
  font-size: 1em;
  line-height: 1.5em;
  font-weight: 400;
  padding-left: 1em;
  padding-right: 1em;
}

.contenedora a img {
  max-width: 40%;
}
.botonesinicio{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.botonacumar{
  color: white;
  text-decoration: none;
  padding: .75em 2.25em;
  background-color:var(--color-segundo);
  max-width: max-content;
  
  }
  
  .botonacumar:hover {
    color:var(--color-segundo);
    background-color: white;
  }
  
  
  .botoncoloso{
  border: solid 1px black;
  text-decoration: none;
  padding: .75em 2.25em;
  color: black;
  max-width: max-content;
  margin-top: 1em;
  }
  
  
  .botoncoloso:hover {
    color:white;
    background-color: black;
  }


  .iconos{
    background-color: rgb(230, 230, 230);
    margin: 0 auto;
    margin-top: 4em;
    margin-bottom: 4em;
    padding-top: 3em;
    padding-bottom: 3em;
    justify-content: center;
    text-align: center;
  }
  .iconoIndividual{
    max-width: 7em;
  }
  .iconos section {
    max-width: 50em;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .moduloicono{
  text-align: center;
  }
  
  .iconos h2{
    color: black;
    font-family: 'Recursive', sans-serif;
    margin-bottom: 1.5em;
    text-transform: uppercase;
    font-size: 2em;
  }

  h5{
    text-transform: uppercase;
    margin-top: 1em;
  }


/*GALERIA DE FOTOS-------*/



.imgAbierta {
  width: 100%;
  height: 100vh;
  background-color: rgb(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
  
}

.imgAbierta img{
  max-width: 30em;
  background-color: white;
  border-color: white solid 1px;
  border-radius: 0.20em;
}


.galeria{
  width: 70em;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 1em;
  padding-block: 1em;
  padding-left: 1em;
  padding-right: 1em

}


.galeria img{
  width: 100%;
  cursor: pointer;
  transition: 0.5s;
  border-radius: 0.20em;

}

.galeria img:hover{
  transform: scale(1.04);
}


.cuadradosdecolores{
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 70em;
}

.figuravertical{
  border-radius: .15em;

  height: 46.33em;
  margin-left: 1em;
  margin-right: 1em;
  margin-bottom: 1em;
  background-color: var(--color-segundo);
}


.moduloCuadradosFinal{
  display: flex;
  flex-direction: column;

}


.contenedorcuadraditos{
  display: flex;
  flex-direction: column;
  margin-left: 1em;
  justify-content: space-between;
}

.cuadradito{
  background-color: var(--color-tercero);
  height: 22.66em;
  margin-top: 1em;
  border-radius: .15em;
  margin-right: 1em;
  
}


.textocoloso{
 max-width: 70em;
 display: flex;
 justify-content: space-between;
 margin: 0 auto;

}


p{
  Line-height: 2em;

}
.principal{
  max-width: 36em;
}

.curiosidades{
max-width: 24em;
color: var(--color-segundo);
font-weight: 450;

}



.formulariohome{
  background-image: url(../imagenes/formulariohome.jpg);
  height: 25em;
  background-size: cover;
}

.contenedorformulario{
  

}



/*GALERÍA CON FIGCAPTION MOVIBLE-------*/


.las-imagenes{
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding-top: 1em;
  
  
}

.galeria figure {
  aspect-ratio: 1; 
  max-width: 22,66em;
  max-height: 22,66em;
  position: relative;
  overflow: hidden;
  
}

.galeria img {
  object-fit: cover;
  object-position: left center;
  width: 100%;
  height: 100%;
}

.galeria figcaption {
  font-family: 'Recursive', sans-serif;
  font-size: 1em;
  color: white;
  padding: .5em;
  line-height: 1em;
  position: absolute;
  inset: 0;
  transform: translateY(calc(100% - 2.3em));
  transition: all 1s ease;
  text-align: left;
  padding-inline: 2em;
}




.galeria figure:hover figcaption {
  background-color: hsl(280 15% 35% / 0.75);
  transition: all .3s ease;
  transform: translateY(0);
  display: grid;
  text-align: left;
  place-content: center;
  padding-inline: 2em;
}

.galeria figcaption span {
  display: block;
  font-size: 1em;
  color: #ddd;
  margin-block-start: .5em;
  text-transform: none;
  font-weight: 400;
  line-height: 1.5em;
  padding-block: 1em;
}

.galeria figcaption a {
  display: inline-block;
  margin-block-start: .5em;
  border: solid 1px white;
  border-radius: 5em;
  color: white;
  padding: .75em 1.5em;
  border-radius: 3em;
  text-decoration: none;
  font-weight: 400;
}


.galeria figcaption a:hover {
  background-color: var(--color-tercero);
  border: solid 1px var(--color-tercero);
}




/*TITULOS VARIOS-------*/



.titulos{
  max-width: 70em;
  margin: 0 auto;
  padding-bottom: 1em;
  padding-left: 1em;
  padding-right: 1em;


}

.titulos h1{
font-family: 'Recursive', sans-serif;
color: var(--color-tercero);
font-size: 2.5em;
text-align: left;
}

.titulos h3 {
  font-family: 'Roboto', sans-serif;
  color: grey;
  font-weight: 400;
}



/*IMG PLAN-------*/

.colosal{
  max-width: 70em;
  margin: 0 auto;
}


/*FOOTER-------*/
footer{
  background-color: black;
}



@media (min-width: 992px){
  .contenedora {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
  }


  .picture{

    margin: 0 auto;
    }
  .horarecorrido{
    margin-right:0 ;
    margin-left: 0;

  }

  .botoncoloso{
    margin-top: 0;
    }

  #logoColoso img{
    max-width: 31em;
    }
  .menu ul {
    display: flex;
    flex-direction: row;
    opacity: 1;
    visibility: visible
    }

    .botonesinicio{
      flex-direction: row;
      justify-content: space-between
    }

    header nav ul li a {
      width: max-content;
      border-bottom: 0;
      padding-top: .5em;
      padding-bottom: .5em;
      
    }




    .slider-contenedor{
      width: 46.32em;
      margin-left: 1em;
      margin-right: 0em;
    }



    .cuadradosdecolores{
      flex-direction: row;
      
 
    }

    .contenedorcuadraditos{
      flex-direction: row;

    }


.figuravertical{
 
  width: 22.66em;
  height: 46.33em;
  margin-left: 0em;
  margin-right: 0em;
}

.cuadradito{
  width: 22.66em;
  height: 22.66em;
  margin-right: 0em;
  
}


#logoColoso img{
  margin-left: 0em;
  margin-right: 0em;
}




      .infoinicio{
        text-align: left;
        font-size: 1.8em;
        width: 20em ;
        padding-top: 6em;
      }
      .las-imagenes{
        flex-direction: row;
        max-width: 100%;
      
      }
      .galeria{
        padding-left: 0;
        padding-right: 0;
      
      }

      nav ul {
      position: relative;
      top: 0em;
      z-index: 9999;
      display: flex;
      padding: 0em;
      flex-direction: row;
      background-color: black;
      color: white;
      opacity: 100%;
      }
      
      .textoblanco{
        padding-left: 0;
        padding-right: 0;
      }
      .menu-btn{
        position: absolute;
        opacity: 0%;
      }
      .museos-contenedora{
        display: flex;
        align-items: center;
      }
      .botones-ver-mas{
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .preguntas-frecuentes{

        margin-top: 0;
        padding-bottom: 0;
        margin-left: 0;
        margin-right: 0;
        
      }

      .titulos{
        padding-left: 0;
        padding-right: 0;
      
      }

      .paseos{

        flex-direction: row;


      
      }
      .fondonegro{
        height: 37em;

      }

      .textopaseos {

        padding-left:0 ;
        padding-right: 0;
        
        
      }
}
