/*parametros iniciales*/
@import url('https://fonts.googleapis.com/css2?family=Racing+Sans+One&display=swap');

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

.botonera{
    /* diseño */
    width: 100vw;
    height: 10vh;
    text-align: center;
    /* organizar contenido */
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  /* ESTO ES LO QUE COPIO DE LA PÁGINA*/
    margin-bottom: 3%;
    margin: 0.5%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  button {
    padding: 0.1em 0.25em;
    width: 13em;
    height: 4.2em;
    background-color:rgb(245, 221, 187);
    border: 0.08em solid #98794e;
    border-radius: 0.3em;
    font-size: 12px;
  }
  
  button span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0.4em;
    width: 8.25em;
    height: 2.5em;
    background-color: #eabb78;
    border-radius: 0.2em;
    font-size: 1.5em;
    color: sienna;
    border: 0.08em solid #98794e;
    box-shadow: 0 0.4em 0.1em 0.019em #c8a066;
  }
  
  button span:hover {
    transition: all 0.5s;
    transform: translate(0, 0.4em);
    box-shadow: 0 0 0 0 #645033;
  }
  
  button span:not(hover) {
    transition: all 1s;
  }

.titulo{
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /* propiedades del texto */
  font-family: 'Racing Sans One', cursive;
  font-size: 8vmin;
  color:rgb(161, 128, 147) ;
  text-align: center;
}

.general{
  /* tamaño de la ventana */
  width: 100vw;
  min-height: 100vh;
  background-color: rgb(245, 221, 187);  
}


.cabecera{
  width: 100vw;
  height: 10vh;
  text-align: center;
  background-color: rgb(245, 221, 187);
  color: burlywood;
  position: fixed;
  top: 0vh;
  z-index: 52;
}

.principal{
  height: 100vh;
  width: 80vw;
  margin: auto;
  margin-top: 10vh;
  margin-bottom: 8vh;
  padding-top: 5vh;
  /* pa organizar el contenido */
  display: flex;
  flex-wrap: wrap;
}

.presentacion{
  background-color: bisque;
  width: 100%;
  height: 80vh; 
}

.conociendome{
    
  width: 100vw;
  height: 85vh;
  margin: auto;
  text-align: center;
  align-items:center;
  justify-content: center;
  background-color:#ccded2;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  padding-top: 10vh;
  padding-bottom: 5vh;
}

.honeycomb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  align-items: center;
  max-width: 100%; /* Ancho máximo ajustado a la sección */
  margin: 0 auto;
  padding: 0;
  transform: translateY(0); /* Sin desplazamiento */
}

.honeycomb-cell {
  flex: 0 1 120px; /* Ancho de cada celda hexagonal ajustado */
  max-width: 120px;
  height: 66px; /* Altura ajustada */
  margin: 40px; /* Ajustar según necesidades */
  position: relative;
  padding-bottom: 0.5em;
  text-align: center;
  z-index: 1;
}

.honeycomb-cell__title {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  hyphens: auto;
  word-break: break-word;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  font-size: 1em;
  transition: opacity 350ms;
}

.honeycomb-cell__title > small {
  font-weight: 300;
  margin-top: 0.25em;
}

.honeycomb-cell__image {
  object-fit: cover;
  object-position: center;
}

.honeycomb-cell::before, .honeycomb-cell::after {
  content: '';
}

.honeycomb-cell::before, .honeycomb-cell::after, .honeycomb-cell__image {
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  display: block;
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
}

.honeycomb-cell::before {
  background: #fff; /* Cambia el color del borde hexagonal */
  transform: scale(1.055);
}

.honeycomb-cell::after {
  background: #02121f; /* Cambia el color del relleno hexagonal */
  opacity: 0.9;
  transition: opacity 350ms;
}

.honeycomb-cell:hover .honeycomb-cell__title {
  opacity: 0;
}

.honeycomb-cell:hover::before {
  background: #ccded2; /* Cambia el color del borde al hacer hover */
}

.honeycomb-cell:hover::after {
  opacity: 0;
}

/* Estilos para los distintos breakpoints, según lo proporcionado */

@media (max-width: 500px) {
  .honeycomb-cell {
    flex: 0 1 calc(50% - 20px); /* Ajusta el ancho en dispositivos móviles */
    max-width: calc(50% - 20px);
    height: 66px; /* Altura ajustada */
    margin: 10px; /* Ajusta según tus necesidades */
  }
}

.Illia{
  width: 100vw;
  height: 85vh;
  background-color:#e3b8b2;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  text-align: center;
  padding-top: 10vh;
  padding-bottom: 10vh;
  padding-right: 9vh;
}

ul {
  padding: 0.3rem;
  display: flex;
  list-style: none;
  justify-content:center;
  flex-wrap: wrap;
}

li {
  background-color: #e3b8b2;
  color: #e3b8b2;
  padding: 0.3rem;
}

.container {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 80px));
  grid-gap: 0.3rem;
  padding: 1rem;
  justify-content:center;
  box-shadow: 0 1px 1px #534240;
  align-items: center;
}

img {
  background-position: center;
  background-size: contain;
  max-height: 200px;
  max-width: 225px;
  box-shadow: 0 2px 10px #ad8681;
  cursor: pointer;
  transition: all 0.2s;
}

img:hover {
  box-shadow: none;
  transform: scale(1.1);
}

.futuro{
  width: 100vw;
  height: 85vh;
  margin: auto;
  padding-top: 10vh;
  padding-bottom: 5vh;
  align-items: center;
  justify-content: center;
  background-color: #a18093;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.infou{
  /*  alto y ancho */
  width: 80%;
  margin: auto;
  margin-top: 3%; /* margen externo para separar la info del titulo*/
  /* organizar el contenido */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;

}

.textou{
  /* ancho */
  width: 75%;
  padding-right: 3%; /* margen interno para separar el texto de la imagen */

  /* propiedades del texto*/
  font-size: 1.5rem; /* tamaño relativo */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #725365;
  text-align: left;
}

.foto{
  /* ancho */
  width: 55%;
}

.foto img {
  /* ancho */
  width: 100%; /* el total del tamaño dado a la div foto*/

  /* borde para la foto */
  border-radius: 10%;
  border: 10px #e3b8b2; 
}

.redes{
  width: 100vw;
  height: 85vh;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #80a18e;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  padding-top: 10vh;
  padding-bottom: 5vh;
}

.botones_redes{
  text-align: center;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.pie{
  width: 100vw;
  height: 10vh;
  background-color: rgb(245, 221, 187);
  /* fijar pie de pagina */
  position: fixed;
  bottom: 0vh;

}   