@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --negro: #141414;
    --blanco:#FFFFFF;
    --gris:#999999;
    --gris_clar:#CCCCCC;
    --naranja: #EAC11C;
    --rojo: #ff0c0c;
    
    scroll-behavior: smooth;  /* suaviza los desplazamienos */
    scrollbar-width: none;
}


 .material-symbols-outlined {
     color: var(--gris);

     cursor: pointer;
     transition: .3s all ease-in-out;
 }

.material-symbols-outlined:hover {
    color: var(--blanco);
    transform: scale(1.5);
}


a {
    text-decoration: none;
    color: var(--gris_clar);
    transition: .3s all ease-in-out;

}
a:hover {
    color: var(--blanco);
}

html {
    scroll-behavior: smooth;  /* suaviza los desplazamienos */
    font-family: "Poppins", sans-serif;
    transition: .5s all ease-in-out;
}


body {
    background-color: var(--negro);
    color: var(--gris);
    margin: 0;
}

.portada {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;


    .foto {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        z-index: 1;
    }

    .nav {
        position: fixed;
        width: 100%;
        height: 55px;
        top: 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        z-index: 90;
        .item_nav {
            width: 400px;
            display: flex;
            flex-direction: row;
            justify-content: space-evenly;
            gap: 10px;
            align-items: center;
        }
        .nav_logo{
            width: 200px;
        }

        .visible {
            display: block;
        }
        .oculto {
            display: none;
        }
        .icon {
            width: 25px;
            height: auto;
            cursor: pointer;
            opacity: .8;
        }
        .icon:hover {
            opacity: 1;
        }

    }

}

.menu {
    position: fixed;
    z-index: 10;
    width: 800px;
    height: 300px;
    bottom: 100px;
    left: 55%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    .item_menu {
        width: 250px;
        height: 200px;
        object-fit: cover;
        border: solid 1px var(--gris);
        cursor: pointer;
        transition: .2s all ease-in-out;
    }
    .item_menu:hover {
        width: 255px;
        height: 205px;
        border: solid 1px var(--blanco);
    }
}

.claim {
    position: fixed;
    left: calc(40% - 200px);
    bottom: 200px;
    width: 460px;
    height: auto;
    display: flex;
    flex-direction: column;
    color: var(--blanco);
}

.menu_lateral {
    position: fixed;
    left: 0;
    width: 250px;
    height: 100vh;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    padding-left: 50px;
    z-index: 20;
    background-color: var(--negro);
    text-align: left;


    .item_menu_lateral {
        font-size: 1.5em;
        text-transform: uppercase;
        font-weight: 200;
        color: var(--gris);
        cursor: pointer;
        transition: .5s all ease-in-out;
    }
    .item_menu_lateral:hover {
        color: var(--blanco);
        transform: scale(1.2);
    }
    .direccion {
        display: flex;
        width: 80%;
        flex-direction: column;
        font-size: 1.2em;
        font-weight: 200;
        gap: 10px;
        color: var(--gris_clar);
    }

}

.descripcion {
    position: fixed;
    left:295px;
    width: calc(100vw - 290px);
    height: 100vh;
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: var(--blanco);
    color: var(--negro);
    z-index: 19;
    overflow: scroll;

    .foto {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 70%;
        height: 100%;
        overflow: hidden;
        .pic{
            height: 100%;
            object-fit: cover;
        }
    }
    .parrafo {
        width: 30%;
        padding: 50px;
        display: flex;
        flex-direction: column;
        font-size: 1em;
        text-align: justify;
        gap: 10px;
        font-weight: lighter;
    }
}

.h1 {
    font-size: 3em;
    font-weight: bold;
    text-transform: uppercase;
}
.h2 {
    font-size: 1.8em;
    font-weight: 200;
    text-transform: uppercase;
}
.h3 {
    font-size: 1em;
    font-weight: 200;
    text-transform: uppercase;
    padding-top: 20px;
}

.aling_left{
    text-align: left;
}
.aling_right{
    text-align: right;
}


.download {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;

    .item_download {
        display: flex;
        flex-direction: row;
        width: 60%;
        height: 50px;
        gap: 20px;
        justify-content: flex-start;
        padding-left: 20px;
        align-items: center;
        background-color: var(--blanco);
        border: solid 1px var(--gris);
        font-family: "Poppins", sans-serif;
        font-weight: 200;
        font-size: 1.3em;
        color: var(--negro);
    }
    .item_download:hover {
        background-color: var(--negro);
        color: var(--gris_clar);
        border: solid 1px var(--negro);
    }

}

.yate {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    gap: 50px;
    align-items: flex-start;
    background-color: var(--blanco);
    color: var(--negro);
    top: 0;
    left: 0;
    padding-top: 100px;
    z-index: 99;
    overflow: scroll;

    .btn_cerrar {
        position: fixed;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        top: 3%;
        right: 3%;
        width: 50px;
        height: 50px;
        border: solid 1px var(--gris);
        background-color: #FFFFFF20;
        cursor: pointer;
    }
    .btn_cerrar:hover {
        border: solid 1px var(--negro);
    }

    .parrafo {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-self: center;
        font-size: 1em;
        text-align: justify;
        font-weight: lighter;
        gap: 10px;
    }
    .tabla {
        width:50%;
        display: flex;
        flex-direction: column;
        align-self: center;
        justify-content: center;
        padding-bottom: 100px;
        color: var(--negro);
        .fila {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            padding: 5px 50px 5px;
        }
    }

    .galeria {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        object-fit: fill;
        padding-top: 10px;
        padding-bottom: 50px;

        .foto {
            width: calc(100% - 100px);
            height: auto;
            object-fit: cover;
        }

        .btn_avanza {
            position: relative;
            right: -20px;
            width: 50px;
            height: 50px;
            border: solid 1px var(--gris);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }
        .btn_retrocede {
            position: relative;
            left: -20px;
            width: 50px;
            height: 50px;
            border: solid 1px var(--gris);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .btn_avanza:hover {
            background-color: var(--gris);
        }
        .btn_retrocede:hover {
            background-color: var(--gris);
        }
    }
}

.visor {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    background-color: #141414;
    top: 0;
    z-index: 100;

    .foto {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .btn_cerrar {
        position: fixed;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        top: 3%;
        right: 3%;
        width: 50px;
        height: 50px;
        border: solid 1px var(--gris);
        background-color: #FFFFFF20;
        cursor: pointer;
    }
    .btn_cerrar:hover {
        border: solid 1px var(--negro);
    }
}

.separador {
    width: 100%;
    padding-bottom: 15px;
    border-bottom: solid 1px var(--gris_clar);
}




@media (min-width:1300px) and (max-width:1800px) {

    .menu {
        left: 35%;
    }
    .claim {
        left: calc(15% - 200px);
    }
   
}

@media (min-width:900px) and (max-width:1300px) {

    .menu {
        left: calc(50% - 400px);
        bottom: 50px;
    }
    .claim {
        top: 20%;
        left: calc(50% - 150px);
        height:300px;
    }
}


@media only screen and (min-width:350px) and (max-width:900px) {
    
    .download {
        width: 80%;
        padding-top: 100px;
        .item_download {
            width: 100%;
        }
    }
   
    .claim {
        top: 30%;
        width: 330px;
        left: calc(50% - 165px);
       
    }

    .menu_lateral {
        position: fixed;
        top: 0;
        width: 100vw;
        height: 120px;
        display: none;
        gap: 0;
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-end;
        padding: 5px;
        
    
        .item_menu_lateral {
            padding-bottom: 10px;
            font-size: 1.1em;
        }
        .direccion {
            display: none;
        }
    }
    
    .descripcion {
        left: 5px;
        top: 125px;
        width: 100vw;
        min-height: 100%;
        flex-direction: column;
        justify-content: flex-start;
        overflow: scroll;
        
        .foto {
            width: 100%;
            height: 50%;
            min-height: 450px;
            .pic {
                width: 100%;
            }
        }
    
        .parrafo {
            width: 80%;
            justify-content: center;
            padding-bottom: 200px;
        }
    }

    .menu {
        left: 0;
        width: 100vw;
        justify-content: space-around;
        top: 75%;

        .item_menu {
            width: 160px;
            height: auto;
            border: solid 1px var(--gris);
        }
        .item_menu:hover {
            width: 165px;
            height: auto;
            border: solid 1px var(--blanco);
        }

    }

    .yate {

        .parrafo {
            width: 80%;
        }
        .tabla {
            width:80%;
        }

        .galeria {

            .foto {
                width: 90%;
            }

        }

    }
}




