@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');
:root {
	--primary: #0d6efd;
	--primary-light: #3387ff;
	--primary-dark: #0a58ca;
	--secondary: #e9ecef;
	--dark: #212529;
	--gray-dark: #343a40;
	--gray: #6c757d;
	--gray-light: #f8f9fa;
	--white: #ffffff;
	--font-sans: 'Inter', sans-serif;
	--font-heading: 'Poppins', sans-serif;
	--container-width: 1200px;
	--section-padding: 5rem 0;
	--border-radius: 0.5rem;
	--transition-slow: 0.5s ease;
	--transition-normal: 0.3s ease;
	--transition-fast: 0.2s ease;
}

@font-face {
	font-family: 'satoshi-bold';
	src: url('../assets/satoshi/satoshi-bold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-sans);
	line-height: 1.6;
	color: var(--dark);
	background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

p {
	margin-bottom: 1rem;
}

a {
	color: var(--primary);
	text-decoration: none;
	transition: color var(--transition-fast);
}

a:hover {
	color: var(--primary-dark);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul,
ol {
	list-style-position: inside;
	margin-bottom: 1rem;
	padding-left: 0;
}

ul li {
	list-style-type: none;
}

section {
	padding: var(--section-padding);
	scroll-margin-top: 80px;
	/* Ajustado para a altura da navbar */
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 1.5rem;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInDelay {
	0%,
	50% {
		opacity: 0;
		transform: translateY(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.animate-fade-in {
	animation: fadeIn 0.5s ease-out forwards;
}

.animate-fade-in-delay {
	animation: fadeInDelay 0.8s ease-out forwards;
}

.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: all var(--transition-normal);
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background-color: var(--primary);
	color: var(--white);
	border: none;
}

.btn-primary:hover {
	background-color: var(--primary-dark);
	color: var(--white);
}

.btn-outline {
	background-color: transparent;
	color: var(--primary);
	border: 1px solid var(--primary);
}

.btn-outline:hover {
	background-color: var(--primary);
	color: var(--white);
}

.btn-submit {
	width: 100%;
}

@media (min-width: 768px) {
	.btn-submit {
		width: auto;
	}
}

.text-center {
	text-align: center;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 2.5rem;
}

.highlight {
	color: var(--primary);
}

.highlight-text {
	font-family: 'satoshi-bold', sans-serif;
	font-weight: 700;
	color: var(--primary);
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1rem 0;
	background-color: transparent;
	transition: all var(--transition-normal);
}

.navbar.scrolled {
	padding: 0.75rem 0;
	background-color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(5px);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo {
	font-family: 'satoshi-bold', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
}

.nav-logo span {
	color: var(--primary);
}

.desktop-nav {
	display: none;
}

@media (min-width: 768px) {
	.desktop-nav {
		display: flex;
		gap: 2rem;
	}
}

.nav-link {
	color: var(--dark);
	font-weight: 500;
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--primary);
	transform: scaleX(0);
	transform-origin: bottom right;
	transition: transform var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

.mobile-nav-toggle {
	display: flex;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--dark);
	cursor: pointer;
}

@media (min-width: 768px) {
	.mobile-nav-toggle {
		display: none;
	}
}

.mobile-nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: var(--white);
	padding: 1rem 0;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	animation: fadeIn 0.3s ease-out;
}

.mobile-nav.active {
	display: block;
}

.mobile-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-nav li {
	margin-bottom: 0.5rem;
	text-align: center;
}

.mobile-nav .nav-link {
	display: block;
	padding: 0.5rem 0;
}

.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	background: linear-gradient(to right, #f8f9fa, #e9ecef);
	padding-top: 5rem;
	overflow: hidden;
}

.pattern-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(13, 110, 253, 0.05);
	background-image: url("assets/img/background.jpg");
	z-index: 0;
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 1;
}

@media (min-width: 768px) {
	.hero-content {
		flex-direction: row;
		justify-content: space-between;
	}
}

.hero-text {
	margin-bottom: 2rem;
	text-align: center;
}

@media (min-width: 768px) {
	.hero-text {
		width: 60%;
		text-align: left;
		margin-bottom: 0;
	}
}

.hero-text h1 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
}

.hero-text h1 span {
	display: block;
}

@media (min-width: 768px) {
	.hero-text h1 {
		font-size: 3rem;
	}
}

@media (min-width: 992px) {
	.hero-text h1 {
		font-size: 3.5rem;
	}
}

.hero-subtitle {
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--gray-dark);
	margin-bottom: 2rem;
	min-height: 50px;
}

.typed-cursor {
	opacity: 1;
	animation: typedjsBlink 0.7s infinite;
}

@keyframes typedjsBlink {
	50% {
		opacity: 0.0;
	}
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}

@media (min-width: 768px) {
	.hero-buttons {
		justify-content: flex-start;
	}
}

.hero-image {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
}

@media (min-width: 768px) {
	.hero-image {
		width: 40%;
		margin-top: 0;
	}
}

.profile-container {
	position: relative;
}

.profile-image {
	width: 250px;
	height: 250px;
	border-radius: 50%;
	overflow: hidden;
	background: linear-gradient(to bottom right, var(--primary), var(--primary-dark));
	border: 4px solid var(--white);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	transition: transform var(--transition-slow);
}

.profile-image:hover {
	transform: scale(1.05);
}

@media (min-width: 768px) {
	.profile-image {
		width: 300px;
		height: 300px;
	}
}

.profile-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.quote-bubble {
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 120px;
	height: 120px;
	background-color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	font-size: 0.875rem;
	color: var(--gray-dark);
	transition: transform var(--transition-normal);
}

.quote-bubble:hover {
	transform: scale(1.1);
}

.about-section {
	background-color: var(--white);
}

.about-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

@media (min-width: 992px) {
	.about-content {
		flex-direction: row;
	}
	.personal-data,
	.professional-profile {
		width: 50%;
	}
}

.data-card {
	background-color: var(--gray-light);
	padding: 1.5rem;
	border-radius: var(--border-radius);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	height: 100%;
}

.data-card h3 {
	color: var(--primary);
	margin-bottom: 1.5rem;
}

.data-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.data-item {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
}

.data-icon {
	color: var(--primary);
	width: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 4px;
}

.data-text {
	flex: 1;
}

.data-label {
	font-weight: 600;
	color: var(--dark);
}

.professional-profile h3 {
	color: var(--primary);
	margin-bottom: 1rem;
}

.profile-text {
	color: var(--gray-dark);
}

.profile-text p {
	margin-bottom: 1.5rem;
}

.quote-box {
	margin-top: 2rem;
	padding: 1rem;
	background-color: #e6f0ff;
	border-left: 4px solid var(--primary);
	border-radius: 4px;
	font-style: italic;
}

.quote-box p {
	color: var(--gray-dark);
	margin-bottom: 0.5rem;
}

.quote-box span {
	display: block;
	margin-top: 0.5rem;
	font-size: 0.875rem;
	color: var(--gray);
	font-style: normal;
}

.skills-section {
	background-color: var(--gray-light);
}

.skills-content {
	max-width: 800px;
	margin: 0 auto;
}

.skill-bars {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

@media (min-width: 768px) {
	.skill-bars {
		grid-template-columns: repeat(2, 1fr);
	}
}

.skill-item {
	margin-bottom: 1.5rem;
}

.skill-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
}

.skill-name {
	font-weight: 500;
	color: var(--dark);
}

.skill-percentage {
	color: var(--primary);
	font-weight: 600;
}

.progress-bar {
	height: 10px;
	background-color: var(--secondary);
	border-radius: var(--border-radius);
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(to right, var(--primary-light), var(--primary));
	border-radius: var(--border-radius);
	width: 0;
	transition: width 1s ease-out;
}

.additional-skills {
	background-color: var(--white);
	padding: 1.5rem;
	border-radius: var(--border-radius);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.additional-skills h3 {
	color: var(--primary);
	margin-bottom: 1rem;
}

.skill-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.skill-tag {
	display: inline-block;
	padding: 0.5rem 1rem;
	background-color: var(--gray-light);
	border-radius: 100px;
	font-size: 0.875rem;
	color: var(--gray-dark);
	transition: all var(--transition-fast);
}

.skill-tag:hover {
	background-color: var(--primary);
	color: var(--white);
	transform: translateY(-2px);
}

.education-experience-section {
	background-color: var(--white);
}

.education-experience-section .row {
	display: flex;
	flex-wrap: wrap;
}

.education-experience-section .col-lg-6 {
	width: 100%;
}

@media (min-width: 992px) {
	.education-experience-section .col-lg-6 {
		width: 50%;
		padding: 0 1rem;
	}
}

.resume-section-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 2rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--primary-light);
	position: relative;
}

.resume-section-title::after {
	content: '';
	position: absolute;
	display: block;
	width: 50px;
	height: 2px;
	background: var(--primary);
	bottom: -2px;
	left: 0;
}

.education-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.education-item {
	position: relative;
	padding-left: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px dashed var(--secondary);
}

.education-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.education-item:before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 10px;
	height: 10px;
	background-color: var(--primary);
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.2);
}

.education-item h4 {
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 0.25rem;
	font-size: 1.1rem;
}

.education-status {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	background-color: #e6f0ff;
	color: var(--primary-dark);
	font-size: 0.75rem;
	font-weight: 500;
	border-radius: 100px;
	margin-bottom: 0.5rem;
}

.education-item p {
	color: var(--gray);
	margin-bottom: 0;
	font-size: 0.9rem;
}

.extracurricular {
	background-color: var(--gray-light);
	padding: 1.5rem;
	border-radius: var(--border-radius);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	height: 100%;
}

.course-list {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.course-list li {
	margin-bottom: 0.75rem;
	display: flex;
	gap: 0.5rem;
	color: var(--gray-dark);
	font-size: 0.9rem;
}

.course-list i {
	color: var(--primary);
	margin-top: 4px;
}

.experience-section {
	background-color: var(--gray-light);
}

.experience-list {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.experience-item-block {
	background-color: var(--white);
	padding: 1.5rem;
	border-radius: var(--border-radius);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
	border-left: 4px solid var(--primary);
}

.experience-header {
	display: flex;
	flex-direction: column;
	margin-bottom: 0.75rem;
	align-items: flex-start;
}

@media (min-width: 576px) {
	.experience-header {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

.experience-header h3 {
	font-size: 1.25rem;
	margin-bottom: 0.25rem;
	color: var(--dark);
}

.experience-period {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	background-color: var(--primary-light);
	color: var(--white);
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 100px;
	margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
	.experience-period {
		margin-bottom: 0;
	}
}

.experience-details {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-bottom: 1rem;
}

@media (min-width: 576px) {
	.experience-details {
		flex-direction: row;
		gap: 1.5rem;
		align-items: center;
	}
}

.company,
.location {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--gray);
	font-size: 0.9rem;
}

.company i,
.location i {
	color: var(--primary);
}

.experience-item-block p {
	color: var(--gray-dark);
	margin-bottom: 0;
	font-size: 0.95rem;
}

.portfolio-section {
	background-color: var(--white);
}

.portfolio-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin-bottom: 2.5rem;
}

.filter-btn {
	padding: 0.6rem 1.2rem;
	background-color: var(--gray-light);
	border: 1px solid var(--secondary);
	border-radius: 50px;
	cursor: pointer;
	font-weight: 500;
	color: var(--gray-dark);
	transition: all var(--transition-fast);
}

.filter-btn:hover {
	background-color: var(--secondary);
	border-color: var(--gray);
}

.filter-btn.active {
	background-color: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}

.portfolio-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 576px) {
	.portfolio-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.portfolio-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.portfolio-item {
	overflow: hidden;
	border-radius: var(--border-radius);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	transition: all var(--transition-normal);
	background-color: var(--gray-light);
}

.portfolio-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.portfolio-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-image img {
	transform: scale(1.1);
}

.portfolio-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	padding: 1rem;
	color: var(--white);
	opacity: 0;
	transform: translateY(20px);
	transition: all var(--transition-normal);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100%;
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
	transform: translateY(0);
}

.portfolio-category {
	display: inline-block;
	font-size: 0.75rem;
	color: var(--primary-light);
	margin-bottom: 0.25rem;
	text-transform: uppercase;
	font-weight: 600;
}

.portfolio-overlay h3 {
	font-size: 1.15rem;
	margin-bottom: 0.25rem;
	color: var(--white);
}

.portfolio-overlay p {
	font-size: 0.875rem;
	margin-bottom: 0;
	opacity: 0.9;
	line-height: 1.4;
}

.no-items-message {
	text-align: center;
	padding: 3rem 0;
	color: var(--gray);
}

.contact-section {
	background-color: var(--gray-light);
}

.contact-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

@media (min-width: 992px) {
	.contact-content {
		flex-direction: row;
	}
	.contact-info {
		width: 40%;
	}
	.contact-form-container {
		width: 60%;
	}
}

.contact-info {
	background-color: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
	color: var(--primary);
	margin-bottom: 1.5rem;
}

.info-items {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.info-item {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.info-icon {
	width: 50px;
	height: 50px;
	background-color: #e6f0ff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 1.5rem;
}

.info-text h4 {
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
	color: var(--dark);
}

.info-text p,
.info-text a {
	color: var(--gray-dark);
}

.info-text a:hover {
	color: var(--primary-dark);
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 0.5rem;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background-color: var(--gray-light);
	color: var(--gray-dark);
	border-radius: 50%;
	transition: all var(--transition-fast);
	font-size: 1.1rem;
}

.social-links a:hover {
	background-color: var(--primary);
	color: var(--white);
	transform: translateY(-3px);
}

.contact-form-container {
	background-color: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form-container h3 {
	color: var(--primary);
	margin-bottom: 1.5rem;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-row {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

@media (min-width: 576px) {
	.form-row {
		flex-direction: row;
	}
	.form-row .form-group {
		width: 50%;
	}
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--gray-dark);
}

.form-group input,
.form-group textarea {
	padding: 0.75rem 1rem;
	border: 1px solid #e2e8f0;
	border-radius: var(--border-radius);
	font-family: var(--font-sans);
	font-size: 1rem;
	transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.form-group textarea {
	resize: vertical;
	min-height: 150px;
}

.my-3 {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.loading,
.error-message,
.sent-message {
	text-align: center;
	padding: 0.75rem;
	margin-bottom: 1rem;
	border-radius: var(--border-radius);
	font-weight: 500;
}

.loading {
	background-color: #e6f0ff;
	color: var(--primary-dark);
}

.error-message {
	background-color: #ffe6e6;
	color: #cc0000;
}

.sent-message {
	background-color: #e6ffe6;
	color: #008000;
}

.footer {
	background-color: var(--gray-dark);
	color: var(--white);
	padding: 4rem 0 2rem 0;
	text-align: center;
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.footer-info {
	margin-bottom: 1rem;
}

.footer-logo-link {
	font-family: 'satoshi-bold', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 0.5rem;
	display: inline-block;
}

.footer-logo-link span {
	color: var(--primary-light);
}

.footer-quote {
	color: var(--gray-light);
	font-style: italic;
	max-width: 500px;
	margin: 0.5rem auto 1.5rem auto;
	font-size: 0.9rem;
}

.footer-quote small {
	font-size: 0.8rem;
	color: var(--gray);
}

.footer-social-copyright {
	width: 100%;
}

.footer .social-links {
	margin-bottom: 1.5rem;
	justify-content: center;
}

.footer .social-links a {
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--white);
}

.footer .social-links a:hover {
	background-color: var(--primary);
}

.copyright {
	font-size: 0.875rem;
	color: var(--gray);
	line-height: 1.5;
}

.scroll-to-top {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--primary);
	color: var(--white);
	border: none;
	cursor: pointer;
	z-index: 99;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	transition: all var(--transition-normal);
	animation: fadeIn 0.3s ease;
}

.scroll-to-top:hover {
	background-color: var(--primary-dark);
	transform: translateY(-3px);
}

.scroll-to-top.visible {
	display: flex;
	align-items: center;
	justify-content: center;
	animation: pulse 1.5s infinite ease-in-out;
}