/* Fonte Poppins do Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	background-color: #f9f9f9;
	color: #333;
	line-height: 1.6;
}

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

/* Header */
#header-wrapper {
	background-color: #222;
}

#nav ul {
	list-style: none;
	text-align: center;
	padding: 20px 0;
}

#nav ul li {
	display: inline-block;
	margin: 0 15px;
}

#nav ul li a {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	padding: 8px 12px;
	transition: background 0.3s ease;
}

#nav ul li a:hover,
#nav ul li.current a {
	background-color: #a7ce45;
	color: #000;
	border-radius: 4px;
}

/* Conteúdo principal */
#banner-wrapper {
	background-color: #fff;
	padding: 40px 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.perfil-box {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 40px;
}

.perfil-box #logo {
	flex: 1 1 250px;
	text-align: center;
}

.perfil-box #logo img {
	border-radius: 50%;
	width: 250px;
	height: 250px;
}

.perfil-conteudo {
	flex: 2 1 500px;
}

.subtitle {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #555;
}

h2 {
	font-size: 28px;
	margin-bottom: 10px;
}

h3 {
	font-size: 22px;
	margin-top: 30px;
	margin-bottom: 10px;
	color: #444;
}

p.descricao {
	font-size: 16px;
}

ul {
	list-style: disc;
	padding-left: 20px;
}

ul li {
	margin-bottom: 6px;
}

/* Rodapé */
footer {
	background-color: #222;
	color: white;
	padding: 20px 0;
	text-align: center;
}

footer img {
	margin-top: 10px;
	transition: transform 0.2s ease;
}

footer img:hover {
	transform: scale(1.1);
}

/* Responsivo para mobile */
@media (max-width: 768px) {
	.perfil-box {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.perfil-box #logo img {
		width: 180px;
		height: 180px;
	}

	.perfil-conteudo {
		padding: 0 10px;
	}

	#nav ul li {
		display: block;
		margin: 10px 0;
	}
}

footer .social-icons {
	margin-top: 10px;
	display: flex;
	justify-content: center;
	gap: 15px;
}

footer .social-icons a img {
	transition: transform 0.2s ease;
}

footer .social-icons a img:hover {
	transform: scale(1.2);
}


/* Container individual de cada projeto */
.projeto {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

/* Espaço entre projetos */
.projeto-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.projeto:hover {
	transform: scale(1.02);
}

/* Imagem */
.img-projeto {
	text-align: center !important;
	max-width: 240px !important;
	height: 240px !important;
	object-fit: contain !important;
	margin: 0 auto 15px;
	border-radius: 8px !important;
	background-color: #fff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-projeto:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Botão */
.btn-ver-projeto {
	display: inline-block;
	margin-top: 15px;
	padding: 10px 20px;
	background-color: #a7ce45;
	color: #000;
	text-decoration: none;
	font-weight: bold;
	border-radius: 5px;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-ver-projeto:hover {
	background-color: #8ab93b;
	transform: scale(1.05);
}

/* Animação */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsivo */
@media (max-width: 768px) {
	.img-projeto {
		height: auto;
		max-width: 100%;
	}

	.btn-ver-projeto {
		width: 90%;
		font-size: 16px;
	}
}

/* Títulos de projetos */
.projeto h3 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

/* Descrição dos projetos */
.projeto p {
  font-size: 23px;
  font-weight: 300;
  color: #444;
  max-width: 700px;
  margin: 0 auto 15px;
  padding: 0 10px;
}

.contato-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.contato-container h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.contato-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
  font-size: 18px;
}

.contato-item a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contato-item a:hover {
  color: #a7ce45;
}

@media (max-width: 600px) {
  .contato-item {
    flex-direction: column;
  }
}


