body {
	font-family: 'Manrope';
}
#gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
}
.main-container {
	position: relative;
	z-index: 2;
	height: 100vh;
}
.main-container .container {
	height: 100%;
	display: flex;
	align-items: center;
	align-items: center;
	justify-content: center;
}
.main-container .container .wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
}
.main-container .container .wrap svg {
	height: auto;
	width: 680px;
	fill: white;
	margin-bottom: 16px;
	pointer-events: none;
}

@media (max-width: 680px){
    .main-container .container .wrap svg {
        width: 100%;
    }
    .main-container .container .wrap h3 {
        font-size: 18px;
    }
}
.main-container .container .wrap svg .ponto {
	opacity: 0.8;
}
.main-container .container .wrap h3 {
	font-size: 24px;
	color: white;
	margin: 0 0 -12px;
}
.main-container .container .wrap a {
	font-weight: bold;
	color: white;
	text-decoration: none;
}
.main-container .container .wrap a:hover {
	text-decoration: underline;
}
/*body {*/
/*	cursor: none;*/
/*}*/
.main-container, .main-container * {
	cursor: none !important;
}
.main-container:has(a:hover) .custom-cursor {
	opacity: 0.5;
	width: 24px;
	height: 24px;
}
.custom-cursor {
	position: fixed;
	width: 32px;
	height: 32px;
	background-color: white;
	border-radius: 50%;
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 999;
	opacity: 0;
	transition: 0.5s ease, top 0s, left 0s;
}

.main-container:hover {
    .custom-cursor {
        opacity: 0.3;
    }
}

header {
    position: fixed;
    z-index: 20;
    width: 100%;
    
    .container {
        background: white;
        display: flex;
        border-radius: 0 0 64px 64px;
        justify-content: space-between;
        align-items: center;
        padding: 32px 64px;
        box-shadow: 0 0 25px rgba(0,0,0,0.1);
        
        svg {
            height: 30px;
            width: auto;
            
            * {
                fill: #333 !important;
            }
        }
        
        ul {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
            gap: 32px;
            font-weight: 600;
            
            li {
                a {
                    text-decoration: none;
                    color: #333;
                    font-size: 14px;
                }
            }
        }
    }
}

#gradient {
    position: fixed;
}

.content {
    position: relative;
    margin-top: -80px;
    
    .container {
        background: white;
        padding: 64px;
        border-radius: 64px;
        min-height: 600px;
        margin-bottom: 128px;
        display: flex;
        justify-content: center;
        align-items: center;
        
        h2 {
            text-align: center;
        }
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1380px;
    }
}

@media (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1600px;
    }
}