:root {
    --cor-rosa: pink;
}

* {
    font-family: 'Mukta', sans-serif;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
	transition: .2s linear;
    box-sizing:border-box;
}

html{
	font-size: 62.5%;
	scroll-behavior: smooth;
	scroll-padding-top: 1.0rem;
	overflow-x: hidden;
}

body {
	align-items: center;
	justify-content: center;
	min-height: 100vh;
    background:linear-gradient(45deg, rgb(113, 160, 223), rgb(160, 8, 91));
}

.logo {
	cursor: pointer;
}

.logo img {
	max-width:75px;
    max-height:75px;
	border-radius: 50px;
    width: auto;
    height: auto;
}

header {
	position:fixed;
	top:0;
	left:0;
	width:100%;
    height: 100px;
	padding: 20px 100px;
	background-color: #000000;
	display: flex;
	justify-content:space-between;
	align-items: center;
	z-index: 1000;
	box-shadow: 0 .5rem 1rem #940e4d; ;
}

header .navegacao a{
	font-size: 2rem;
	padding: 0 1.5rem;
	color: #fff;
    background: black;
	justify-content: space-between;
}

header .navegacao a:hover{
	font-size: 2.5rem;
	}
	

.navegacao  {
	display:flex;
	align-items: center;
	justify-content: space-between;
	overflow: auto;
	background: #000000;
}

.navegacao a {
   position:relative;
   font-size:3em;
   color: #ffffff;
   text-decoration:none;
   font-weight: 500;
   margin-left: 40px;
   font-weight: bold;
}


header nav a::after {
    content: "";
    width: 0%;
    height: 2px;
    position: absolute;
    bottom: 0;
    background: #940e4d;
    left: 0;
    transition: .3s;
}

header nav a:hover::after {
    width: 100%;
}


.btnLogin-popup {
    width:80px;
    height:50px;
    background:transparent;
    border:2px solid #ffffff;
    outline:none;
    border-radius:6px;
    cursor:pointer;
    font-size:2em;
    color:#ffffff;
    font-weight:500;
    margin-left:40px;
    transition:0.5s;
	overflow: hidden;
    
}

.btnLogin-popup:hover {
    background:#cc2193;
    color:#ffffff;
}

.btnLogin-popup::-webkit-inner-spin-button,
.btnLogin-popup::-webkit-inner-spin-button
 {
	appearance: none;
	
}


.slide {
	min-width: 25%;
	height: 300px;
	transition: all 0.5s;
	overflow: hidden;
	scroll-snap-align: center;
	border-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.slide:hover {
	transform: scale(1.15,1.15);
	box-shadow: 0 0 8px #fff;
	border: solid 1px #ffffff;
}

.slide video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px gray;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb {
	background: #940e4d;
	border-radius: 4px;
}

.sliders {
	display: flex;
	align-items: center;
	column-gap: 20px;
	overflow-x: scroll;
	scroll-snap-type: x mandatory;
	padding: 40px;
}

.detalhe {
	color: #cc2193;
	font-size: 50px;
}

h1 {
	text-align: center;
	color: #fff;
	font-size: 50px;
}

/*MODALIDADES*/

.container{

    padding:15px 9%;
    padding-bottom: 100px;
	margin-top: 100px;
}

.container .heading{
    text-align: center;
    padding-bottom: 15px;
    color:#fff;
    text-shadow: 0 5px 10px rgba(0,0,0,.2);
    font-size: 50px;
	margin-top: 10px;
	margin-bottom: 25px;
}

.container .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap:15px;
}

.container .box-container .box{
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
    border-radius: 5px;
    background: #fff;
    text-align: center;
    padding:30px 20px;
}

.container .box-container .box h3{
    color:#444;
    font-size: 22px;
    padding:10px 0;
}

.container .box-container .box p{
    color:#777;
    font-size: 15px;
    line-height: 1.8;
}

.container .box-container .box .btn:hover{
    letter-spacing: 1px;
}

.container .box-container .box:hover{
    box-shadow: 0 10px 15px rgba(0,0,0,.3);
    transform: scale(1.03);
}
/*FIM DO MODALIDADES*/


/*PARTE DO FOOTER - RODAPE*/

.rodape{
	margin-top: 80px;
    background-color: #940e4d;
    color: white;
    height: auto;
    width: 100%;
    font-size: 14px;
    font-family: helvetica;
	bottom: 0;
}

.rodape a{
    text-decoration: none;
    color: white;
}
.rodape p{
    margin-bottom: 5px;
}
.rodape-div{
    display: flex;
    flex-wrap: wrap;
    width:100%;
    margin: auto;
    align-items: stretch;
    padding: 60px 10px 40px 10px;
}
.rodape-div-1, .rodape-div-2, .rodape-div-3, .rodape-div-4{
    display: flex;
    width: calc(100% / 4 - 20px);
    padding: 10px;
}
.rodape .contato{
    font-size: 20px;
    color: white;
}
.rodape-direitos{
    width: calc(100% - 20px);
    background-color: black;
    padding: 10px;
    margin: 0px;
    text-align: center;
}

.rodape i {
	font-size: 2.0rem;
}

@media (max-width:991px){
	html{
		font-size: 55%;
	}
	header{
		padding: 2rem;
	}
	}
	@media (max-width:768px){
	
		header .fa-bars{
			display:block;
		}
	
		header .navegation{
			position: absolute;
			top:100%; left:0; right: 0;
			background: #eee;
			border-top: .1rem solid black; 
			clip-path: polygon(0 0, 100% 0, 0 0);
		}
	
		header #toggler:checked ~ .navegation{
			clip-path:polygon(0 0, 100% 0, 100% 100%, 0% 100%) ;
		}
	
		header .navegation a{
			margin: 1.5rem;
			padding: 1.5rem;
			background: #fff;
			border: .1rem solid black;
			display: block;
		}
	}
	
	@media (max-width:450px){
		html{
			font-size: 50%;
		}
	
		}