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

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	/*background: #E6EAE1;*/
}

h2 {
	font-size: 2.5rem;
	color: #333;
	text-align: center;
	margin-bottom: 2rem;
	position: relative;
}

/* Navegação */
header {
	background: #333;
	padding: 1rem 2rem;
	position: fixed;
	width: 100%;
	top: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

nav {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

nav ul {
	list-style: none;
	display: flex;
	/* justify-content: flex-end; */
	gap: 2rem;
}

nav ul li {
	margin-left: 2rem;
}

nav ul li a {
	color: white;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 1rem;
	letter-spacing: 1px;
	transition: color 0.3s ease;
}

/* Sections  */
section {
	padding: 5rem 2rem;
	min-height: 100vh;
}

/* Conteudos  */
.hero {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 100vh;
	background: #f4f4f4;
}

.hero h1 {
	font-size: 5rem;
	/* font-size: 5rem; */
	margin-bottom: 1rem;
}

.hero p {
	font-size: 2rem;
	margin-bottom: 1rem;
}

h1 {
	font-family: 'Garamond', sans-serif;
}

/* Sobre - Conteudo */
.sobre-conteudo {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
	/* gap: 2rem; */
	/* max-width: 1200px; */
	/* margin: 0; */

}

.sobre-conteudo img {
	width: 300px;
	border-radius: 10px;
	/* border-radius: 0%;  */
}

.sobre-conteudo p {
	width: 100%;
	/* max-width: 600px; */
	font-size: 24px;
	line-height: 1.6;
	text-align: justify;
}

/* Skills - Conteudo */
.skills-conteudo {
	/* display: flex;
	align-items: center;
	gap: 2rem;
	max-width: 1200px;
	margin: 0; */
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	padding: 2rem 0;
}

.skills-conteudo img {
	width: 300px;
	border-radius: 50%;
}

.skill-box {
	background: #ffffff;
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s;
}

.skill-box:hover {
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}


.skill-box h3 {
	margin-bottom: 1rem;
	color: #333;
	font-size: 1.5rem;
}

.skill-box p {
	color: #666;
	font-size: 1rem;
}

/* Projeto - Conteudo */
.projetos-grade {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.projetos-conteudo {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
	transition: box-shadow 0.3s ease;
}

.projetos-conteudo:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.projetos-conteudo img {
	width: 100%;
    max-width: 300px;        /* largura máxima da imagem */
    height: 180px;           /* altura fixa para padronizar */
    object-fit: cover;       /* recorta a imagem proporcionalmente sem distorcer */
    border-radius: 8px;
    display: block;
    margin: 0 auto 10px auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.projetos-conteudo .btn {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 10px auto 0 auto;
    padding: 10px;
    text-align: center;
    background-color: #333;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.projetos-conteudo .btn:hover {
	background-color: #333;
}

/*
-- Contato - Conteudo --
.contato-conteudo {
	max-width: 600px;
	margin: 0 auto;
}
*/

.contato-links {
	display: flex;
	justify-content: center;
	gap: 5rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.contato-links a img {
	width: 50px;
	height: 50px;
	transition: transform 0.3s ease;
}

.contato-links a:hover img {
	transform: scale(1.1);
}

.contato-item {
	text-align: center;
}

.contato-item a {
	text-decoration: none;
	color: none;
}

.contato-item img {
	width: 70px;
	height: 70px;
	transition: transform 0.3s ease;
}

.contato-item:hover img {
	transform: scale(1.1);
}

.contato-item p {
	margin-top: 0.7rem;
	font-size: 1.2rem;
	color: #333;
	font-weight: bold;
}

form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

input, textarea {
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: 4px;
}

textarea {
	height: 150px;
}

.btn {
	background: #333;
	color: white;
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
}

.btn:hover {
	background: #444;
}

/* Footer */
footer {
	background: #333;
	color: white;
	text-align: center;
	padding: 1rem;
}

/* Design Responsivo */
@media (max-width: 780px) {
	.sobre-conteudo {
		flex-direction: column;
		text-align: center;
	}

	nav ul {
		justify-content: center;
	}
}
