*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial;
}

body{
	background: #111;
	color: white;
}

header{
	background: black;
	padding: 20px;
}

nav{
	display: flex;

	justify-content: space-between;
	align-items: center;
}

.logo{
	color: #0ea5ff;
}

nav ul{
	display: flex;
	list-style: none;
}

nav ul li{
	margin-left: 20px
}

nav ul li a{
	color: white;
	text-decoration: none;
	transition: 0.3s;
}

nav ul li a:hover{
	color: #0ea5ff;
}

.hero{
	height: 90vh;
	background: url('../imagens/banner.jpg')center/cover;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.hero-text h2{
	font-size: 60px;
}

.hero-text p{
	margin: 20px 0;
	font-size: 20px;
}

button{
	padding: 12px 25px;
	border: none;
	background: #0ea5ff;
	color: white;
	cursor: pointer;
	border-radius: 5px;
	transition: 0.3s;
}

button:hover{
	background: #0077cc;
}

.produtos,
.produtos-page,
.sobre,
.contacto{
	padding: 60px 20px;
	text-align: center;
}

.cards{
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap:30px;
	flex-wrap: wrap;
}

.card{
	background: #1e1e1e;
	padding: 20px;
	border-radius: 10px;
	width: 300px;
	transition: 0.3s;
}

.card:hover{
	transform: translateY(-10px);
}

.card img{
	width: 100%;
	border-radius: 10px;
}

.card h3{
	margin: 15px 0;
}

form{
	display: flex;
	flex-direction: column;
	width: 300px;
	margin: auto;
}

input,
textarea{
	margin: 10px 0;
	padding: 12px;
	border: none;
	border-radius: 5px;
}

footer{
	background: black;
	text-align: center;
	padding: 20px;
	margin-top: 40px;
}

@media(max-width: 768px){
	nav{
		flex-direction: column;
	}
	nav ul{
		margin-top: 15px;
	}
	.hero-text h2{
		font-size: 40px;
	}
}