/* 
geral
------------------------------------------- */
html {
	scroll-behavior: smooth;	
}

* {
	box-sizing: border-box;
}

body {
	background-color: rgb(50, 50, 60);
	height: 100vh;
	font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 0;
}

/* 
site
------------------------------------------- */
.site {
	background: url("./images/bg.jpg") no-repeat center center;
	background-size: cover;
    background-attachment: fixed;
	width: 100%;
	margin: 0 auto;
}

/* 
navbar
------------------------------------------- */
nav {
	display: flex;
	flex-wrap: wrap;
	position: fixed;
	z-index: 9999;
	width: 100%;
	justify-content: space-around;
	align-items: center;
	background: #23232e;
	height: 8vh;
}

nav a {
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}

nav a:hover {
	opacity: 0.7;
	text-decoration: underline;
}

.nav-list {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
}

.nav-list li {
	letter-spacing: 3px;
	padding: 0 12px;
}

.nav-list.active {
	transform: translateX(0);
}

.mobile-menu {
	display: none;
	cursor: pointer;
}

.mobile-menu div {
	width: 32px;
	height: 2px;
	background: #fff;
	margin: 8px;
	transition: 0.3s;
}

.logo {
	font-size: 24px;
	text-transform: uppercase;
	letter-spacing: 4px;
}

@keyframes navLinkFade {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.mobile-menu.active .line1 {
	transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
	opacity: 0;
}

.mobile-menu.active .line3 {
	transform: rotate(45deg) translate(-5px, -7px);
}

@media (min-width: 1367px) {
	
	.site, nav {
		width: 1367px;
	}

}

@media (max-width: 910px) {
	
	nav {
		flex-direction: column;
		height: 12vh;
	}
	
}

@media (max-width: 650px) {
	
	body {
		overflow-x: hidden;
	}
	
	nav {
		flex-direction: row;
		height: 8vh;
	}

	.nav-list {
		position: absolute;
		top: 8vh;
		right: 0;
		width: 50vw;
		height: 92vh;
		background: #23232e;
		flex-direction: column;
		align-items: center;
		justify-content: space-around;
		transform: translateX(100%);
		transition: transform 0.3s ease-in;
	}

	.nav-list li {
		opacity: 0;
	}

	.mobile-menu {
		display: block;
	}
	
}

/* 
HOME
------------------------------------------- */
#home {
    display: flex;
	align-items: flex-end;
	background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0), rgba(35,35,46,0.9));
	color: #fff;
	height: 100vh;
	padding: 8vh 0;
	width: 100%;
	font-size: 17px;
}

.titulo {
	width: 640px;
}

.titulo h1, .titulo h4, .titulo p {
	padding-left: 8vh;
}

.titulo h1 {
	font-weight: normal;
}

.titulo h4 {
	text-transform: uppercase;
	font-size: 10pt;
}

.titulo hr {
	margin: 10px 0;
}

.nota {
	font-style: italic;
}

.autor {
	font-size: 16px;
}

@media (max-width: 700px) {
	
	.titulo {
		width: 90%;
	}

}

/* 
BLOCO
------------------------------------------- */
.bloco {
	padding: 60px 9.5% 40px 9.5%;
	min-height: 100vh;
}

.bloco:nth-child(even) { color: rgb(145, 145, 155); background: rgb(45, 45, 55); }
.bloco:nth-child(odd)  { color: rgb(155, 155, 165); background: rgb(55, 55, 65); }

.bloco h1, .bloco h3 {
	text-transform: uppercase;
	font-weight: normal;
	color: #797196;
}

.bloco h1 {
	font-size: 48px;
	margin-top: 40px;
	margin-bottom: 30px;
}

.bloco h3 {
	font-size: 33px;
	margin-top: 30px;
	margin-bottom: 20px;
}

.bloco p, .bloco li {
	margin-bottom: 18px;
	font-size: 17px;
	text-align: justify;
}

.bloco a {
    text-decoration: none;
    color: rgb(220, 180, 240);
}

.bloco a:hover {
    text-decoration: underline;
    color: rgb(180, 180, 240);
}

.bloco_grupo {
	display: grid;
	grid-template-columns: 48% 48%;
	justify-content: space-between;
	width: 90%;
	margin: 0 auto;
}


.bloco_grupo_caixa {
	margin: 30px auto;
	background-color: rgb(50, 50, 60);
	border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
}

.bloco_grupo_caixa_texto {
    padding: 5px 20px;
    font-size: clamp(1em, 1em + 1vw, 1.5em);
}

.bloco_grupo_caixa_nota {
	font-style: italic;
}

.bloco_video {
	width: 100%; 
	margin: 0 auto;
	text-align: right;
}

.bloco_youtube {
    position: relative;
    padding-bottom: 56.25%; 
    padding-top: 0;
    height: 0;
    margin:0 auto;
}

.bloco_youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bloco_short {
    position: relative;
    padding-bottom: 177.70%; 
    padding-top: 0;
    height: 0;
    margin:0 auto;
}

.bloco_short iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bloco em {
	font-style: normal;
	text-transform: uppercase;
	font-weight: bold;
}

.bloco li::marker {
	font-weight: bold;
}

.primeiro {
	margin-top: 80px;
}

@media (max-width: 910px) {

	.bloco_grupo {
		width: 100%;
	}

}

@media (max-width: 650px) {
	
    .bloco {
    	padding: 60px 8% 40px 8%;
    }

    .bloco h1 {
    	font-size: 40px;
    }
    
    .bloco h3 {
    	font-size: 22px;
    }
    
    .bloco p, .bloco li {
    	margin-bottom: 17px;
    	font-size: 16px;
    }
    
	.bloco_grupo {
    	grid-template-columns: 1fr;
		width: 100%;
	}

	.primeiro {
		margin-top: 0;
	}

}

/* 
BIOGRAFIA
------------------------------------------- */
#biografia {
	
}

.bio_avatar {
	width: 268px;
	float: left;
	margin-right: 20px;
}

.bio_projeto {
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.bio_avatar img, .bio_projeto img {
	width: 100%;
}

@media (max-width: 650px) {
	
	.bio_avatar {
		float: none;
		width: 80%;
		padding: 0;
		margin: 0 auto;
		margin-bottom: 30px;
	}

}


/* 
BATERIA
------------------------------------------- */
#bateria {

}

.bia_avatar {
	width: 380px;
	float: right;
	padding-left: 20px;
}

.bia_avatar img {
	width: 100%;
    transform: scaleX(-1);
}

.bia_kit_enum {
	padding-right: 20px;
}

.bia_kit_enum img {
	width: 100%;
}

.bia_kit {
	display: grid;
	grid-template-columns: 400px 1fr;
}

.bia_kit_list {
	display: grid;
	grid-template-columns: 40px 1fr;
}

.bia_kit_list p {
	margin-top: 0;
	padding-top: 0;
}

.bia_kit_list_marker {
	text-align: left;
}

.bia_kit_list_marker img {
	width: 22px;
}

@media (max-width: 910px) {
	
	.bia_kit {
		grid-template-columns: 1fr;
	}
	
	.bia_kit_enum {
		width: 400px;
		margin: 0 auto;
		margin-bottom: 18px;
		padding: 0;
	}

}

@media (max-width: 650px) {
	
	.bia_avatar {
		float: none;
		width: 90%;
		padding: 0;
		margin: 0 auto;
		margin-bottom: 10px;
	}
	
	.bia_kit {
		grid-template-columns: 1fr;
	}
	
	.bia_kit_enum {
		width: 100%;
	}

	.bia_kit_list_marker {
		margin-left: 0;
	}

}

/* 
BATERISTA
------------------------------------------- */
#baterista {
	
}

.bta_avatar {
	width: 380px;
	float: right;
	padding-left: 20px;
}

.bta_avatar img {
	width: 100%;
}

.bta_video {
	width: 190px;
	max-width: 220px;
	float: left;
	margin: 5px 20px 5px 0;
	border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
}

.bta_membro_enum {
	padding-right: 20px;
}

.bta_membro_enum img {
	width: 100%;
}

.bta_membro {
	display: grid;
	grid-template-columns: 400px 1fr;
}

.bta_membro_list li::marker {
	font-weight: bold;
}

.bta_membro_list {
	display: grid;
	grid-template-columns: 40px 1fr;
}

.bta_membro_list p {
	margin-top: 0;
	padding-top: 0;
}

.bta_membro_list_marker {
	text-align: left;
}

.bta_membro_list_marker img {
	width: 22px;
}

@media (max-width: 910px) {
	
	.bta_membro {
		grid-template-columns: 1fr;
	}
	
	.bta_membro_enum {
		width: 400px;
		margin: 0 auto;
		margin-bottom: 18px;
		padding: 0;
	}

}

@media (max-width: 650px) {
	
	.bta_avatar {
		float: none;
		width: 90%;
		padding: 0;
		margin: 0 auto;
		margin-bottom: 10px;
	}
	
    .bta_video {
		float: none;
		width: 70%;
		padding: 0;
		margin: 0 auto;
		margin-bottom: 10px;
    }
    
	.bta_membro {
		grid-template-columns: 1fr;
	}
	
	.bta_membro_enum {
		width: 100%;
	}

	.bta_membro_list_marker {
		margin-left: 0;
	}

}

/* 
SAUDE
------------------------------------------- */
#saude {
	
}

.sde_enum {
    float: left;
    padding: 0;
    margin: 0;
    margin-right: 12px;
    font-size: 40px;
    font-weight: bold;
    font-style: italic;
    color: #797196;
}

.sde_desc {
    padding-top: 12px;
}

.sde_podcast {
    margin: 0;
	float: right;
	margin-left: 20px;
	margin-bottom: 8px;
	width: 380px;
}

.sde_estarbem {
    margin: 0;
	float: right;
	margin-left: 20px;
	margin-bottom: 8px;
	width: 380px;
}

.sde_estarbem img {
    width: 100%;
}

@media (max-width: 910px) {
	
    .sde_podcast, .sde_estarbem {
    	width: 60%;
    }
    
}

@media (max-width: 650px) {

    .sde_podcast {
		float: none;
		padding: 0;
		margin: 0 auto;
		margin-bottom: 30px;
		width: 100%;
    }
    
    .sde_estarbem {
        float: none;
        margin: 20px 0;
        width: 100%;
    }
    
    .sde_desc em {
    	text-transform: none;
    }
    
    
}


/* 
AULAS
------------------------------------------- */
#aulas{

}

.aul_avatar {
	width: 350px;
	float: right;
	padding-left: 20px;
}

.aul_avatar img {
	width: 100%;
}

.aul_veterano {
	width: 350px;
	float: left;
	padding-right: 20px;
}

.aul_veterano  img {
	width: 100%;
}


@media (max-width: 910px) {
	
}

@media (max-width: 650px) {
    
    .aul_avatar, .aul_veterano {
    	width: 90%;
    	float: none;
    	padding: 0;
    	margin: 20px auto;
    }
    
}

/* 
CONTATO
------------------------------------------- */
#contato {

}

.socialbtns {
    margin-top: 50px;
}

.socialbtns a, .socialbtns a:hover {
	text-decoration: none;
}

.socialbtns ul, .socialbtns li {
  margin: 0;
  padding: 5px;
}

.socialbtns li {
    list-style: none outside none;
    display: inline-block;
}

.socialbtns a {
    width: 64px;
    height: 64px;
    color: #23232e;
    background-color: #fff;
    border: 1px solid #23232e;
    padding-top: 20px;
    border-radius: 22px;
    -moz-border-radius: 22px;
    -webkit-border-radius: 22px;
    -o-border-radius: 22px;
    text-align: center;
}

.socialbtns a:hover {
	color: #fff;
	background-color: #23232e;
	border: 1px solid #23232e;
}

@media (max-width: 650px) {
    
    .socialbtns .fa {
    	width: 48px;
        height: 48px;
    	padding-top: 12px;
    	border-radius: 18px;
    }
    
}
