:root{
	--white: #CBCBCB;
	--grisclaro: #808080;
	--grisoscuro: #333333;
	--negro: #1A1A1A;
	--xs: 16px;
	--sm: 20px;
	--md: 24px;
	--lg: 32px;
	--xl: 40px;
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Lexend Deca', sans-serif;
}

body {
	background-color: #1A1A1A;
}

.container{
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}

.parte-uno{
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100vh;
	justify-content: center;
	align-items: center;
	position: relative;
}

.uno__logonombre{
	color: var(--white);
	font-size: 100px;
	font-weight: 600;
}

.uno__texto{
	display: flex;
	flex-direction: column;
	margin: 40px 0;
}
.uno__title{
	color: var(--grisclaro);
	font-size: var(--xl);
	font-weight: 400;
	text-align: center;
}

.uno__subtitle{
	color: var(--grisclaro);
	font-size: var(--sm);
	font-weight: 200;
	text-align: center;
	letter-spacing: 2px;
}

.uno__menu{
	display: flex;
	flex-direction: column;
	position: absolute;
	left: 40px;
	bottom: 40px;
}

.menuBotton{
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: var(--grisclaro);
	margin: 20px;
}

.menuBotton:hover{
	background-color: var(--white);
	transition: all 0.3s ease;
}

.uno__redes{
	display: flex;
	position: absolute;
	right: 40px;
	bottom: 40px;
}

.uno__icon{
	margin: 0 20px;
	
}
.fab {
	font-size: 32px;
	text-decoration: none;
	margin: 0 20px;
	color: var(--white);
}

.fab:hover {
	color: var(--grisclaro);
}


.contLogo{
	display: flex;
	justify-content: center;
	width: 400px;
}

.imgLogo{
	width: 80%;
	height: auto;
	text-align: center;
}

.glow {	
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 40px 40px 200px 200px #CBCBCB1F;
}

.parte-dos{
	display: flex;	
	width: 100%;
	height: 100vh;
	justify-content: center;
	align-items: center;
	
	position: relative;
}

.dos__container{
	display: flex;
	justify-content: center;
	align-items: center;
}

.dos__vertical{
	position: absolute;
	display: flex;	
	align-items: center;
	bottom: 320px;
	left: -220px;
	transform: rotate(-90deg);
}

.dos__line{
	background-color: var(--white);
	width: 400px;
	height: 2px;
	margin: 0 20px;
	top: 8px;
}

.dos__title{
	color: var(--white);
	font-size: var(--lg);
	font-weight: 400;
	margin: 0;
	padding: 0;
}

.dos__left{
	display: flex;
	flex-direction: column;
	width: 40%;
	margin: 0 20px;
	padding: 0 40px;
}

.dos__contImage{
	margin: 20px 0;
}

.dos__image{
	width: 100%;
}

.dos__texto{
	color: var(--white);
	font-size: var(--xs);
	font-weight: 200;
	letter-spacing: 2px;
	margin-bottom: 20px;
	text-align: justify;
}

.dos__rigth{
	display: flex;
	flex-direction: column;
	width: 40%;
	margin: 0 20px;
	justify-content: center;
	align-items: center;
	background-color: var(--negro);
	box-shadow: 10px 10px 20px 4px;
	border-radius: 20px;
	z-index: 2;
}
.dos__form{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 80%;
	padding: 20px 0;
}

.dos__titleForm{
	color: var(--white);
	font-size: var(--lg);
	font-weight: 400;
	margin: 20px 0;
}

.dos__input{
	width: 100%;
	height: 40px;
	margin: 20px 0;
	padding: 4px 4px 4px 12px;
	border-radius: 10px;
	font-size: var(--sm);
	color: var(--grisclaro);
}

.dos__textarea{
	width: 100%;
	height: 160px;
	margin: 20px 0;
	padding: 4px 4px 4px 12px;
	border-radius: 10px;
	font-size: var(--sm);
	color: var(--grisclaro);
}

.dos__boton{
	color: var(--white);
	background-color: var(--grisclaro);
	font-size: var(--md);
	font-weight: 400;
	border: 1px solid var(--grisclaro);
	width: 200px;
	height: 40px;
	margin: 20px 0;
	border-radius: 50px;
	cursor: pointer;
}

.dos__boton:hover{
	color: var(--grisoscuro);
	background-color: var(--white);
	border: 1px solid var(--grisclaro);
	transition: all 0.3s ease;
}

.dos__redes{
	position: absolute;
	right: 40px;
	bottom: 40Px;
}

.dos__glow{
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 20px 40px 400px 400px #CBCBCB1F;
}

.parte-tres{
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100vh;
	justify-content: center;
	align-items: center;
}

.tres__container{
	display: flex;
	width: 90%;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.tres__left{
	display: flex;
	flex-direction: column;
	width: 65%;
	padding-right: 80px;
}

.tres__title{
	color: var(--white);
	font-size: var(--xl);
	font-weight: 400;
	margin: 12px 0;
}

.tres__subContainer{
	display: flex;
	align-items: center;
}

.tres__subTitle{
	color: var(--white);
	font-size: var(--sm);
	font-weight: 200;
	margin: 0;
}

.tres__line{
	width: 40%;
	height: 1px;
	margin: 0 20px;
}

.tres__texto{
	color: var(--white);
	font-size: var(--xs);
	font-weight: 200;
	margin: 10px 0 10px 0;
	padding-right: 40px;
	text-align: justify;
}

.tres__contRedes{
	display: flex;
	flex-direction: column;
	margin: 20px 0;
}
.tres__redestitle{
	color: var(--white);
	font-size: var(--md);
	font-weight: 200;
	margin: 12px 0;
}

.tres__redes{
	display: flex;
	margin: 20px 0;	
}

.fa-brands {
  color: var(--white);
  font-size: 28px;
	margin: 0 12px;
	transition: all 0.5s ease;
}

.fa-brands:hover{
	transform: translateY(-4px);
	opacity: 50%;
}

.tres__rigth{
	display: flex;
	flex-direction: column;
	width: 25%;
}

.tres__cuadrado{
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #2843CA;
	box-shadow: 8px 8px 16px 0px;
	width: 240px;
	height: 240px;
	border-radius: 32px;
}

.tres__cuadradoDos{
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--negro);
	box-shadow: 4px 4px 16px 4px #000;
	width: 220px;
	height: 220px;
	border-radius: 24px;
	transition: all .5s ease;
}

.tres__cuadradoDos:hover{
	
	box-shadow: -4px -4px 16px 4px #000;
	
}

.tres__logo{
	width: 160px;
}


@media (max-width: 1000px) {
	.uno__logonombre{
		text-align: center;
	}

	.uno__menu{		
		left: 40px;
		bottom: 80px;
	}

	.tres__container{		
		flex-direction: column;
		width: 100%;		
		padding: 20px;
	}

	.tres__texto{		
		
		padding-right: 0px;
		
	}

	.tres__left{		
		width: 90%;
		padding-right: 0px;
	}

	.tres__rigth{
		justify-content: center;
		align-items: center;
		width: 90%;
	}
}

@media (max-width: 400px) {
	.parte-uno{
		height: 800px;
	}

	.uno__logonombre{
		font-size: 60px;
		text-align: center;
	}

	.imgLogo{
		width: 50%;		
	}

	.uno__menu{		
		left: 12px;
		bottom: 12px;
	}

	.parte-tres{
		height: auto;
		padding: 40px 12px;
	}

	.tres__container{		
		flex-direction: column;
		width: 100%;		
		padding: 0px;
	}

	.tres__texto{			
		padding-right: 0px;		
	}

	.tres__left{		
		width: 90%;
	}

	.tres__rigth{
		justify-content: center;
		align-items: center;
		width: 90%;
	}
}