@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Wancho&display=swap');
::-webkit-scrollbar{
    width: 1.5em;
    height: 1em;
}
::-webkit-scrollbar-track{
    background: rgb(43, 43, 43);
}
::-webkit-scrollbar-thumb{
    background: white;
    border: .25em solid red;
    border-radius: 100vw;
}
::-webkit-scrollbar-thumb:hover{
    background: linear-gradient(rgb(187, 4, 4),rgb(92, 6, 6)); 
}


*{
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-color: black;
}

h1{
    color:rgb(233, 233, 233);
}


/* Menu */

nav ul li a {
    color: yellow;
    padding: 28px;
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
    margin:auto;
}

nav a {
    text-decoration: none;
    display: inline-block;
    color: white;
}

nav {
    background-color: rgb(0, 0, 0);
    padding-top: 15px;
    top: 0;
    width: 100%;
    font-size: 15pt;
}

nav > ul > li {
    background-color: rgb(0, 0, 0);
    display: inline-block;
    padding: 2px;
    position: relative;
}

nav ul li ul li {
    background-color: rgb(43, 43, 43);
    color: white;
    border-radius : 15px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    display: none;
}

nav > ul > li:hover {
    background-color: rgb(45, 45, 45);
    color: white;    
    border-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

nav > ul > li:hover ul {
    display: block;    
}

nav > ul > li > ul > li:hover {
    background-color: rgb(175, 17, 17);
    color: rgb(0, 0, 0);
    
}

hr{
    border-color: yellow; 
}
.sabre{
    padding-left: 4%;
}




footer {
    margin-top: 30px;
    background-color: rgb(59, 59, 59);
    display: block;
    padding-bottom: 30px;
    padding-top: 35px;
    
}

footer p a{
    margin-left: 30px;
    color: rgb(193, 0, 138);
    padding: 10px;
    border-radius: 7px;
    text-decoration: none;
}

footer p {
    color: royalblue;

}

footer p a.active,
footer p a:hover{
    background: linear-gradient(rgb(255, 0, 247),rgb(255, 251, 0));
}





/* Topo */

main{
    height: 360px;
    width: 78.5%;
    background-image: url("../imagens/fundo.gif");
    background-repeat: no-repeat;
    background-size: 100%; 
    margin: 0 auto;
    border-radius: 1.5rem;
}

.div-topo{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.521);
    color:#fff;
    text-align: center;
    padding-top: 80px;
    height: 360px;
    width: 78.5%;
    border-radius: 1.5rem;
}

.texto-topo{
    color: rgba(255, 255, 255, 0.753);
    font-family: Noto Sans, sans-serif;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 20%;
    padding-right: 20%;
    line-height: 2;
}


/* Fileira de itens */


.fileira{
    display: flex;
    border-top: none;
    margin: auto;
    width: 79%;
    height: 490px;
    background-color: rgba(64, 64, 64, 0.407);
    border-radius: 9px;
}

.itens{
    flex: 1; /*distribui as 3 divs dentro do conteiner com larguras iguais*/
    text-align: center;
    background: linear-gradient(150deg, rgba(125, 125, 125, 0.826) 3%, rgb(0, 0, 0) 50%, rgb(66, 2, 126) 100% );
    margin: 4%;
    padding-top: 2%;
    width: 100px;
    height: 275px;
    box-shadow: 0px 15px 200px 1px rgba(175, 175, 175, 0.377);
    border-radius: 100%;
 }

.botão{
    /*background: linear-gradient(150deg, rgb(93, 184, 207) 3%, rgb(0, 0, 0) 50%, rgb(116, 5, 110) 100% );
    rgb(168, 180, 189)*/
    border: none;
    color:  yellow;
    padding: 12px 70px;
    text-align: end;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    box-shadow: 0px 2px 19px 0px rgba(0, 0, 0, 0.377);
    border-radius: 1.0rem;

}


/* Slider */
.container {
	padding: 0rem;
}

.slider-wrapper {
	position: relative;
	height: 490px;
    width: 100%;
    margin-bottom: 0px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;

}

.slider {
	display: flex;
	aspect-ratio: 16 / 9;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	border-radius: 0.5rem;
	-ms-overflow-style: none; /* Hide scrollbar IE and Edge */
	scrollbar-width: none; /* Hide scrollbar Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.slider::-webkit-scrollbar {
	display: none;
}

.slider img {
	flex: 0 0 100%;
    height: 490px;
    width: 100%;
	scroll-snap-align: start;
	object-fit: inherit;
}

.slider-nav {
	display: flex;
	column-gap: 1rem;
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.slider-nav a {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background-color: #fff;
	opacity: 0.75;
	transition: opacity ease 250ms;
}

.slider-nav a:hover {
	opacity: 1;
}



