:root{
    --bg-color: #272733;
    --bg-container: #1a1a27;
    --font-color: #b3b3b3;
    --border-radius: 10px;
    --section-padding: 7rem 0;
}

body{
    background-image: url(../assets/bg.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

*{
	scroll-behavior: smooth;
}

.produtos{
    position: absolute;
    bottom: -30px;
}

#hamburguer{
	display: none;
	height: 35px;
	width: 35px;
	transition: .2s;
	stroke: white;
}

.mainContainer{
    display: flex;
    backdrop-filter: blur(30px);
    margin-bottom: 2rem;
    align-items: center;
    justify-content: flex-start;
    position: sticky;
    top: 0;
    z-index: 999;
}

.mainContainer img{
    width: 10%;
    height: 80px;
    border-radius: 50%;
    margin: 1.5rem 2rem;
}

.navbar-options a {
    padding: 20px 1rem;
    text-decoration: none;
    color: white;
}


*{
    margin: 0;
    font-family: Roboto, sans-serif;
}

.section-padding{
    padding: var(--section-padding);
}

.container-header_header{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90%;
}

.container-header_image-img{
    width: 900px;
}

.container-header_text{
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2, h4{
    text-align: center;
    color: white !important;
}

h2{
    font-size: clamp(10px, 8vw, 60px) !important;
    max-width: 22ch;
}

h4{
    text-align: center;
    font-size: clamp(8px, 4vw, 20px) !important;
    font-weight: 100 !important;
    max-width: 60ch;
}

.container-products{
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.container-products > *{
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    border-radius: var(--border-radius);
    justify-content: center;
}

.container-products_product_text{
    text-align: center;
    font-size: clamp(10px, 8vw, 20px);
    white-space: wrap;
    color: white;
    max-width: 50ch;
}

.container-products_product-img{
    height: 100%;
}

.container-header_image-img, .container-merch > *, .container-products > div{
	opacity: 0;
}

.container-header_image-img, .container-merch > *{
	animation: from-right 800ms ease forwards;
}

.container-products > div{
	animation: from-bottom 800ms ease forwards;
}

.container-products > div:first-child{
	animation-delay: 1000ms;
}

.container-products > div:nth-child(2){
	animation-delay: 1300ms;
}

.container-products > div:nth-child(3){
	animation-delay: 1600ms;
}

.container-products > div:nth-child(4){
	animation-delay: 1900ms;
}

.container-products > div:nth-child(5){
	animation-delay: 2200ms;
}

.container-merch > *{
	animation-delay: 2400ms;
}

.container-header_text, container-merch > img{
	animation: from-left 1s ease forwards;
}

.container-header_header{
	position: relative;
}


@keyframes from-left{
	from{
		opacity: 0;
		transform: translateX(100px);
	}
	to{
		opacity: 1;
		transform: translateX(0px);
	}
}

@keyframes from-right{
	from{
		opacity: 0;
		transform: translateX(-100px);
	}
	to{
		opacity: 1;
		transform: translateX(0px);
	}
}

@keyframes from-bottom{
	from{
		opacity: 0;

		scale: 0;
		transform: translateY(100px);
	}
	to{
		opacity: 1;

		scale: 1.0;
		transform: translateY(0px);
	}
}


@media screen and (max-width: 680px){
	.mainContainer img{
		height: 50px;
	}

	main{
		position: relative;
	}

	.navbar-options{
        	position: fixed;
        	top: 90px;
        	display: none;
        	flex-direction: column;
        	padding: 2rem 3rem;
        	gap: 1rem;
        	background: #423445;
        	height: max-content;
        	z-index: 999;
        	width: 80%;
        	left: 50%;
        	transform: translateX(-50%);
        	border-radius: 10px;
 	}

	.navbar-options.active{
		display: flex;
	}

	#hamburguer{
		display: block;
		margin-right: 2rem;
	}

	.navbar-options a {
    		padding: 20px 0rem;
    		margin-right: 2rem;
		border-bottom: 1px solid #8080803d;
	}

	.mainContainer {
    		justify-content: space-between !important;
	}

	.mainContainer img {
    		width: 10%;
    		height: 50px;
	}
}