/*Propiedades GlobaleS*/
*{
    margin: 0%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*Encabezado*/
header{
    background-color: black;
    width: 100%;
    min-width: 560px;
    height: 100px;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

/*Side Menu*/
.sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background-color: black;
    transition: left 0.3s ease;
    z-index: 999;
}

.sidebar a {
    display: block;
    padding: 16px;
    text-decoration: none;
    color: white;
    transition: background-color 0.3s ease;
}

.sidebar a:hover {
    background-color: rgb(255, 204, 0);
    color: black;
}

.sidebar .logo {
    text-align: center;
    margin-bottom: 20px;
}

.sidebar .logo a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.sidebar .marca{
    width: 100px;
    height: 100px;
    margin-left: 26%;
    margin-bottom: 10px;
}

.sidebar .marca a{
    width: 100px;
    height: 100px;
    padding: 0;
    margin-left: 34%;
}

.sidebar .marca a:hover {
    background-color: black;
    color: black;
}

.sidebar .marca img{
    width: 100px;
    height: 100px;
}

.toggle-button {
    width: 100px;
    height: 100px;
    z-index: 1000;
    background-color: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    color: white;
    font-size: 40px;
}

@media screen and (min-width: 1399px) {
    .toggle-button{
        display: none;
    }
}

.toggle-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.toggle-button span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #fff;
    margin-bottom: 5px;
}

.toggle-button span:last-child {
    margin-bottom: 0;
}
/*Fin Side Menu*/

/*Menu bar*/
.logo{
    background-size: contain;
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
    margin-left: 10%;
}

@media screen and (max-width: 1399px) {
    .logo{
        margin-left: 0%;
    }
}

.logo img{
    width: 100%;
    height: 100%;
}

.menu{
    height: 100px;
    margin-left: 1%;
}

.botones{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.btn-menu{
    font-size: 20px;
    font-weight: bold;
    margin-top: 36px;
    margin-right: 18px;
    display: none;
}

@media screen and (min-width: 1400px) {
    .btn-menu{
        display: inline;
    }
}

.btn-menu a{
    color: white;
    text-decoration: none;
}

.btn-menu a:hover{
    color: rgb(255, 204, 0);
    transition: color .25s;
}
/*Fin Menu Bar*/

/*Barra Buscadora*/
.search-bar {
    display: flex;
    align-items: center;
    min-width: 350px;
    margin-left: auto;
    margin-right: 10%;
}

@media screen and (max-width: 1399px) {
    .search-bar{
        min-width: 50%;
    }
}

.search-input {
    flex-grow: 1;
    height: 40px;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
}

.search-button {
    background-color: rgb(255, 204, 0);
    color: #fff;
    border: none;
    padding: 10px;
    margin-left: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: rgba(255, 204, 0, 0.937);
}

.feather {
    display: inline-block;
    width: 37px;
    height: 37px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feather-search circle {
    fill: none;
    stroke: #fff;
}

.feather-search line {
    fill: none;
    stroke: #fff;
}
/*Fin Barra Buscadora*/

/*Decoración de sombreado*/
.sombreado{
    background-color: #EAECEE;
    width: 100%;
    height: 20px;
    margin-top: 90px;
    margin-bottom: 10px;
}
/*Fin Decoración de sombreado*/

/*Url Desplegable*/
.link{
    background-color: rgb(255, 204, 0);
    width: 100%;
    height: 3%;
}

.link img{
    margin-left: 10%;
    margin-left: 10%;
    width: 80%;
}

.desplegable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: whitesmoke;
    padding: 10px;
    margin-top: 10px;
    opacity: 0;
}

.desplegable.mostrar {
    max-height: 200px;
    opacity: 1;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.btn-toggle {
    background-image: url(/images/flecha-hacia-abajo-para-navegar.png);
    background-color: whitesmoke;
    background-size: cover;
    background-repeat: no-repeat;
    height: 40px;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 10%;
}
/*Fin Url Desplegable*/

/*Body*/
.body{
    background-color: whitesmoke;
    width: 100%;
    min-width: 560px;
    height: 3150px;
    padding-top: 10px;
}

/*Titulo*/
h1{
    font-size: 50px;
}

@media screen and (max-width: 605px) {
    h1{
        font-size: 40px;
    }
}

/*Video*/
.container-principal{
    background-color: whitesmoke;
    margin-left: 10%;
    margin-right: 10%;
}

/*PRIMERA SECCIÓN: NOVEDADES*/

h2{
    font-size: xx-large;
}

@media screen and (max-width: 605px) {
    h2{
        font-size: x-large;
    }
}

div.container-destacados{
    display: flex;
    width: 100%;
    height: 600px;
    margin-left: auto;
    margin-right: auto;
}

/*NOVEDAD 1*/
div.new-1{
    width: 700%;
    height: 600px;
    overflow: hidden;
}

div.new-1 ul{
    display: flex;
    padding: 0;
    animation: cambio 20s infinite;
    animation-direction: normal;
    animation-timing-function: ease-in;
}

div.new-1 li{
    list-style: none;
}

div.new-1 img{
    width: 100%;
    height: 600px;
}

/*NOVEDAD 2*/
div.new-2{
    width: 100%;
    height: 600px;
    overflow: hidden;
}

div.new-2 ul{
    display: flex;
    padding: 0;
    animation: cambio 25s infinite;
    animation-direction: normal;
    animation-timing-function: ease-in;
}

div.new-2 li{
    list-style: none;
}

div.new-2 img{
    width: 1200px;
    height: 600px;
}

@keyframes cambio{
    /*Imagen 1*/
    0%{margin-left: 0;}
    13%{margin-left: 0;}
    /*Imagen 2*/
    14%{margin-left: -100%;}
    27%{margin-left: -100%;}
    /*Imagen 3*/
    28%{margin-left: -200%;}
    41%{margin-left: -200%;}
    /*Imagen 4*/
    42%{margin-left: -300%;}
    55%{margin-left: -300%;}
    /*Imagen 5*/
    56%{margin-left: -400%;}
    69%{margin-left: -400%;}
    /*Imagen 6*/
    70%{margin-left: -500%;}
    83%{margin-left: -500%;}
    /*Imagen 7*/
    84%{margin-left: -600%;}
    100%{margin-left: -600%;}
}

h2.segundo{
    margin-top: 25px;
}

/*botón 2: acceso a manuales*/
div.manuales{
    position: relative;
    background-image: url(/images/6manual.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 850px;
    display: flex;
}

@media screen and (max-width: 1299px) {
    div.manuales{
        height: 550px;
    }
}

@media screen and (max-width: 849px) {
    div.manuales{
        height: 350px;
    }
}

/*Footer*/
div.footer{
    background-color: #EAECEE;
    width: 100%;
    height: 560px;
    padding-top: 25px;
}

@media screen and (min-width: 1110px) {
    div.footer{
        height: 430px;
    }
}

/*Subtitulo Footer*/
h2.titulo-footer{
    margin-left: 10%;
    margin-right: 10%;
}

/*Contenido Footer*/
.container-footer{
    display: flex;
    align-content: space-around;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
}

@media screen and (max-width: 1110px) {
    .container-footer{
        display: block;
    }
}

/*Información*/
ul.lista-contacto{
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 0%;
    list-style: none;
    font-size: large;
    overflow: auto;
}

/*Mapa*/
div.mapa{
    width: 448px;
    height: 300px;
    margin-top: 15px;
    margin-left: 0%;
    margin-bottom: 15px;
}

@media screen and (min-width: 1111px) {
    div.mapa{
        margin-left: auto;
    }
}

@media screen and (min-width: 660px) and (max-width: 1110px) {
    div.mapa{
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
    }

    ul.lista-contacto{
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
    }

    h2.titulo-footer{
        width: 60%;
        margin-left: 18%;
        margin-right: 20%;
    }
}
/*Fin Contenido Footer*/

/*PRUEBAS*/
.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-container {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.slide {
    flex: 0 0 100%;
}

.slide img {
    width: 100%;
    height: auto;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    text-decoration: none;
    user-select: none;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/*Segundo Slider*/

.slider2 {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-container2 {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.slide2 {
    flex: 0 0 100%;
}

.slide2 img {
    width: 100%;
    height: auto;
}

.prev2,
.next2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    text-decoration: none;
    user-select: none;
}

.prev2 {
    left: 10px;
}

.next2 {
    right: 10px;
}