* {
    margin: 0;
}

body {
    overflow-x: hidden;
    font-family: K2D;
    height: 100vh;
    width: 100%;
    letter-spacing: 1.1px;
}


/* HEADER */
header {
    z-index: 50;
    display: flex;
    height: 8%;
    width: 100%;
    background-color: #ffffff;
    align-items: center;
}

#header2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4.5%;
    background-color: #eceaea;
}

#header2>a {
    padding: 0 2% 0 2%;
    text-decoration: none;
    color: black;
    font-size: 13px;
    letter-spacing: 1.2px;
}

/* LOGO */
#logo {
    display: flex;
    justify-content: center;
}

#logo>a>img {
    width: 80px;
}

#logo>a {
    background-color: #0000;
}


/* BOTÕES HEADER */
header>div>a {
    display: flex;
    font-size: 19px;
    color: #181818;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

header>div:nth-of-type(2)>a:first-of-type {
    color: red;
}


/* BARRA DE PESQUISA HEADER */

header>div {
    width: 33%;
    display: flex;
}

header:hover input {
    border: solid black 1px;
    border-left: none;
    background-color: white;
    transition: .4s;
}

header:hover .btn_pesquisa {
    border: solid black 1px;
    border-right: none;
    transition: .4s;
}

.btn_pesquisa {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 37px;
    border-radius: 0px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border: solid #181818 1px;
    border-right: none;
}

header>div>div>svg {
    fill: white;
    transition: .4s;
}

header>div>input {
    background-color: white;
    border: none;
    height: 35px;
    width: 100%;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border: solid #181818 1px;
    border-left: none;
}

header>div>input:focus {
    outline: none;
}

/* LAST ELEMENTS */

#last_elements {
    display: flex;
    justify-content: center;
}

#last_elements>a {
    color: #494949;
    margin: 0 2% 0 2%;
}

#last_elements>a {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
}

#last_elements>a>svg {
    fill: white;
}



/* CORPO */

#corpo {
    justify-content: center;
    width: 100%;
    height: 200vh;
}

/* CARROSSEL */

#slider {
    display: flex;
    width: 100%;
    height: 700px;
    overflow: hidden;
    margin: 0 auto;
    background-color: grey;
}

#slides {
    width: 400%;
    height: 39.5%;
    display: flex;
}

#slides input {
    display: none;
}

.slide {
    width: 25%;
    position: relative;
}

.manual-navegação {
    position: absolute;
    width: 39.5%;
    width: 100%;
    margin-top: -40px;
    display: flex;
    justify-content: center;
}

.btn-manual {
    border: 2px solid black;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: .5s;
}

.btn-manual:hover {
    background-color: white;
}

/* ICONS */

#icons {
    display: flex;
    width: 100%;
    height: 1.5%;
    justify-content: space-around;
    align-items: center;
    background-color: #eceaea;
}

#icons>p {
    font-size: 15px;
    color: #181818;
    font-weight: 600;
}

/* GÊNERO */

#filtro {
    width: 100%;
    height: 16vh;
    background-color: white;
}

#filtro>div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 3%;
    display: flex;
    height: 12%;
}

#filtro>div:first-of-type>p {
    font-size: 28px;
    font-weight: 800;
}

#filtro>div:nth-of-type(2) {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1%;
}

#filtro>div:nth-of-type(2)>p {
    font-size: 15px;
    background-color: #eceaea;
    border-radius: 5px;
    padding: 0 1% 0 1%;
}

/* BANDAS ICON */

#bandas_icon {
    padding-top: 2%;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 24.4vh;
    background-color: white;
    gap: 1%;
}

#bandas_icon>div {
    max-height: 200px;
    max-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#bandas_icon>div>img {
    height: 100%;
    border-radius: 50%;
    transition: .4s;
}

#bandas_icon>div>img:hover {
    filter: brightness(30%);
}

#bandas_icon>div>p {
    position: absolute;
    z-index: 5;
    font-size: 25px;
    font-weight: 600;
    color: white;
    user-select: none;
    opacity: 0;
    pointer-events: none;
    transition: .4s;
}

#bandas_icon>div:hover p {
    opacity: 1;
}



/* PRODUTOS */

i {
    font-size: 12px;
}

span {
    padding-right: 4%;
}

#produtos {
    display: inline;
    justify-content: center;
    gap: 0.5%;
    padding-top: 2%;
    display: flex;
    width: 100vw;
    height: 60vh;
}

#produtos>div {
    width: 16%;
    border-radius: 5px;
    height: 85%;
    background-color: white;
}

#produtos>div>div {
    width: 100%;
    height: 71%;
    padding-bottom: 2%;
    background-color: #eceaea;
    border-radius: 5px 5px 0 0;
}

#produtos>div>div>img {
    width: 100%;
}

#produtos>div>p {
    text-align: center;
    font-weight: 600;
}

#produtos>div>p:first-of-type {
    padding-bottom: 7%;
}

.txt_cinza {
    font-size: 11px;
    color: #919191;
    letter-spacing: 0.8px;
}

#produtos>div:hover p {
    filter: blur(2px);
    transition: .5s;
}

#produtos>div>a {
    text-decoration: none;
    padding: 5% 20% 5% 20%;
    border-radius: 5px;
    margin: 0 0 0 23%;
    text-align: center;
    background-color: #9900ff;
    opacity: 0%;
    position: relative;
    bottom: 8%;
    width: 50%;
    color: white;
}

#produtos>div:hover a:last-of-type {
    opacity: 100%;
    transition: .5s;
    bottom: 13%;
    filter: brightness(100%);
}

/* FOOTER */

footer>div {
    background-color: #eceaea;
    height: 28vh;
    display: flex;
    justify-content: center;
}

footer h3{font-size: 20px;}

footer a:first-of-type li{margin-top: 15%;}

footer li {

    list-style-type: none;
    margin-bottom: 3%;
}

footer a {
    color: #5f5a5a;
    text-decoration: none;
}

footer>div {
    font-size: 13px;
    font-weight: 600;
    color: black;
}

footer p{margin-top: 5%;
color: #5f5a5a;
margin-bottom: 12%;}

footer ul {display: flex;
    margin: 2% 2% 0 2%;
flex-direction: column;
align-items: center;}

footer ul:last-of-type a {
    color: white;
    background-color: #9900ff;
    padding: 20px;
    border-radius: 10px;
}

footer ul:last-of-type a:hover {
    background-color: #8200d8;
    transition: .4s;
}