/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 13.5px;
    user-select: none;
    -webkit-tap-highlight-color: #00000000;
}

:root {
    --colorfondo: #00000075;
}

/* BASE (MOBILE) */

html,
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #fff;
    background-color: var(--colorfondo);
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* NAV */

nav {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 87px;
    z-index: 99999;
    background-color: var(--colorfondo);
    box-shadow: 0px 10px 71px 74px var(--colorfondo);
}

logo {
    position: relative;
    width: 80%;
    height: 145px;
    top: 10px;
    background: url('../image/logo.webp') center / contain no-repeat;
    filter: sepia(1);
}

/* MENU MOBILE */

menu {
    position: fixed;
    bottom: 59px;
    width: 90%;
    padding: 120px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    border-radius: 15px;
    background: #1a1d26de;
    box-shadow: 0 -10px 12px #00000056;
}

.btn {
    padding: 10px 2%;
    border: none;
    border-radius: 5px;
    color: #ffffff7d;
    cursor: pointer;
    font-size: 150%;
    letter-spacing: .5px;
}

.btn:hover {
    color: #fff;
}

/* BOTON MENU MOBILE */

#meu {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: #0c0f18de;
    color: #c8c8c8b8;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

/* SLIDERS */

sliders {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

section {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
}

.img_sliders {
    flex: 0 0 100%;
    height: 100%;
    background: url('../image/slider1/0.png') center/100% no-repeat;
  /*  box-shadow: inset 0px -171px 43px 57px #000000a1;
    filter: brightness(0.6) saturate(1.1);*/
}

/* FLECHAS */

.flecha {
    position: absolute;
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    cursor: pointer;
}

.flecha:hover {
    opacity: .5;
}

/* SLOGAN */

slogan {
    position: fixed;
    top: 110px;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 30px;
    letter-spacing: 5px;
    opacity: .7;
}




/* ========================= */
/* TABLET */
/* ========================= */

@media (min-width:530px) {

    #meu {
        display: none;
    }

    menu {
        flex-direction: row;
        top: 90px;
        width: 80%;
        padding: 10px;
        bottom: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        border-radius: 50px;
    }

    slogan {
        top: 140px;
    }

    .btn {
        font-size: 120%;

    }

    menu {
        padding: 1px 0 0 1px;

    }

}



/* ========================= */
/* DESKTOP */
/* ========================= */

@media (min-width:1024px) {

    nav {
        height: 75px;
        top: 0px;
        flex-direction: row;
    }

    .btn {
        font-size: 150%;
    }

    menu {
        padding: 1px 0 0 1px;
        top: 0px;
        width: 50%;
        position: relative;
        justify-content: flex-end;

    }

    logo {
        position: relative;
        width: 212px;
        height: 100px;
        left: 3%;
        top: 15px;
    }

    slogan {
        justify-content: flex-end;
        right: 2%;
        font-size: 40px;
        top: 50px;
    }

}



/*********************************/