* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

html {
	background-color: rgba(15, 15, 15, 0.6);
}

.navbar-container {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	background-color: rgba(0, 0, 0, 0.6);
	padding: 10px 20px;
	position: absolute;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	z-index: 100;
}

.navbar-container > ul {
	display: flex;
	list-style: none;
}

.navbar-container > ul > li {
	margin-right: 40px;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 1.2rem;
	color: white;
	letter-spacing: 0.1rem;
	opacity: 50%;
	transition: opacity 0.3s;
	cursor: pointer;
}

.navbar-container > ul > li:hover {
	opacity: 100%;
}

/* Showcase */

.efeito-showcase-container {
	visibility: hidden;
}

.showcase-container {
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	background-image: url("images/Screenshot_1.png");
	background-size: cover;
	background-position: center;

	/* overlay */

	background-color: rgba(0, 0, 0, 0.6);
	background-blend-mode: color;
}

.showcase-container > h1 {
	font-weight: 600;
	font-size: 4rem;
	margin-bottom: 20px;
}

.showcase-container > p {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 1.25rem;
	color: #eee;
	border-bottom: 1.5px solid white;
	padding-bottom: 8px;
	padding-left: 8px;
	padding-right: 8px;
	letter-spacing: 0.15rem;
}

.about-me-content {
	display: flex;
	align-items: center;
	margin-top: 50px;
}

.about-me-content img {
	width: 320px;
	height: 320px;
	margin-right: 50px;
}

.about-me-content p {
	color: white;
	line-height: 2rem;
}

/* HABILIDADES */

.skills-content {
	margin-top: 108px;
	display: grid;
	justify-content: space-between;
	padding: 40px;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.skill-item {
	text-align: center;
	background-color: #202020;
	padding: 50px;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 20px;
	margin-right: 10px;
	width: 100%;
}

.skill-item span {
	margin-top: 15px;
	margin-bottom: 15px;
	color: white;
	font-weight: 500;
}

.skill-item p {
	color: white;
	text-align: center;
}

/* PROJETOS  */

.projects-content {
	margin-top: 118px;
}

/* INVERTE O PROJETO PARA COMEÇAR PELA ESQUERDA */

.projects-content .project-item:nth-child(2) {
	justify-content: flex-end;
	text-align: right;
}

.projects-content .project-item:nth-child(2) > .project-item-image {
	order: 2;
	margin-left: 50px;
}

.projects-content .project-item:nth-child(2) > .project-text {
	order: 1;
}
.projects-content .project-item:nth-child(4) {
	justify-content: flex-end;
	text-align: right;
}

.projects-content .project-item:nth-child(4) > .project-item-image {
	order: 2;
	margin-left: 50px;
}

.projects-content .project-item:nth-child(4) > .project-text {
	order: 1;
}

/* FIM */

.project-item {
	display: flex;
	align-items: center;
	margin-bottom: 50px;
}

.project-text {
	margin-left: 50px;
	max-width: 600px;
}

.project-text p {
	color: white;
	opacity: 75%;
	line-height: 30px;
}

.project-text h3 {
	color: white;
	font-weight: 500;
	font-size: 2.25rem;
}

.project-item > img {
	width: 300px;
	height: 300px;
	border-radius: 20px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 15px;
}

.project-item-image {
	width: 300px;
	height: 300px;
	background-size: cover;
	border-radius: 15px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.project-item-1 {
	background-image: url("https://cdn.areademembros.com/cache/XR11woLtefs48MVTD6htyIXSYZlbJLw6CSlYGpTB-550x550-resized.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.project-item-2 {
	background-image: url("images/Screenshot_2.png");
}

.project-item-3 {
	background-image: url("images/Screenshot_3.png");
}
.project-item-4 {
	background-image: url("images/edu-device-logo.jpeg");
}

/* RODAPÉ */

.contact-form {
	display: flex;
	flex-direction: column;
	margin-top: 100px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.contact-form .form-input {
	margin-bottom: 20px;
}

.footer-container {
	width: 100%;
	background-color: black;
	display: flex;
	color: rgba(255, 255, 255, 0.75);
	justify-content: space-between;
	padding: 50px;
}

.social-items i {
	margin-right: 25px;
}

/* utilities */

a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.75);
}

.section-container {
	width: 100%;
	background-color: #111;
	padding-top: 120px;
	padding-bottom: 120px;
}

.section-content {
	max-width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.section-title {
	font-weight: 600;
	font-size: 3rem;
	letter-spacing: 0.15rem;
	color: #fff;
	text-transform: uppercase;
	padding-bottom: 8px;
	padding-left: 8px;
	padding-right: 8px;
	border-bottom: 1.5px solid white;
	text-align: center;
	width: fit-content;
	margin: auto;
}

.rounded {
	border-radius: 100%;
}

.form-input {
	border: none;
	border-radius: 10px;
	background-color: #202020;
	padding: 20px;
	color: rgba(255, 255, 255, 0.5);
	resize: none;
}

.form-input:focus {
	outline: 1px solid rgba(255, 255, 255, 0.5);
}

.form-button {
	border: none;
	border-radius: 10px;
	background-color: black;
	padding: 20px;
	color: white;
	text-transform: uppercase;
	font-weight: 600;
}

.success,
.error {
	text-align: center;
}

.success {
	color: greenyellow;
}

.error {
	color: tomato;
}

.whatsapp-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	border-radius: 50%;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: transform 0.2s ease-in-out;
}

.whatsapp-button:hover {
	transform: scale(1.1);
}

.whatsapp-button img {
	width: 35px;
	height: 35px;
}

.whatsapp-button a {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;

	text-decoration: none;
}
