/* Scroll to Top Button */
#toTop {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background-color: #3273dc; /* Bulma primary */
	color: white;
	border: none;
	border-radius: 50%;
	width: 3.5rem;
	height: 3.5rem;
	font-size: 1.5rem;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
	opacity: 0.7;
	transition: opacity 0.3s ease;
	z-index: 1000;
}

	#toTop:hover {
		opacity: 1;
		background-color: #2759bd;
	}

/* Navbar desktop custom */
.hero-foot {
	background-color: white;
	border-bottom: 1px solid #ddd;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
}

.hero-menu-desktop {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0rem 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

	.hero-menu-desktop ul {
		display: flex;
		list-style: none;
		padding-left: 0;
		margin-bottom: 0;
	}

		.hero-menu-desktop ul li {
			margin-left: 2rem;
		}

			.hero-menu-desktop ul li a {
				color: #363636;
				font-weight: 600;
				text-decoration: none;
				font-size: 1rem;
				transition: color 0.3s ease;
				padding: 0.5rem 0;
				border-bottom: 2px solid transparent;
			}

				.hero-menu-desktop ul li.is-active a,
				.hero-menu-desktop ul li a:hover {
					border-bottom-color: #3273dc;
					color: #3273dc;
				}

/* Logo desktop */
.website-logo-wrapper img {
	max-height: 90px;
	height: auto;
	width: auto;
	cursor: pointer;
}

/* Seções principais */
.section-light {
	background-color: #fafafa;
	padding: 5rem 1.5rem;
}

.section-color {
	background-color: #3273dc;
	color: white;
	padding: 5rem 1.5rem;
}

	.section-color h2,
	.section-color h3 {
		color: white;
	}

/* Títulos */
.section-title {
	font-weight: 700;
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}
/* Subtítulos */
.subtitle {
	font-size: 1.25rem;
	font-weight: 400;
	margin-bottom: 3rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* About Links styling */
.about-links .heading {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.about-links .subheading a {
	color: #3273dc;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.3s ease;
}

	.about-links .subheading a:hover {
		color: #2759bd;
	}

/* Service Icons */
.services .fa-3x {
	margin-bottom: 0.5rem;
	color: #ffe08a;
}

.services hr {
	border-color: #ffe08a;
	margin: 0.5rem auto 1rem;
	width: 50px;
}

.services h2 {
	font-weight: 600;
	font-size: 1.1rem;
	color: white;
}

/* Footer */
.footer {
	background-color: #43485c;
	color: #ddd;
	text-align: center;
	padding: 1rem 1.5rem;
	font-size: 0.9rem;
	margin-top: 2.5rem;
}

.footer2 {
	background-color: #1b0d7f;
	color: #ddd;
	text-align: center;
	padding: 1rem 1.5rem;
	font-size: 0.9rem;
	margin-top: 3rem;
}

.hero-menu-desktop img {
	transform: scale(1.3);
	transform-origin: left center;
}

/* Estilo específico para o logo no menu mobile */
.navbar.is-hidden-desktop .navbar-item img {
	height: 100px; /* ou maior conforme desejar */
	max-height: none;
	margin-top: -10px; /* ajusta o alinhamento */
	transition: height 0.3s ease;
}

.navbar.is-hidden-desktop .navbar-brand {
	min-height: 80px;
	align-items: center;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
	.hero-menu-desktop {
		display: none;
	}

	.services .column {
		margin-bottom: 2rem;
	}

	.about-me p {
		font-size: 1rem;
	}
}

#toTop {
	background-color: #43485c !important;
}

#toTop:hover {
	background-color: #2f3342 !important;
}

/* Exibir apenas em telas maiores que 1024px */
@media (max-width: 1024px) {
	#toTop {
		display: none !important;
	}
}
