* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', sans-serif;
}

body {
	background-color: #0b3b6a;
}

.container {
	max-width: 1200px;
	margin: auto;
	padding: 0px;
}

.profile {
	text-align: center;
	margin-bottom: 40px;
	margin-top: 50px;

}

.profile img {
	width: 250px;
	height: 250px;
	border-radius: 0%;
}

.profile h1 {
	color: white;
	margin-top: 10px;
}

.profile p {
	color: #d0e6ff;
	font-size: 1.1em;
}

.cards {
	display: flex;
	flex-wrap: wrap;
	gap: 0px;
	justify-content: center;
}

.card {
	border-radius: 20px;
	overflow: hidden;
	flex: 1 1 300px;
	max-width: 600px;
}

.card img {
	width: 100%;
	display: block;
}

@media (min-width: 768px) {
	.card {
		flex: 0 1 calc(50% - 20px);
	}
}

.archivo-<uniquifier> {
	font-family: "Archivo", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;
}


.foto-container {
	display: inline-block;
	border-radius: 50%;
	padding: 12px;
	/* largura da borda */
	/*background: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,0.0));*/
	padding-bottom: 9px;
}

.foto-container-sem-borda {
	display: inline-block;
	border-radius: 0% !important;
	padding: 0px;
	/* largura da borda */
	background: none;
	padding-bottom: 0px;

}


.foto-perfil {
	display: block;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	object-fit: cover;
}

.profile p {
	color: #FFF;
	opacity: 0.8;
}

h2 {
	color: #fff;
	font-size: 28px;
	font-weight: 400;
}

.foto-perfil-com-borda {
	display: block;
	width: 180px;
	height: 180px;
	border-radius: 0 !important;
	object-fit: cover;
}

.foto-perfil-sem-borda {
	display: block;
	width: 230px !important;
	height: 230px !important;
	border-radius: 0;
	object-fit: cover;
	border-radius: 0 !important;
}

.borda-externa {
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background: linear-gradient(45deg, black 0%, transparent 50%, black 100%);
	padding: 0px;
	/* Cria o efeito de borda preta */
	display: flex;
	align-items: center;
	justify-content: center;
}

.borda-dourada {
	width: 80%;
	height: 80%;
	border-radius: 50%;
	background: linear-gradient(145deg, #d4af37 0%, transparent 50%, #d4af37 100%);
	border: 0px solid #d4af37;
	/* Anel dourado */
	padding: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.borda-dourada img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.botao-container {
	width: 100%;
	margin: 0 auto;
	margin-bottom: 20px
}

.botao-wrapper {
	position: relative;
	width: 100%;
}

.botao-icon {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	font-size: 20px;
	z-index: 2;
	/* acima do botão */
	pointer-events: none;
}

.botao-gradiente {
	width: 100%;
	padding: 36px;
	padding-left: 60px;
	/* espaço para o ícone */
	border-radius: 0px;
	font-weight: bold;
	font-size: 18px;
	color: white;
	border: 1px solid;
	border-image: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.01)) 1;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	text-align: center;
	cursor: pointer;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}

.botao-gradiente {
	transition: all 0.3s ease;
}

.botao-gradiente:hover {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.15));
	border-image: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1)) 1;
	box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
	transform: scale(1.01);
}

@media (max-width: 480px) {
	.botao-gradiente {
		font-size: 16px;
		padding: 30px;
		padding-left: 60px;
	}

	.botao-icon {
		font-size: 18px;
		left: 16px;
	}
}