*{  /* --- PARAMETROS PARA TODA LA PAGINA --- */
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    box-sizing: border-box;
    -webkit-user-drag: none;
}
::selection {
  background-color: #FFC02F;
  color: #191919;
}
    /* --- SCROLL --- */
::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background-color: #191919;
  }

::-webkit-scrollbar-thumb {
    display: none;
    background-color: white;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #FFC02F;
}
/* Inicialmente, el scrollbar thumb no se muestra */
.no-thumb::-webkit-scrollbar-thumb {
  display: none;
}

/* Cuando queremos mostrar el thumb */
.thumb-visible::-webkit-scrollbar-thumb {
  display: block;
}

    /* --- GENERAL --- */ 
body {
  font-family:"Montserrat", sans-serif;
  text-align: center;
  background-color:#191919;
  width: 100%;
  height: auto;  /*para que no se vea lo negro, en la extension dark*/
  margin: 0; 
  padding: 0;
  overflow-x:hidden;
}

@font-face {
  font-family: fuenteLetra;
  src: url('BurgerFree.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/*cabeza del navbar*/
.head {
  position: fixed; 
  z-index: 9999;
}

/*secciones*/
section {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 150px;
}

a{ 
  text-decoration: none;
  user-select:none;
  text-transform: uppercase;
}

/** NAVEGADOR DE ARRIBA **/
.navbar {
  position: fixed;
  right: 0; /* Ancla la barra a la esquina superior derecha */
  margin: 20px;
  text-align: center;
  }
.navbar a{
  display: inline-block; /* Asegura que los botones se comporten como bloques en línea */
  padding: 10px 15px;
  width: 180px; /* Ancho fijo del botón 180*/
  line-height: 1; /* Ajusta la altura de la línea para que el texto no cambie el tamaño del botón */
}

/*botones en general*/
.btn {
  font-family: fuenteLetra;
  font-size: 24px; /*Tamaño Letra BOTONES*/
  color: #191919;
  background-color: #FFC02F; 
  transition: transform 0.1s ease-in-out;
  border-radius: 5px;
  cursor: pointer;
}

.btn::after {
  content: ''; /* Crear contenido vacío */
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px; /* Grosor del subrayado */
  background-color: #FFC02F; 
  border-radius: 5px;
  transform: scaleX(0); /* Empieza oculto */
  transform-origin: bottom right; /* El subrayado se extiende desde la derecha */
  transition: transform 0.3s ease-in-out; /* Animación */
}

.btn:hover {
  transform: scale(1.06);
  color: #FFC02F;
  background-color: #191919; 
}
.btn:hover::after {
  transform: scaleX(1); /* El subrayado se expande completamente al hacer hover */
  transform-origin: bottom left; /* Cambia el origen a la izquierda */
}

.btn.active {
  transform: scale(1.06);
  color: #FFC02F;
  background-color: #191919;
}

/* PESTAÑA DESPEGABLE */
.open_submenu{
  display: flex; /* Asegura que los elementos dentro de open_submenu estén en fila */
  justify-content: center; /* Centra los elementos en la fila */
  width: 100%;

}

.submenu {
  position: absolute;
  top: 100%;
  max-height: 0;
  overflow: hidden; /* Asegura que los elementos ocultos no sean visibles */
  transition: max-height 0.5s ease-in-out;
}

.submenu.show {
  max-height: 300px;
}

.submenu ul {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.submenu ul li {
  position: relative;
  display: block;
  width: 100%;
}

.submenu ul li a {
  width: 100%;
}

.btnTab {
  display: block;
  position: relative;
  width: 100%;
  color: #ffffff;
  background-color: #191919;
  font-family: fuenteLetra;
  font-size: 19px;
  transition: transform 0.1s ease-in-out;
  box-sizing: border-box;
  border-radius: 5px;
  white-space: nowrap;
  margin-top: 4%; /*separacion openSubmenu y Submenu*/
}

.btnTab::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #FFC02F;
  border-radius: 5px;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-in-out;
}

.btnTab:hover {
  color: #FFC02F;
}

.btnTab:hover::after {
  transform: scaleX(1);
}

.fa-solid.fa-map-marker-alt {
  color: #ffffff;
  margin-right: 10px;
}

.btnTab:hover .fa-solid.fa-map-marker-alt {
  color: #FFC02F;
}
    /* --- NAVEGADOR --- */
/* STICKER */
.sticker {
  position:absolute;
  z-index: 10;
  cursor: grab;
  width: fit-content;
  height: fit-content;
}
.sticker img {
  width: 100%;
  height: auto;
}
/*logo inicio*/
.sticker1 { top: 80px; left: 4vw;}
.sticker1 img { width: 160px; }

/*qr inicio*/
.sticker5 { top: 600px; left: 76vw;}
.sticker5 img { width: 140px; }

/*cerca caja hamburguesa*/
.sticker7 { top: 1140px; left: 55vw;}
.sticker7 img { width: 350px; }

/*triangulo*/
.sticker3 { top: 1400px;  left: 13vw;}
.sticker3 img { width: 150px; }

/*circulo*/
.sticker2 { top: 2000px; left: 11vw;}
.sticker2 img { width: 180px; }

/*the house entremedio*/
.sticker8 { top: 1830px;  left: 65vw;}
.sticker8 img { width: 400px; }

/*the house final*/
.sticker6 { top: 2540px; left: 10vw;}
.sticker6 img { width: 300px; }

/*qr black*/
.sticker4 { top: 2590px; left: 78vw;}
.sticker4 img { width: 120px; }


/*VIDEO FONDO PAGINA*/
.videoFondo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0.05;
  pointer-events: none;
}

    /* --- ENCABEZADO --- */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw; /* Ocupa el 100% del ancho de la pantalla */
    height: 100vh; /* Ocupa el 100% de la altura de la pantalla */
    margin: 0;
    padding: 0;
    position:absolute;
    z-index:1; /*para que este encima de las secciones*/
  }

  .titleheader {
    display: flex;
    width: 100%; /* Para el Celular */
    max-width: 900px; /* Tamaño General */
    position: absolute;
    align-items: center;
    user-select: none;
    justify-content: center;
  }
  svg {
    width: 100%;
    height: auto; /* O un tamaño específico */
  }
  
  /** SVG titleHeader **/
 .container{
  fill: transparent;
  opacity: 0;
 }
 .letra-O, .subrayado,.logoBurger {
  fill: #ffc02f;
  pointer-events: none;
  }
  .letra-t, .letra-h, .letra-e, .letra-H, .letra-U, .letra-S, .letra-E {
    fill: #fff;
    pointer-events: none;
  }
 /*suavidad*/
 .container-h .letra-h, .container-H .letra-H, .container-U .letra-U, .container-S .letra-S,
 .container-E .letra-E, .container-subrayado .subrayado, .container-t .letra-t, .container-e .letra-e,
 .container-O .letra-O, .container-logoBurger .logoBurger{
  transition: transform 0.1s ease-in-out;
  }

 /*animacion letras*/
 .container-h:hover .letra-h, .container-H:hover .letra-H, .container-U:hover .letra-U, .container-S:hover .letra-S,
 .container-E:hover .letra-E, .container-subrayado:hover .subrayado{
    transform: translateY(18px);
  }
  .container-t:hover .letra-t, .container-e:hover .letra-e,
  .container-O:hover .letra-O, .container-logoBurger:hover .logoBurger{
   transform: translateY(-18px);
  }

/* Define la animación de entrada */
@keyframes slideFadeRightIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* Define la animación de salida */
@keyframes slideFadeRightOut {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}

/* ICONOS de redes sociales IZQUIERDA */
.socialBar {
  position: fixed;
  left: 0;
  top: 35%;
  z-index: 9999;
  opacity: 0;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}
.socialBar.active{
  animation-name: slideFadeRightIn;
}

.socialBar.hidden{
  animation-name: slideFadeRightOut;
}

#instagram a,#facebook a,#whatsapp a{
  display: block;
  text-align: center;
  padding: 15px 15px;
  color:white;
  font-size: 30px;
  width: 70px;
  transition: .1s ease-out;
  border-top-right-radius: 5px; /* Redondea la esquina superior derecha */
  border-bottom-right-radius: 5px; /* Redondea la esquina inferior derecha */
}

#instagram a:hover,#facebook a:hover,#whatsapp a:hover{
  background: #FFC02F;
  color: #191919;
  padding: 15px 45px;
}

/*ICONOS de redes sociales ARRIBA*/
.logos {  
    display: flex;
    margin-top: 350px;
    z-index: 1;
    }

    /*propiedades de los letras */
    .item .fa-instagram,
    .item .fa-facebook,
    .item .fa-whatsapp{
    font-size: 35px; /*Tamaño Iconos*/
    color:#ffffff;
    margin-inline: 10px; 
    transition: transform 0.1s ease-in-out;
    }

    /*al pasar el mouse cambian de color*/
    .item .fa-instagram:hover,
    .item .fa-facebook:hover,
    .item .fa-whatsapp:hover{
    color: #FFC02F;
    transform:rotate(180deg);
    transition: transform 0.1s ease-in-out, color 0.1s ease-out;
    }

 /* --- COMENTARIOS INSTAGRAM --- */
 .image-container { /*Contenedor CAJA y COMENTARIOS*/
  display: flex; /* Usamos flexbox en lugar de grid */
  justify-content: center; /* Centra todo el contenido horizontalmente */
  align-items: center; /* Centra el contenido verticalmente */
  margin-top: 80vh;
}

.left-images, .right-images {
  display: none;
  position: absolute; /* Los coloca sobre la imagen central */
  flex-direction: column; /* Organiza los elementos en una columna */
  justify-content: center; /* Centra todo el contenido horizontalmente */
  align-items: center; /* Centra el contenido verticalmente */
  width: 20%; /*TAMAÑO DE LOS COMENTARIOS*/
  z-index:1;
}
.left-images {
  left: 6%; /* Coloca este contenedor en la parte izquierda */
}
.right-images {
  right: 7%; /* Coloca este contenedor en la parte derecha */
}

.left-images img, .right-images img {
  width: 100%;  /* La imagen cubre todo el ancho del contenedor */
  height: auto; /* Mantén la proporción de las imágenes */
  border-radius: 20px;
  transition: transform 0.1s ease-in-out;
}

.left-images img:hover, .right-images img:hover {
  transform: scale(115%);
  filter: brightness(130%);
}

.left-images div, .right-images div {
  width: 100%;  
  margin-bottom: 30px; 
}

#comment1{margin-left: 300px;}
#comment2{margin-left: 200px;}
#comment3{margin-left: 100px;}
#comment4{margin-left: 0px;}

#comment5{margin-right: 300px;}
#comment6{margin-right: 200px;}
#comment7{margin-right: 100px;}
#comment8{margin-right: 0px;}

.right-images img {
  margin-left: 45px;
}

/* Caja Hamburguesa */
  .burgerImg {
    position: relative;
    user-select: none;
    width: 100%; 
    height: auto; 
  }

  .burgerImg img {
    width: 70%; /* Ajusta el tamaño de la imagen a 100% del contenedor */
    height: auto; /* Mantiene la relación de aspecto */
    transition: transform 0.2s ease-in-out;
  }

  .burgerImg img:hover {
    cursor: pointer;
    transform: scale(1.05);
  }

  .burgerImg img:active {
    transform: scale(1);
  }

  /* ANIMACIONES COMENTARIOS*/
   /*Fade de la derecha a la izquierda*/
  .fade-right {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInRight 0.5s ease-out forwards;
  }
  @keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
  }  
  .fade-right:nth-child(1) {
    animation-delay: 0.3s; /* Puedes ajustar el delay para cada imagen */
  }
  .fade-right:nth-child(2) {
    animation-delay: 0.4s;
  }
  .fade-right:nth-child(3) {
    animation-delay: 0.5s;
  }
  .fade-right:nth-child(4) {
    animation-delay: 0.6s;
  }
  /*Fade de la izquierda a la derecha*/
  .fade-left {
    opacity: 0;
    transform: translateX(50px); /* Mover hacia la izquierda */
    animation: fadeInLeft 0.5s ease-out forwards;
  }
  @keyframes fadeInLeft {
      0% { opacity: 0; transform: translateX(50px); }
      100% { opacity: 1; transform: translateX(0); }
  }
  .fade-left:nth-child(1) {
      animation-delay: 0.3s; /* Puedes ajustar el delay para cada imagen */
  }
  .fade-left:nth-child(2) {
      animation-delay: 0.4s;
  }
  .fade-left:nth-child(3) {
      animation-delay: 0.5s;
  }
  .fade-left:nth-child(4) {
      animation-delay: 0.6s;
  }

  /** GALERIA IMAGENES O REELS**/
  .galeria {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centra los elementos en la fila */
    gap: 30px; /* Espaciado entre los elementos */
    z-index: 1; /* Asegura que la galería esté por encima del video */
  }
  
  .imageTheHouse, .videoReels {
    position: relative;
    flex: 1 1 calc(25% - 20px); /* Establece un ancho flexible para cada imagen */
    max-width: 300px; /* Limita el tamaño máximo de cada imagen */
    display: flex;
    justify-content: center; /* Centra la imagen dentro de su contenedor */
  }
  
  .imageTheHouse img, .videoReels video{
    width: 100%; /* Hace que la imagen ocupe todo el ancho disponible en su contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
    border-radius: 5px;
    transition: transform 0.1s ease-in-out;
  }
  
  .videoJS {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    border-radius: 5px;
  }
  
  .imageTheHouse:hover .videoJS {
    opacity: 1;
  }
  
  .imageTheHouse:hover img {
    opacity: 0;
  }
  
  @media (max-width: 768px) {
    .imageTheHouse, .videoReels {
      flex: 1 1 calc(50% - 20px); /* En pantallas más pequeñas, las imágenes ocupan el 50% del ancho */
    }
  }
  
  @media (max-width: 480px) {
    .imageTheHouse, .videoReels {
      flex: 1 1 100%; /* En pantallas muy pequeñas, las imágenes ocupan todo el ancho */
    }
  }
                             /* --- TABLET --- */
@media (max-width: 1024px) {
  .navbar a {
    width: 380px; /* Ancho fijo del botón */
    padding: 30px 30px;
  }
  .btn{
    font-size: 50px;
  }
  .btnTab {
    font-size: 45px;
    }
    
  .logos {  
    margin-top: 400px;
  }

  .item .fa-instagram,
  .item .fa-facebook,
  .item .fa-whatsapp{
  font-size: 60px; /*Tamaño Iconos*/
  }
   /*sacar comentarios*/
   #comment1, #comment2, #comment3, #comment4,
   #comment5, #comment6, #comment7, #comment8 
   {display: none;}
 
   .socialBar{
     display:none;
   }

  .image-container { /*Contenedor CAJA y COMENTARIOS*/
    height: 1200px; 
    width: 100vw;
    margin-top: 60vh;
    overflow: hidden; /*corta la imagen*/
  }

  .burgerImg img {
    display: flex; /* Evita espacios extra */
    justify-content: center;
    align-items: center;
    width: 100vw; /*ancho de pantalla*/
    height: auto;
    transform: scale(1.8); /*Tamaño Imagen*/
  }
  .burgerImg img:hover {
    transform: scale(1.8);
  }
  .burgerImg img:active {
    transform: scale(1.9);
  }

  .galeria {
    gap: 80px; /* Espaciado entre los elementos */
  }
}

                              /* CELULAR*/
  @media (max-width: 480px) {
    .navbar a {
      width: 215px; /* Ancho fijo del botón */
      padding: 15px 15px;
    }
    .btn{
      font-size: 24px;
    }
    .btnTab {
      font-size: 23px;
      }
    .logos {  
      margin-top: 230px;
    }
    .item .fa-instagram,
    .item .fa-facebook,
    .item .fa-whatsapp{
    font-size: 35px; /*Tamaño Iconos*/
    }

/*logo inicio*/
.sticker1 {top: 30px; left: 5vw;}
.sticker1 img {width: 120px;}

/*qr inicio*/
.sticker5 {top: 600px; left: 38vw;}
.sticker5 img {width: 100px;}

/*cerca caja hamburguesa*/
.sticker7 {top: 1250px; left: 20vw;}
.sticker7 img {width: 240px;}

/*triangulo*/
.sticker3 {top: 1875px; left: 5vw;}
.sticker3 img {width: 130px;}

/*circulo*/
.sticker2 {top: 2510px; left: 3vw;}
.sticker2 img {width: 130px;}

/*the house entremedio*/
.sticker8 {top: 3160px; left: 20vw;}
.sticker8 img {width: 240px;}

/*the house final*/
.sticker6 {top: 3785px; left: 25vw;}
.sticker6 img {width: 200px;}

/*qr black*/
.sticker4 {top: 4980px; left: 38vw;}
.sticker4 img {width: 90px;}


  .image-container { /*Contenedor CAJA y COMENTARIOS*/
    height: 480px;
    width: 100vw;
    margin-top: 90vh;
    overflow: hidden; /*corta la imagen*/
  }

  .burgerImg img {
    display: flex; /* Evita espacios extra */
    justify-content: center;
    align-items: center;
    width: 100vw; /*ancho de pantalla*/
    height: auto;
    transform: scale(1.8); /*Tamaño Imagen*/
  }

  footer{
    flex-direction:column;
  }

  footer.bottom {
    gap: 16px;
    flex-direction: column-reverse;
  }
}

/* OTROS TAMAÑOS */
  @media (max-width: 480px){
  
  footer{
      text-align:center;
      align-items: center;
  }
  footer.top .links{
      grid-template-columns:1fr;
  }
  footer.bottom{
      align-items: center;
  }
  footer .legal > span{
      display: block;
      margin-right: 0;
      margin-bottom: 2px;
  }
}

/* --- FOOTER --- */
footer {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin: 0 30px;
  color: #FFC02F;
}

footer.top {
  border-bottom: 1px solid white;
  padding-bottom: 15px;
}

footer.top img {
  width: 30px;
  height: auto;
  user-select:none;
}

footer.bottom {
  padding: 20px 0;
  justify-content: center;
}

footer.links > div {
  display: grid;
  gap: 10px;
  margin-bottom: 30px; 
}

footer .legal {
  font-size: 14px;   
}

footer .legal > a {
  margin: 0 4px; 
}

footer.bottom .links {
  display: flex;
  gap: 18px;
}

footer.bottom .links > a {
  font-size: 24px;
}