﻿body, html {
	height: 100%;
	margin: 0;
	background: linear-gradient(180deg, #f7f4f1, #e8e4e0);
	font-family: 'Open Sans', sans-serif;
}

.container-main {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.content {
	max-width: 450px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: auto; /* evita scroll externo */
}

.content {
	padding-top: 80px;
	overflow-y: auto;
}

.scroll-area {
	flex: 1;
	overflow-y: auto;
	width: 100%;
	padding: 10px 0;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE e Edge */
}

	.scroll-area::-webkit-scrollbar {
		display: none; /* Chrome, Safari */
	}

/*	.profile-img {
			width: 120px;
			height: 120px;
			object-fit: cover;
			border-radius: 50%;
			margin-bottom: 15px;
			border: 3px solid #fff;
			box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
		}*/

/* Estilo geral da imagem (desktop e tablet) */
.profile-img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 15px;
	border: 3px solid #fff;
	box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
	margin-top: 0; /* padrão sem espaçamento extra */
}

/* Somente no mobile (até 768px de largura) */
@media (max-width: 768px) {
	.profile-img {
		margin-top: 140px !important;
	}
}


h1 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 5px;
}

.subtitle {
	font-size: 0.95rem;
	color: #555;
	margin-bottom: 15px;
}

.bio {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 20px;
	padding: 0 10px;
}

.social-icons a {
	font-size: 1.4rem;
	color: #444;
	margin: 0 8px;
	transition: color 0.3s;
}

	.social-icons a:hover {
		color: #000;
	}

.link-btn {
	display: block;
	margin: 10px auto;
	padding: 12px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	background: #fff;
	border: 1px solid #ddd;
	color: #333;
	transition: all 0.2s ease-in-out;
	max-width: 400px;
}

	.link-btn:hover {
		background: #f0f0f0;
	}

.bio {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 20px;
	padding: 0 10px;
	text-align: center; /* 🔥 Centraliza o texto */
}

.link-btn i {
	margin-right: 8px;
	font-size: 1.1rem;
}

.link-btn {
	display: block;
	margin: 10px auto;
	padding: 12px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	background: #fff;
	border: 1px solid #ddd;
	color: #333;
	transition: all 0.2s ease-in-out;
	max-width: 400px;
	text-align: center; /* ✅ centraliza texto e ícone */
}

	.link-btn i {
		margin-right: 6px; /* espaço entre ícone e texto */
	}


.link-btn {
	display: block;
	width: 100%; /* 🔥 ocupa toda a largura */
	margin: 10px 0;
	padding: 14px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	background: #fff;
	border: 1px solid #ddd;
	color: #333;
	transition: all 0.2s ease-in-out;
	text-align: center;
}

	.link-btn:hover {
		background: #f0f0f0;
	}

.footer {
	text-align: center;
	padding: 20px 10px;
	font-size: 0.85rem;
	color: #555;
	margin-top: 0px;
}

	.footer p {
		margin: 0;
		font-weight: 600;
		letter-spacing: 2px;
	}

	.footer small {
		display: block;
		margin-top: 8px;
		font-size: 0.75rem;
		color: #777;
	}
