/*===================================*
	03. CUSTOM BTN
*===================================*/

.btn {
    width: fit-content;
    transition: all .25s ease;
    position: relative;
    user-select: none;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-sizing: border-box;
}

.btn:hover {
    transform: translateY(-3px);
	box-shadow: 0 10px 20px -10px rgba(0, 0, 0, .7);
	text-decoration: none;
	color: currentColor;
}

.btn-sobre-mim {
	background: #179497;
	color: #fff !important;
	border-radius: .5rem;
	padding: 10px 20px;
}

/* Btn sobre mim com os llines */

.btn-line {
	padding: 12px 22px;
	font-weight: 500;
	cursor: pointer;
	position: relative;
	margin: 5px;
	outline: none;
	background: transparent;
	transition: all .25s ease;
	min-width: 110px;
}

.btn-3 {
	border: 3px solid rgba(0, 0, 0, .1);
	box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, .1);
}

.btn-3 .line-1 {
	position: absolute;
	left: -3px;
	top: -3px;
	width: 0%;
	height: 3px;
	background: #000;
	transition: all .25s ease;
}

.btn-3 .line-2 {
	position: absolute;
	right: -3px;
	top: -3px;
	width: 3px;
	height: 0%;
	background: #000;
	transition: all .25s ease;
}

.btn-3 .line-3 {
	position: absolute;
	right: -3px;
	bottom: -3px;
	width: 0%;
	height: 3px;
	background: #000;
	transition: all .25s ease;
}

.btn-3 .line-4 {
	position: absolute;
	left: -3px;
	bottom: -3px;
	width: 3px;
	height: 0%;
	background: #000;
	transition: all .25s ease;
}

.btn-3:hover .line-1 {
	width: calc(100% + 3px);
}

.btn-3:hover .line-2 {
	height: calc(100% + 3px);
}

.btn-3:hover .line-3 {
	width: calc(100% + 3px);
}

.btn-3:hover .line-4 {
	height: calc(100% + 3px);
}

@media only screen and (max-width: 768px) {
	.btn {
		width: 100%;
	}
	
	.btn-line {
		margin: inherit;
		width: 100%;
	}

	.btn-sobre-mim {
		width: 100%;
	}
}