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

a {
	text-decoration: none;
}

body {
	font-family: sans-serif;
    font-size: 16px;       /* tamanho base */
    line-height: 1.5;      /* espaçamento entre linhas */
    color: #333;           /* cor padrão do texto */
    margin: 0;             /* remove margens padrão do body */
	letter-spacing: 0.7px;	
}

.topo {
	position: relative;
	width: 100%;
}

.topo img {
	width: 100%;
	height: auto;
	display: block;
}

/* Menu sobreposto */
.menu {
	position: absolute;
	left: 50%;
	bottom: 18%;
	transform: translateX(-50%);
	width: 80%;
	font-size: 1.25em;
}

/* Primeira linha - 2 itens */
.menu .linha1 {
	color: #eb700e;
	display: flex;
	justify-content: center;
	gap: 80px;
	margin-bottom: 20px;
}

/* Segunda linha - 4 itens */
.menu .linha2 {
	color: #eb700e;
	display: flex;
	justify-content: center;
	gap: 50px;
}

.menu a {
	display: block;
	text-decoration: none;
	color: #515e09;
	font-family: sans-serif;
	font-weight: normal;
	padding: 10px 0px;
}

/* Seção abaixo do banner */
.conteudo {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 15px 0px 50px 40px;
	margin: 0px 0px 0px 20px;
}

.divisor {
	height:10px;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}

/* Coluna esquerda */
.lado-esquerdo {
    flex: 36%;
}

/* Menu interno */
.menu-interno {
	margin-top: 50px;
    margin-bottom: 30px;
	line-height: 0.1;      /* espaçamento entre linhas */
}

.menu-interno ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
	font-size: 0.95em;
}

.menu-interno a {
    display: block;
    text-decoration: none;
    color: black;   
}

/* Texto */
.tit {
    color: #515e09;
	margin-top: 50px;
	margin-bottom: 50px;
    font-size: 3.5rem;
	line-height: 1; 
}

.texto {
	font-size-adjust: 0.6;
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: justify;
}

.txt-medio {
	font-size-adjust: 0.7;
	font-weight: bold;
	margin-top: 50px;
	margin-bottom: 50px;
}

.box-orange {
	border: 1px solid orange;
	background-color: rgb(235, 112, 14);
	box-shadow: 0px 05px 10px rgba(0, 0, 0, 0.3);
	color: white;
	padding: 20px;
	border-radius: 15px;
	text-align: justify;
}

/* Coluna direita */
.lado-direito {
    flex: 64%;
}

.lado-direito img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.only-txt-medio {
	padding-top: 70px;
	margin-left: 30px;
}

/* Etapas de Produção*/
.etapas {
	margin: 0px 50px ;
	padding: 0px 30px;
}

.etapas-tit {
	color: #515e09;
	font-weight: bold;
	font-size: 1.3em;
}

.etapas-txt {
	text-align: justify;
}

.txt-center {
	font-size-adjust: 0.6;	margin: 0px 70px;
	text-align: center;
	margin: 0px 70px;
}

.double-side {
	flex: 50%;
}

.texto-flow {
	font-size-adjust: 0.6;	
	margin: 0px 70px;
	text-align: justify;
	margin: 0px 30px 0px 0px;
}

.onetab {
	margin-left: 30px;
}

.citro {
	text-align: center;
	font-size-adjust: 0.6;	
}

.formulario {
	margin-right: 20px;
	text-align: justify;
	border: 1px solid;
	width: 380px;
	height: 480px;
	border-radius: 10px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
	padding: 40px;
	font-size: 1em;
	font-weight: 700;
	line-height: 2;
}

.campo {
	border: 1px solid silver;
	height: 25px;
	padding: 5px;
	width: 300px;
	border-radius: 4px;
	letter-spacing: 1px;
}

.textomsg {
	border: 1px solid silver;
	height: 100px;
	width: 300px;
	padding: 5px;
	border-radius: 5px;
	letter-spacing: 1px;	
}

.limpar {
	margin-left: 15px;
	margin-top: 20px;
	border: 0;	
	width: 120px;
	height: 40px;
	height: 40px;
	background-color: silver;
	border-radius: 8px;
	opacity: 0.5;
}

.enviar {
	margin-left: 30px;
	margin-top: 20px;
	border: 0;	
	width: 120px;
	height: 40px;
	height: 40px;
	background-color: silver;
	border-radius: 8px;
	opacity: 0.5;
}

.limpar:hover {
	opacity: 1;
}

.enviar:hover {
	opacity: 1;
}

.rodape {
	display: flex;
	justify-content: center;
}

.statusmail {
	padding: 10px;
	color: blue;
}

/* Responsivo */
@media (max-width: 768px) {

	.menu {
		bottom: 5%;
		width: 95%;
	}

	.menu .linha1,
	.menu .linha2 {
		flex-wrap: wrap;
		gap: 10px;
	}

	.menu a {
		font-size: 14px;
		padding: 8px 12px;
	}
	    .conteudo {
        flex-direction: column;
    }

    .lado-esquerdo,
    .lado-direito {
        width: 100%;
    }

    .menu-interno ul {
        justify-content: center;
    }
	
}
