.social-section {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: clamp(20px, 3vw, 50px);

	width: 100%;

	padding: 40px 50px 50px 50px;
	box-sizing: border-box;

	position: relative;
	margin-top: 50px;

	border-radius: clamp(20px, 2vw, 32px);
	background: radial-gradient(66.79% 78.55% at 75.77% 100%, #7DF5FF 0%, rgba(125, 245, 255, 0.00) 100%), #6855F8;
}

.social-section .container-section__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;

	width: 50%;
}

.social-section .container-section__title {
	color: var(--white-color);
}

.social__description {
	font-size: 1em;
	font-weight: 400;
	line-height: 150%;
	font-style: normal;

	color: var(--white-color);
}

.social__action {
	padding: 10px 20px 12px 20px;
	box-sizing: border-box;

	border-radius: 50px;
	
	transition: background .2s ease;

	font-size: 1em;
	font-weight: 500;
	font-style: normal;
	line-height: normal;
	text-align: center;

	color: var(--accent-color);
	background-color: var(--highlight-color);
}

.social__action:hover {
	background-color: var(--white-color);
}

.social__image-phone {
	position: absolute;
	bottom: 0;
	right: 10%;
	height: 110%;
}

.social__image-qrcode {
	display: block;
	height: 50%;
	max-height: 150px;
	aspect-ratio: 1/1;

	position: absolute;
	right: 30%;
	top: 50%;

	transform: translateY(-50%);


	border-radius: clamp(12px, 2vw, 20px);
	background: var(--white-color);

	box-shadow: 15px 15px 30px 0px rgba(15, 15, 30, 0.15);
}







@media screen and (max-width: 950px) {
	.social-section {
		height: 450px;
	}
	.social__image-phone {
		right: 5%;
		height: 90%;
	}
	.social__image-qrcode {
		top: 60%;
	}
}

@media screen and (max-width: 820px) {
	.social-section {
		padding: 20px 20px 30px 20px;
	}
	.social__image-qrcode {
		transform: unset;
		left: 20px;
		bottom: 20px;
		right: unset;
		top: unset;
	}
}

@media screen and (max-width: 700px) {
	.social-section {
		height: 650px;
	}
	.social-section .container-section__header{
		width: 100%;
	}
	.social__action {
		width: 100%;
	}
	.social__image-phone {
		height: 70%;
		left: 50%;
		transform: translateX(-50%);
	}
	.social__image-qrcode {
		display: none;
	}
}

@media screen and (max-width: 550px) {
	.social-section {
		height: 600px;
	}
	.social__image-phone {
		height: 65%;
	}
}

@media screen and (max-width: 450px) {
	.social__image-phone {
		height: 55%;
	}
}







