.headerMaster {
	text-transform: uppercase;
	background: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	padding: 0;
	height: auto;
	position: relative;
	z-index: 10;
}

.headerContainer {
	font-family: 'montserrat';
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
	flex-wrap: wrap;
}
.logoTopo_img img {
    height: 100px;
}

.mainNav ul {
	list-style: none;
	display: flex;
	gap: 25px;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.mainNav ul li a {
	text-decoration: none;
	font-weight: 600;
	color: #333;
	font-size: 16px;
	transition: color 0.3s;
}

.mainNav ul li a:hover {
	color: #7653BB;
}

/* Responsivo */
@media (max-width: 768px) {
	.headerContainer {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
	}

	.mainNav ul {
		flex-direction: column;
		gap: 10px;
		align-items: flex-start;
	}
}

.footerMaster {
    width: 100%;
    float: left;
    box-sizing: border-box;
    padding: 10px;
    color: #2E2D2C;
    background-color: #ffffff;
	font-weight: 900;
}
.footerMaster_content {
	text-align: center;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
} 