/* Reset básico */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Estilos globais */
body {
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
	line-height: 1.6;
	background-color: #f8f9fa;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

/* Cabeçalho */
header {
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

.logo h1 {
	color: #ff5e00;
	margin: 0;
}

.navbar ul {
	list-style: none;
	display: flex;
	gap: 1.5rem;
}

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

.navbar ul li a:hover {
	color: #007bff;
}

/* Ícone de menu (para mobile) */
.mobile-menu-icon {
	display: none;
	cursor: pointer;
	flex-direction: column;
	gap: 4px;
}

.mobile-menu-icon span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: #333;
	transition: 0.3s;
}

/* Seção Hero */
.hero {
	position: relative;
	background: url('bg2.jpg') no-repeat center center/cover;
	color: #fff;
	text-align: center;
	padding: 4rem 0;
}

/* Camada preta transparente */
.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 1; /* Fica acima do background, mas abaixo do conteúdo */
}

/* Garantir que o conteúdo .hero-content fique acima da camada */
.hero-content {
	position: relative;
	z-index: 2;
}

.hero-content {
	max-width: 600px;
	margin: 0 auto;
}

.hero h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

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

.btn {
	display: inline-block;
	background-color: #ff5e00;
	color: #fff;
	padding: 0.75rem 1.5rem;
	text-decoration: none;
	border-radius: 4px;
	font-weight: bold;
	transition: background 0.3s ease;
}

.btn:hover {
	background-color: #f59517;
}

/* Seção Sobre */
.sobre {
	background-color: #fff;
	padding: 3rem 0;
}

.sobre h2 {
	margin-bottom: 2rem;
	font-size: 2rem;
	text-align: center;
}

.sobre p, .sobre ul {
	font-size: 1rem;
	margin-bottom: 1rem;
	max-width: 800px;
	line-height: 1.5;
	margin: 0 auto 1rem auto;
}

.sobre ul {
	list-style: inside;
	padding-left: 1rem;
}

/* Description lists for content pages */
section dl {
	margin-bottom: 1rem;
}

section dt {
	font-weight: bold;
	margin-top: 0.5rem;
	margin-bottom: 0.25rem;
	display: inline;
}

section dd {
	margin-left: 0;
	margin-bottom: 0.5rem;
	display: inline;
}

section dd::after {
	content: "";
	display: block;
}

/* Regular lists alignment with description lists */
section ul {
	padding-left: 0;
	list-style-position: inside;
	margin-bottom: 1rem;
}

section ol {
	padding-left: 0;
	list-style-position: inside;
	margin-bottom: 1rem;
}

/* Seção Serviços */
.servicos {
	background-color: #f0f0f0;
	padding: 3rem 0;
}

.servicos h2 {
	text-align: center;
	margin-bottom: 2rem;
}

.cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}

.card {
	background-color: #fff;
	border-radius: 5px;
	padding: 1.5rem;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	flex-basis: 300px;
	text-align: center;
}

.card h3 {
	margin-bottom: 1rem;
}

/* Seção Contato */
.contato {
	background-color: #fff;
	padding: 3rem 0;
}

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

.contato-container h2 {
	margin-bottom: 2rem;
}

.info-contato {
	margin: 1rem auto;
}

.info-contato p {
	margin-bottom: 0.5rem;
}

.info-contato a {
	color: #007bff;
	text-decoration: none;
}

.info-contato a:hover {
	text-decoration: underline;
}

/* Seção Produtos */
.produtos {
  background-color: #fff;
  padding: 3rem 0;
}

.produtos h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #333;
}

/* Card de Produto */
.produtos .card {
  background-color: #fff;
  border-radius: 5px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

.produtos .card img {
  display: block;
  margin: 0 auto 1rem;
  max-width: 150px;
}

.produtos .card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: #000;
}

.produtos .card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  overflow-wrap: break-word;
}

/* Responsividade */
@media (min-width: 768px) {
  .produtos .card {
    max-width: 400px;
  }
}
/* Formulário de contato (opcional)
form {
display: flex;
flex-direction: column;
gap: 1rem;
max-width: 400px;
margin: 0 auto;
}

form input, form textarea {
width: 100%;
padding: 0.75rem;
border: 1px solid #ccc;
border-radius: 4px;
}

form button {
background-color: #007bff;
color: #fff;
padding: 0.75rem;
border: none;
border-radius: 4px;
cursor: pointer;
}

form button:hover {
background-color: #0056b3;
}
 */

/* Rodapé */
footer {
	background-color: #fff;
	padding: 1rem 0;
	text-align: center;
	border-top: 1px solid #ddd;
}

.footer-content p {
	color: #666;
	font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
	.navbar ul {
		position: absolute;
		top: 60px;
		right: 0;
		background: #fff;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 200px;
		border: 1px solid #ddd;
		display: none;
	}

	.navbar ul li {
		width: 100%;
		border-bottom: 1px solid #ddd;
	}

	.navbar ul li a {
		display: block;
		width: 100%;
		padding: 0.75rem 1rem;
	}

	.mobile-menu-icon {
		display: flex;
	}
}

