* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #2c2b2b;
    align-items: center;
    justify-content: center;
    padding: 0px;
    cursor: url('img/mouse.png'), auto;
}

a {
    text-decoration: none;
}

/* CONTENEDOR SLIDER */

video {
    position: fixed;
    top: -220px;
    right: 0;
    left: 0;
    bottom: 0;
    width: 1950px;
    transform: translate(calc(100% - 100vw) / 2);
    z-index: -2;
}

.seccion .ContenedorSlider { 
    position: absolute;
    width: 1920px;
    height: 870px;
    background-color: #000000;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0);
    overflow: hidden;
    top: 9.1%;
}

.imagenpos {
    width: 1000%;
    height: 130%;
    display: flex;
}

.slider-section {
    width: calc(100% / 10);
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: scale(0.8);
}

.slider-section.active {
    opacity: 1;
    transform: scale(1);
}

.slider-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-left,
.btn-right {
    display: flex;
    position: absolute;
    top: 50%;
    font-size: 4.5rem;
    background-color: transparent;
    border-radius: 50%;
    padding: 5px;
    font-weight: 600;
    cursor: pointer;
    color: #ffffff81;
    transform: translate(0,-50%);
    transition: .45s ease;
    user-select: none;
}

.btn-left:hover,
.btn-right:hover {
    background-color: #333333d4;
    color: #fff;
}

.btn-left {
    left: 10px;
}

.btn-right {
    right: 10px;
}

.img1   {
    margin-top: 20px;
    margin-right: 20px;
    margin-left: 20px;
    width: 50px;
}

/* BARRA DE NAVEGACION */

ul {
    list-style: none; 
    background: rgb(27, 27, 27);
    position: fixed;
    width: 100%;
    z-index: 1;
}

ul li {
    display: inline-block;
    position: relative;
    top: -20px;
}

ul li a {
    display: block;
    padding: 20px 25px;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    margin-bottom: -10px;
}

ul li ul.menudesp li {
    display: block;
    top: -10px;
}

ul > li > ul.menudesp {
    width: 100%;
    background: rgb(26, 26, 26);
    position: absolute;
    display: none;
}

ul li a:hover {
    background: rgb(20, 20, 20);
    color: red;
    border-radius: 25px;
}

ul li:hover ul.menudesp {
    position: absolute;
    display: block;
    top: 78.8px;
}

/* SECCIONES */

.seccion {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    transition: background-color 1s ease;
}

#home {
    background-color: #f0f0f0;
    height: 250px;
}

#legacy {
    background-color: #2c2b2b;
}

.logofoot {
    position: absolute;
    bottom: -200px;
    left: 0px;
}

/* BOTON PARA 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;
}

#btnScrollToTop:hover {
    background-color: #555;
}

/* FOOTER */


.textcopy {
    position: absolute;
    bottom: -120px;
    margin-left: -700px;
    margin-right: 750px;
    margin-top: -50px;
    font-size: 13px;
    color:gray;
    text-justify: auto;
}

.privacity {
    position: absolute;
    bottom: -160px;
    left: 236px;
    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: 600px;
    bottom: -350px;
}

.LogoNormal {
    height: 50px;
}
  
.LogoHover {
    display: none;
    position: absolute;
    height: 50px;
    top: 0;
    left: 0;
}

  
.LogoLS:hover .LogoHover {
    display: block;
}
  
.LogoLS:hover .LogoNormal {
    display: none;
}
