:root {
	--primary: #ec6334;
	--secondary: #ec6334;
	--accent: #ec6334;
	--light: #ecf0f1;
	--dark: #000;
	--titulosPrincipais: #ec6334;
	--footerTextIcons: #fff;
	--headerText: #000;
	--fundoHeader: #ffe600;
}

.nav {
	height: 80px;
	margin: 0 auto;
	padding: 0 20px 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--fundoHeader);
}

.logo {
	font-size: rem;
	color: var(--light);
	font-weight: bold;
}

.logo-image {
	width: 200px;
	margin: auto;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-links a {
	color: var(--headerText);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: #fff;
}

.titulos-principais {
	color: var(--titulosPrincipais);
	max-width: 1200px;
	margin: 0 auto;
	padding-bottom: 2rem;
	font-size: 32px;
}

.whatsapp-float {
	position: fixed;
	bottom: 40px;
	right: 40px;
	background: #25d366;
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	text-align: center;
	font-size: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s;
	z-index: 1000;
}

.whatsapp-float:hover {
	transform: scale(1.1);
}

.whatsapp-float-image {
	width: 60px;
}

.footer {
	background: var(--dark);
	color: var(--footerTextIcons);
	padding: 4rem 2rem;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

footer h3 {
	font-size: 16px;
	font-weight: 700;
}

footer p {
	font-size: 14px;
}

.social-instagram {
	display: block;
	width: 34px;
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 0.3rem;
}

.logo img {
	width: 150px;
}

.nav-links {
	display: flex;
	gap: 1.5rem;
}

.burger-menu {
	display: none;
}

/* Menu mobile */
.menu-toggle {
	display: none;
}

.menu-icon {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 20px;
	cursor: pointer;
}

.menu-icon span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: var(--headerText);
}

/* Links mobile */
.nav-links-mobile {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	right: -100%;
	/* Começa fora da tela */
	height: 100vh;
	/* Altura total da tela */
	width: 55%;
	/* Largura do menu */
	max-width: 300px;
	/* Limita a largura */
	background-color: #fff;
	padding: 2rem;
	gap: 1.5rem;
	transition: right 0.3s ease;
	/* Animação suave */
}

.nav-links-mobile a {
	color: var(--headerText);
	text-decoration: none;
	font-size: 0.875rem;
	/* 14px */
	line-height: 1.25rem;
	/* 20px */
	font-weight: 700;
}

/* Mostrar menu quando o checkbox for marcado */
.menu-toggle:checked ~ .nav-links-mobile {
	right: 0;
	/* Move o menu para dentro da tela */
}

/* Botão de fechar */
.nav-links-mobile .close-btn {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 1.5rem;
	color: var(--headerText);
	cursor: pointer;
	background: none;
	border: none;
}

.menu-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background-color: #000;
	opacity: 0.7;
}

/* Overlay (fundo escuro) */
.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.7);
	/* Transparência */
	z-index: 10;
	/* Fica abaixo do menu */
	transition: opacity 0.3s ease;
	opacity: 0;
}

/* Exibir o overlay quando o menu for aberto */
.menu-toggle:checked ~ .overlay {
	display: block;
	opacity: 1;
}

/* Ajustar o menu mobile para sobrepor o overlay */
.nav-links-mobile {
	z-index: 20;
	/* Sobrepõe o overlay */
}

/* Responsividade */
@media (max-width: 640px) {
	.titulos-principais {
		font-size: 24px;
	}

	footer h3 {
		font-size: 16px;
	}

	footer p {
		font-size: 14px;
	}

	.social-instagram {
		width: 30px;
		height: 30px;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.burger-menu {
		display: block;
	}
}
