/* eSTILO DE BOTONES */
a {
  background-color: #eee;
  border: none;
  padding: 1rem;
  font-size: 0.9vmax;
  width: 10em;
  border-radius: 1rem;
  color: turquoise;
  box-shadow: 0 0.4rem #dfd9d9;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

a:active {
  color: white;
  box-shadow: 0 0.2rem #dfd9d9;
  transform: translateY(0.2rem);
}

a:hover:not(:disabled) {
  background: turquoise;
  color: white;
  text-shadow: 0 0.1rem #bcb4b4;
}

a:disabled {
  cursor: auto;
  color: grey;
}
/* FIN ESTILOS DE BOTONES */

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

html,body{
    width: 100%;
    height: 100%;
}

.cabecera{
    width: 100%;
    height: 12vh;  
    position: fixed;
    top: 0;
    background-color: aqua;  
    z-index: 10;
}

.botonera {
  width: 100%;
  height: 10vh;
  /* padding-top: 1rem; */
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: aqua;
  justify-content: space-around;
}

.principal{
    width: 100%;
    height: 85vh;
    margin-top: 10vh;
    /* margin-bottom: 5vh; */
    background-color: red;
}

/* .PRESENTACION {
  text-align: center;
  background-color: blue;
  font-size: 1.5rem;

  padding: 2rem;

  width: 100%;
  height: 85vh;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  
} */

.PRESENTACION{
  /* Centramos el contenido de la sección y determinamos el color de fondo */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: white;

  padding: 2rem;

  width: 100%;
  height: 85vh;

}

.light{
  /* Establecemos las características del texto */
  font-size: 1.5rem;
  text-align: center;
  color: rgb(0, 238, 255);
  font-weight: bold;
  position: relative;
}

.light::before{
  /* Establecemos una sombra utilizando un pseudoelemento con un texto idéntico superpuesto */
  content: attr(data-text);
  position: absolute;
  font-size: 10vmax;
  text-shadow: 0 0 20px  rgb(0, 238, 255);
  filter: blur(1px) brightness(0);
  /* Determianmos la animación */
  animation: parpadeo 2s linear infinite;
  animation-delay: 1s;
}

@keyframes parpadeo {
  /* Establecemos el paso a paso de la animación que queremos realizar */
  0%{
       filter: blur(1px) brightness(1);
  }
  3%{
       filter: blur(1px) brightness(0);
  }
  6%{
       filter: blur(1px) brightness(0);
  }
  7%{
       filter: blur(1px) brightness(1);
  }
  8%{
       filter: blur(1px) brightness(0);
  }
  9%{
       filter: blur(1px) brightness(1);
  }
  10%{
       filter: blur(1px) brightness(0);
  }
  20%{
       filter: blur(1px) brightness(1);
  }
}



.name{
  /* seteamos las propiedades del texto */
  font-size: 10vmax;
  text-align: center;
  color: rgba(255, 255, 255);
 
}

 
.CONOCIENDOME {
  text-align: center;
  text-decoration: none;
  background-color: whitesmoke;
  font-size: 20px;

  /* line-height: 4.5vmin; */
  /* background-size: cover;
 */
  padding-top: 10vh;
  padding-left: 15px;
  width: 100%;
  height: 85vh;

  /* display: flex; */
  /* flex-direction: row;
  justify-content: center;
  align-items: center; */
}

.pregunta {
background-color: #f0ebeb;
text-align: left;
}

.titulo {
  font-size: 5vmin;
  color: black;
  letter-spacing: 0.25em;
  background-color: transparent;
  text-align: center;
  text-shadow: rgb(201, 201, 201);
  padding-top: 1%;
  }

.PASO_POR_EL_ILLIA {
  text-align: center;
  text-decoration: none;
  background-color: aquamarine;
  font-size: 1.5rem;

  padding: 2rem;

  width: 100%;
  height: fit-content;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;;
}

.container
{
  width: 100%;
  margin: 0px auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.container .box
{
  position: relative;
  width: 300px;
  height: 300px;
  background: yellow;
  margin: 10px;
  box-sizing: border-box;
  display: inline-block;
}
.container .box .imgBox
{
  position: relative;
  overflow: hidden;
}
.container .box .imgBox img
{
  max-width:100%;
  object-fit: contain;
 
  transition: transform 2s;
}
.container .box:hover .imgBox img
{
  transform: scale(1.2);
}
.container .box .details
{
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,.8);
  transform: scaleY(0);
  transition: transform .5s;
}
.container .box:hover .details
{
  transform: scaleY(1);
}
.container .box .details .content
{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 15px;
  color: #fff;
}
.container .box .details .content h1
{
  margin: 0;
  padding: 0;
  font-size: 20px;
  text-align: center;
  color: #ff0;
}
.container .box .details .content p
{
  margin: 10px 0 0;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0;
  }
  .container .box {
  margin: 0;
  }

  }

.VIENDO_AL_FUTURO {
  text-align: center;
  text-decoration: none;
  background-color: aqua;
  font-size: 1rem;
  margin-top: 0vh;
  padding-top: 10vh;


  padding: 2rem;

  width: 100%;
  height: 85vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.futuroh {
  display: none;
  width: 57%;
}

@media (orientation:landscape) {
  .futuroh {
    display: block;
  }
}

.futurov {
  display: none;
  width: 57%;
}
@media (orientation: portrait) {
  .futurov {
    display: block;
  }

}
.CONTACTOS {
  text-align: center;
  text-decoration: none;
  background-color: rgb(3, 218, 218);
  font-size: 1.5rem;
  padding-top: 10vh;

  padding: 2rem;

  width: 100%;
  height: 85vh;

  /* display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: nowrap; */
}

.redes {
  color: transparent;
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding-top: 30vh;

}
.redes:hover {
  background-color: turquoise;
  color: turquoise;
  background: turquoise;
  width: 0vh;
}


.footer{
  width: 100%;
  height: 5vh;
  position: fixed;
  background-color: aliceblue;
  bottom: 0vh;

}

/* .box{
  text-align: center;
  text-decoration: none;
  background-color: aquamarine;
  font-size: 1.5rem;

  padding: 2rem;

  width: 100%;
  height: fit-content;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;;
} */

/* .imgBox{
  text-align: center;
  text-decoration: none;
  background-color: aquamarine;
  font-size: 1.5rem;

  padding: 2rem;

  width: 100%;
  height: fit-content;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;;
} */

body
{
  margin: 0;
  padding: 0;
  background: #262626;
  font-family: sans-serif
}
.container
{
  width: 100%;
  margin: 0px auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.container .box
{
  position: relative;
  width: 300px;
  height: 300px;
  background: aquamarine;
  margin: 10px;
  box-sizing: border-box;
  display: inline-block;
}
.container .box .imgBox
{
  position: relative;
  overflow: hidden;
}
.container .box .imgBox img
{
  max-width: 100%;
  transition: transform 2s;
}
.container .box:hover .imgBox img
{
  transform: scale(1.2);
}
.container .box .details
{
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,.8);
  transform: scaleY(0);
  transition: transform .5s;
}
.container .box:hover .details
{
  transform: scaleY(1);
}
/* .container .box .details .content
{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 15px;
  color: #fff; */
/* } */
.container .box .details .content h1
{
  margin: 0;
  padding: 0;
  font-size: 20px;
  color: #ff0;
}
.container .box .details .content p
{
  margin: 10px 0 0;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0;
  }
  .container .box {
  margin: 0;
  }
  }