
* {
    padding: 0;
    margin: 0;
  }
  
  /* Estilos generales del cuerpo del documento */
  body {
    align-items: center;
    justify-content: center;
    padding: 0px;
    cursor: url("img/mouse.png"), auto;
  }
  
  /* BARRA NAVEGACION MENU */
  .menunavegacion .img1   {
    margin-top: 20px;
    margin-right: 20px;
    margin-left: 20px;
    width: 70px;
    text-decoration: none;
  }
  a{
    text-decoration: none;
  }
  
  .menunavegacion ul {
    list-style: none; 
    background: rgb(27, 27, 27);
    position: fixed;
    width: 100%;
    z-index: 999;
  }
  
  .menunavegacion ul li {
    display: inline-block;
    position: relative;
    top: -20px;
  }
  
  .menunavegacion ul li a {
    display: block;
    padding: 20px 25px;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    margin-bottom: -10px;
  }
  
  .menunavegacion ul li ul.menudesp li {
    display: block;
    top: -10px;
  }
  
  .menunavegacion ul >li > ul.menudesp {
    width: 100%;
    background: rgb(26, 26, 26);
    position: absolute;
    display: none;
  }
  
  .menunavegacion ul li a:hover {
    background: rgb(20, 20, 20);
    color: red;
    border-radius: 25px;
  }
  
  .menunavegacion ul li:hover ul.menudesp {
    position: absolute;
    display: block;
    top: 77px;
  }
  
  /* Estilo de la transición */
  .seccion {
    transition: background-color 0.5s ease;
    height: 100vh;
    display: flex;
    font-size: 24px;
    padding: 0px;
    position: relative; /* Añadir posición relativa */
  }
  
  /* Estilo específico de la sección 1 */
  #seccion1 {
    background-color: #ffffff;
  }
  
  
  #seccion3 {
    background-color: #2c2b2b;
    height: 250px;
  }
  
  
  /* PRESENTACION*/
  
  .imagen-texto-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .imagen-fondo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .texto .hola {
    position: absolute;
    top: 10%;
    left: 50%;
    margin-top: 20%;
    font-size: 100px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    transform: translateX(-50%);
    z-index: 1;
    color: #b6b6b6;
    text-shadow: 
        -2px -2px 0 #000000,
        2px -2px 0 #000000,
        2px 2px 0 #000000,
        -2px 2px 0 #000000
  }
  
  .texto .hola2 {
    position: absolute;
    top: 10%;
    left: 50%;
    margin-top: 20%;
    font-size: 100px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    transform: translateX(-50%);
    z-index: 1;
    color: rgb(19, 27, 53);
    animation: shift 3s ease-in-out infinite;
  }
  
  @keyframes shift {
    0%, 100% {
        clip-path: polygon(0% 27%, 10% 48%, 33% 54%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
    }
    50% {
        clip-path: polygon(0% 60%, 15% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
    }
  }
  /* SEPARACION ESPACIO*/
  .space2{
    height: 20px;
    background-color: #2c2b2b;
  }
  
  /* PARALLAX*/
  
  .parallax{
    position: relative;
    overflow: hidden;
  }
  
  .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/parallaxstory.jpeg'); /* Ruta de tu imagen de fondo */
    transform: translate3d(0, 0, 0);
    z-index: 0;
  }
  
  .parallax-content {
    position: relative;
    z-index: 1;
  }

  /* STORY */
  .cuadro {
    display: flex;
    justify-content: center;
    color: rgb(0, 0, 0);
 }
 
 .cuadro h2 {
    font-size: 40px;
    text-transform: uppercase;
 }
 
 
 .cuadro-content {
    justify-content: space-between;
    margin-top: 15vh;
 }
 
 
 /* DERECHA IMAGEN*/
 
 .cuadro-1-img{
    padding-top: 30px;
    position: absolute;
    margin-left: -22%;
    height: 360px;
 }
 
 
 .cuadro-1 {
    height: 350px;
    width: 400px;
    position: relative;
    margin-left: 105%;
    background-image: url(img/marco.png);
    background-size: contain;
 }
 
 /* Texto*/
 
 .cuadro-1-1{
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-top: 15px;
 }
 
 .cuadro-1-1-1 {
    text-align: center;
    color: #654f42;
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 5px;
  }

  .cuadro-1-1-2 {
    text-align: justify;
    color: #654f42;
    font-size: 18px;
  }

  /* IZQUIERDA IMAGEN */

.cuadro-2-img{
    padding-top: 30px;
    position: absolute;
    margin-left: -8.3%;
    height: 360px;
 }
 
 .cuadro-2 {
    height: 350px;
    width: 400px;
    position: relative;
    background-image: url(img/marco.png);
    margin-left: -105.8%;
    background-size: contain;
 }
 /* ESPACIO ENTRE CUADROS */
.cuadrospace{
  height: 100px;
}




  /* INVENTARIO */
  
  .container {
    text-align: center;
  }
  
  .cajas{
    margin-left: 17.5%;
    justify-content: center;
    height: 450px;
    display: flex;
    width: 65%;
  }
  
  .caja{
    width: 50%;
    padding-bottom: 150px;
    align-self: flex-end;
    color: #0f1923;
  }
  
  .cajas2{
    width: 50%;
    padding-bottom: 150px;
    text-align: center;
    align-self: flex-end;
    justify-content: flex-end;
    display: flex;
  }
  
  .cajatexto{
    font-size: 70px;
    font-weight: bold;
    text-shadow: -1px -1px 0 #ffffff,  
    1px -1px 0 #ffffff,
    -1px 1px 0 #ffffff,
    1px 1px 0 #ffffff; /* Sombras para simular el borde */
  }
  
  #my-select{
    display: none;
  }
  
  .custom-select {
    position: relative;
    width: 320px;
    text-align: center;
  }
  
  .select-styled {
    font-weight: bold;
    border: 3px solid #31312f;
    display: block;
    padding: 20px;
    cursor: pointer;
    font-size: 15px;
    color: #0f1923;
    background-color: rgb(255, 255, 255, 0.4);
  }
  
  .select-options {
    font-weight: bold;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 3px solid #31312f;
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    background-color: rgb(255, 255, 255, 0.4);
  }
  
  .select-options li {
    color: black;
    font-size: 15px;
    padding: 10px;
    cursor: pointer; /* Agregamos esta línea para hacer las opciones clicables */
  }
  
  .select-options li:hover {
    background-color: #0f1923;
    color: #ffffff;;
  }
  
  #arrow-icon {
    width: 20px; /* ajusta el tamaño de la imagen según tu diseño */
    height: auto;
    position: absolute; /* posiciona absolutamente la imagen dentro del contenedor */
    top: 34%; /* coloca la imagen en la mitad superior del contenedor */
    right: 80px; /* ajusta la distancia desde el borde derecho del contenedor */
    transition: transform 0.3s; /* agrega una transición suave */
    z-index: 999999999999; /* asegura que la imagen esté por encima de otros elementos */
  }
  
  
  
  .select-options.active {
    display: block; /* muestre las opciones cuando la clase active esté presente */
  }
  

  
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .space{
    height: 200px;
  }
  
  
  
  /* SCROLL HACIA ARRIBA*/
  #btnScrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    display: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    z-index: 999; /* Asegura que el botón esté por encima de otros elementos */
  }
  
  #btnScrollToTop:hover {
    background-color: #555;
  }
  
  /* FOOTER */
  
  .textcopy {
    position: absolute;
    bottom: 160px;
    margin-left: 200px;
    margin-right: 700px;
    margin-bottom: -50px;
    font-size: 13px;
    color:gray;
    text-justify: auto;
  }
  
  .privacity {
    position: absolute;
    bottom: 100px;
    margin-left: 200px;
    margin-bottom: -50px;
    font-size: 13px;
    color:gray;
    cursor: pointer;
  }
  
  
  .LogoContenedor {
    position: relative;
    width: 50px; /* Ajusta el tamaño según tus necesidades */
    height: 50px; /* Ajusta el tamaño según tus necesidades */
    overflow: hidden; /* Oculta cualquier parte de la imagen que sobresalga del contenedor */
    left: 1600px;
    bottom: -150px;
  
  }
  
  .LogoNormal {
    height: 50px;
  }
  
  .LogoHover {
    display: none;
    position: absolute;
    height: 50px;
    top: 0;
    left: 0;
  }
  
  
  .LogoLS:hover .LogoHover {
    display: block;
  }
  
  .LogoLS:hover .LogoNormal {
    display: none;
  }
  