/* Estilos gerais */
.menu-site .nav-link {
	font-family: "Silkscreen", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.8rem;
}

.brand {
	font-family: "Silkscreen", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 2.8rem;
}

.section-fullscreen {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	padding-top: 20px;
	padding-bottom: 20px;
}

.section-content {
	position: relative;
	z-index: 1;
	background: rgba(0, 0, 0, 0.5);
	padding: 40px;
	border-radius: 10px;
	margin-bottom: 40px;
}

.arrow-down {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 2rem;
	color: white;
	border: 2px solid white;
	border-radius: 50%;
	padding: 10px;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.arrow-down a {
	color: inherit;
	text-decoration: none;
}

.linkedin-link, .github-link {
	text-decoration: none;
	margin-right: 10px;
	font-size: 24px;
	color: aliceblue;
}

.github-link {
	color: #333;
}

.linkedin-link {
	color: #0077B5;
}

.linkedin-link:hover, .github-link:hover {
	text-decoration: underline;
}

.project-image {
	max-width: 100%;
	height: auto;
	margin-bottom: 15px;
}

.project-section {
	margin-bottom: 60px;
}

.contact-section {
	background-color: #333333;
	padding: 50px 0;
	margin-bottom: 60px;
}

h2, h3, .btn {
	font-family: "Silkscreen", sans-serif;
}

.tech-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 30px;
}

.tech-list li {
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 10px;
}

.tech-list .badge-pill {
	font-size: 0.9rem;
	padding: 0.5em 1em;
}

.case-section {
	padding: 50px 0;
	margin-bottom: 160px;
}

.ccoe {
	width: 200px;
}

.human-coder {
	width: 100px;
}

.img-fluid {
	max-width: 50%;
	height: auto;
}

.white {
	color: #ffffff;
}

/* Estilos específicos para as imagens de fundo */
.bg-blur {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../images/bg.jpeg') no-repeat center center/cover;
	filter: blur(8px);
	z-index: -1;
}

.about {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../images/sky.png') no-repeat center center/cover;
	filter: blur(8px);
	z-index: -1;
}

.embed-responsive {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
	max-width: 500px;
	height: auto;
	margin: 0 auto;
}

.embed-responsive::before {
	content: "";
	display: block;
	padding-top: 56.25%;
}

.embed-responsive-item {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Estilo do botão de voltar ao topo */
.back-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1000;
	display: none;
	background-color: #007bff;
	color: #fff;
	border-radius: 50%;
	padding: 10px 15px;
	font-size: 24px;
	transition: background-color 0.3s;
}

.back-to-top:hover {
	background-color: #0056b3;
}
