
@font-face {
    font-family: 'Melinda';
    src: url('./fontes/melinda.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
	font-display: block;
}

/* Geral */

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

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;	
}

hr {
	border: 0px;
	background-color: rgb(252, 136, 10);
	height: 5px;
	margin: 0px 0px;
}


p {
	margin: 20px 0px;
}

/* Conteudo */

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
	width: 100%;
    height: 400px;
}

.left, .right {
    flex: 1;
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;     /* Centraliza verticalmente */
    padding: 30px;           /* Margem interna */
    box-sizing: border-box;  /* Inclui o padding no tamanho */
}

.imagem-container {
    position: relative;
    display: inline-block;
}

.imagem-container img {
    display: block;
    width: 100%;
    height: auto;
}

/* Menu Principal */

.hotspot {
	font-family: 'Melinda';
	font-size: 2.2vw;
	position: absolute;
	transform: translate(-50%, -50%);
    color: #000;
    text-decoration: none;
	width: 300px;
	text-align: center;
}

.lk1 {
	left: 88%;
	top: 24%;
}

.lk2 {
	left: 88%;
	top: 36.5%;
}

.lk3 {
	left: 88%;
	top: 48%;
}

.lk4 {
	left: 88%;
	top: 60%;
}

.lk5 {
	left: 88%;
	top: 72%;
}

.lk6 {
	left: 88%;
	top: 83%;
}

/* Menus Localizados */

.img-menus {
    position: absolute;
    top: 0;
    left: 1%;
    width: 31%;           /* ocupa metade da imagem */
}

.img-menus ul {
    display: flex;
    flex-wrap: wrap;      /* permite quebrar em duas linhas */
    justify-content: space-between;
    margin: 3px 10px;
    padding: 5px;
}

.img-menus li {
	font-family: 'Melinda';
	font-size: 1.8vw;
	padding: 1px 1px;
}

.img-menus li::marker {
    color: green;
    font-size: 18px;
}

.img-menus a {
    color: #000;
    text-decoration: none;
    padding: 3px 5px;
    border-radius: 10px;
    transition: background-color 0.5s ease;	
}

.img-menus a:hover {
    background-color: rgba(0, 120, 70, 0.25);
}

/* Lista de Produtos */
 
.lista-prod {
	display: flex-wrap;
	width: 100%;
	height: auto;
	text-align: center;
}

.lista-img {
	width: 70%;
	height: auto;
}

.lista-txt {
	width: 100%;
	height: auto;
}


/* Contatos */

.contato-container {
    display: flex;
    width: 100%;
    min-height: 450px;
	padding: 0px 80px;
}

.contato-imagem {
    width: 50%;
	margin: 65px 0px;
	text-align: center;
	font-family: Arial;
	font-size: 1.3em;
	font-weight: 600;
}

.contato-imagem img {
	display: block;
	width: 100%;
	height: auto;
}

.contato-formulario {
    width: 50%;
    padding: 0px 80px;
	margin: 0;
    display: flex;
    flex-direction: column;
	border-radius: 10px;
    justify-content: center;
	font-family: Arial;
	font-size: 0.8em;	
}

.contato-formulario form {
    background: rgba(200,240,200,.85);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
	margin-top: 20px;
}

.contato-formulario input,
.contato-formulario textarea {
    padding: 10px 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: inherit;
}

.contato-formulario button {
    padding: 12px;
	margin-top: 5px;
    border: none;
    border-radius: 10px;
    background-color: rgba(0, 150, 70, 0.5);
    color: white;
    cursor: pointer;
    transition: .5s;
}

.contato-formulario button:hover {
    background-color: #146c43;
}

.statusmail {
	padding: 10px;
	color: blue;
	font-size: 1.2em;	
	font-weight: 400;
}

/* Smartphones pequenos (até ~480px) */
@media (max-width: 480px) {

    .contato-container {
        flex-direction: column;
    }
	.contato-imagem,
    .contato-formulario {
        width: 100%;
		padding: 20px 0px;
    }
	.img-menus {
		top: 1rw;
		left: -3%;
		width: 38%;
	}
	.img-menus ul {
		line-height: .5;
	}

}


/* Tablets (~769px a 1024px) */
@media (max-width: 1024px) {

    .contato-container {
        flex-direction: column;
    }
	.contato-imagem,
    .contato-formulario {
        width: 100%;
		padding: 30px 0px;
		margin: 0;
		font-size: 1vw;
    }
	.img-menus {
		top: 1rw;
		left: -10px;
		margin: 0;
		padding: 0;
		width: 36%
	}
	.img-menus ul {
		line-height: 1em;
	}

	.endereco {
		font-size: 1.2em;
	}

}

	
