
/* parametros iniciales */ 

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

.general{
  background-color:#F6E9E6;
  width: 100vw;
  min-height: 100vh;
}

.cabecera{
  width: 100%;
  height: 12vh;
  background-color:#B69D8F;
  text-align: center;
  position: fixed;
  top: 0;
  z-index: 10;
}

.botonera{
  width: 80vw;
  height: 10vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin:auto;
}

button {
  background: #EDD6C9;
  border: none;
  padding: 10px 20px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  width: 120px;
  text-transform: uppercase;
  cursor: pointer;
  transform: skew(-21deg);
}

span {
  display: inline-block;
  transform: skew(21deg);
}

button::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  left: 0;
  background: rgb(20, 20, 20);
  opacity: 0;
  z-index: -1;
  transition: all 0.5s;
}

button:hover {
  color: #fff;
}

button:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
}

.pie_pagina{
  width: 100%;
  height: 3vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #B69D8F;
  text-align: center;
  /* Para fijar el pie de pagina */
  position: fixed;
  bottom: 0;
}

.principal{
  width: 90vw;
  margin: auto;
  margin-top: 12vh;
  margin-bottom: 3vh;
  height: 100vh;
  padding-top: 12vh;
  display: flex;
  flex-wrap: wrap;
}

.presentacion{
  color:white;
  width: 100%;
  height: 100%;
  background-color:#E4C9B6;
}

.titulo{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-align: center;
}

.conociendome{
  color:white;
  width: 100%;
  z-index: index 5;
  min-height: 87vh; /* altura disponible */

  background-image:url("https://i.pinimg.com/564x/c2/11/3a/c2113ae476ddc88a3b103360511670d4.jpg");
  background-size: cover;
}
/* Estilo para las preguntas */
.pregunta {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 24px;
    color: #333;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  /* Estilo para el contenedor de la pregunta */
  .respuesta {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }
  


.illia{
  color:white;
  width: 100%;
  height: fit-content;
  font-size: 1.2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  background-color: lightgray;
}
.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: black;
  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: white;
}
.container .box .details .content p
{
  margin: 10px 0 0;
  padding: 0;
}

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


.futuro{
  color:white;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  justify-content: center;
  font-size: 2rem;
  text-align: center;
  background-color:#b48fb6 ;
}

.img_fm{
  width: 500px;
  height: auto;
  display: none;
}
.img_mv{
  width: auto;
  height: 500px;
  display: none;
}

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

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



.contactos{
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:antiquewhite;
    min-height: 99vh;
    background-color: #bfd79a;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 150%;
    align-items: center;
    justify-content: center;
    }


