.footer {
	background: var(--secondary-dark);
	color: var(--white);
	padding: 60px 0 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-brand .logo-text {
	color: var(--white);
	font-size: 1.8rem;
	margin-bottom: 16px;
}

.footer-brand .logo-text img {
	width: auto;
	display: block;
	max-height: 60px;
}

.footer-brand p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 20px;
}

.footer-social {
	display: flex;
	gap: 12px;
}

.footer-social a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background: var(--primary);
}

.footer-social svg {
	width: 20px;
	height: 20px;
	fill: var(--white);
}

.footer h4 {
	font-size: 1.1rem;
	margin-bottom: 20px;
	color: var(--white);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.95rem;
}

.footer-links a:hover {
	color: var(--primary);
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
}

.footer-contact-item svg {
	width: 20px;
	height: 20px;
	fill: var(--primary);
	flex-shrink: 0;
	margin-top: 2px;
}

.footer-contact-item a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
}

.footer-contact-item a:hover {
	color: var(--primary);
}

.footer-bottom {
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.9rem;
}

.footer-bottom p img {
	width: auto;
	display: inline;
	max-height: 15px;
}

.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;
}

.whatsapp-float a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: #25D366;
	border-radius: 50%;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease;
	animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
	transform: scale(1.1);
}

.whatsapp-float svg {
	width: 32px;
	height: 32px;
	fill: var(--white);
}

.box-cookies {
	position: fixed;
	left: 25px;
	bottom: 25px;
	z-index: 9999;
}

.box-cookies>i {
	width: 50px;
	height: 50px;
	background-color: var(--color-destaque);
	color: var(--color-white);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	border-radius: 50%;
	opacity: 0.7;
	cursor: pointer;
	transition: var(--transition-time);
}

.box-cookies>i:hover {
	opacity: 1;
}

.box-cookies>.conteudo {
	position: absolute;
	left: 0;
	bottom: calc(100% + 10px);
	background-color: var(--color-white);
	max-width: min(100vw, 350px);
	width: 100vw;
	padding: 20px;
	border-radius: 20px;
	font-size: 14px;
	box-shadow: 0px 0px 5px 3px #dfdfdf;
}

.box-cookies .btn {
	font-size: 80%;
	text-transform: initial;
}

.box-cookies>.conteudo .titulo {
	color: var(--color-destaque);
	font-family: var(--font-family-bold);
	margin-bottom: 10px;
}

.box-cookies>.conteudo .links {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.box-cookies>.conteudo .links a {
	width: max-content;
	max-width: 100%;
	display: inline-flex;
	margin: 10px 0;
	color: var(--color-destaque);
	font-family: var(--font-family-bold);
	text-decoration: underline;
}

.box-cookies>.conteudo .botoes {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.box-cookies>.conteudo .botoes .customizar {
	text-decoration: underline;
	cursor: pointer;
}

.box-cookies>.customizar {
	position: absolute;
	left: 0;
	bottom: calc(100% + 10px);
	background-color: var(--color-white);
	max-width: min(100vw, 350px);
	width: 100vw;
	padding: 20px;
	border-radius: 20px;
	font-size: 14px;
	box-shadow: 0px 0px 5px 3px #dfdfdf;
	opacity: 0;
	visibility: hidden;
}

.box-cookies>.customizar>.close {
	float: right;
	width: 25px;
	height: 25px;
	background-color: var(--color-destaque);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--color-white);
	cursor: pointer;
	opacity: 0.7;
}

.box-cookies>.customizar>.close:hover {
	opacity: 1;
}

.box-cookies>.customizar .titulo {
	color: var(--color-destaque);
	font-family: var(--font-family-bold);
	margin-bottom: 10px;
	text-align: center;
}

.box-cookies>.customizar .opcao {
	width: 100%;
	display: block;
	height: auto;
	max-height: 250px;
	margin: 10px 0;
	overflow-y: scroll;
}

.box-cookies>.customizar .opcao>.topo {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 10px;
}

.box-cookies>.customizar .opcao>.topo i {
	margin-right: 5px;
}

.box-cookies>.customizar .opcao>.topo .check {
	width: 40px;
	height: 20px;
	background-color: #ccc;
	border-radius: 10px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0px 5px;
	margin: 0 0 0 auto;
	cursor: pointer;
}

.box-cookies>.customizar .opcao>.topo .check i {
	color: var(--color-white);
	margin: 0px;
}

.box-cookies>.customizar .opcao>.topo .check i:before {
	content: '\f057';
	font-weight: 900;
}

.box-cookies>.customizar .opcao>.topo .check.active {
	justify-content: flex-end;
	background-color: var(--color-destaque);
}

.box-cookies>.customizar .opcao>.topo .check.active i:before {
	content: '\f058';
	font-weight: 900;
}

.box-cookies>.customizar .opcao>.descricao {
	font-size: 12px;
}

.box-cookies>.customizar .opcao>.opcoes .link {
	font-family: var(--font-family-bold);
	cursor: pointer;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
}

.box-cookies>.customizar .opcao>.opcoes .link i {
	margin-left: 5px;
	font-size: 12px;
	opacity: 0.7;
}

.box-cookies>.customizar .opcao>.opcoes .itens {
	display: none;
}

.box-cookies>.customizar .opcao>.opcoes .itens.active {
	width: calc(100% - 5px);
	display: block;
}

.box-cookies>.customizar .opcao>.opcoes .itens .item {
	width: 100%;
	display: block;
	padding: 5px;
	border: 1px solid #f4f4f4;
	border-radius: 10px;
}

.box-cookies>.customizar .opcao>.opcoes .itens .item>.topo {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.box-cookies>.customizar .opcao>.opcoes .itens .item>.topo p {
	cursor: pointer;
}

.box-cookies>.customizar .opcao>.opcoes .itens .item>.topo i {
	margin-right: 5px;
}

.box-cookies>.customizar .opcao>.opcoes .itens .item>.topo .check {
	width: 40px;
	height: 20px;
	background-color: #ccc;
	border-radius: 10px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0px 5px;
	margin: 0 0 0 auto;
	cursor: pointer;
}

.box-cookies>.customizar .opcao>.opcoes .itens .item>.topo .check i {
	color: var(--color-white);
	margin: 0px;
}

.box-cookies>.customizar .opcao>.opcoes .itens .item>.topo .check i:before {
	content: '\f057';
	font-weight: 900;
}

.box-cookies>.customizar .opcao>.opcoes .itens .item>.topo .check.active {
	justify-content: flex-end;
	background-color: var(--color-destaque);
}

.box-cookies>.customizar .opcao>.opcoes .itens .item>.topo .check.active i:before {
	content: '\f058';
	font-weight: 900;
}

.box-cookies>.customizar .opcao>.opcoes .itens .item>.descricao {
	display: none;
}

.box-cookies>.customizar .opcao>.opcoes .itens .item.active>.descricao {
	margin: 10px 0;
	background-color: #eeeff2;
	padding: 5px;
	border-radius: 5px;
}

.box-cookies>.customizar .opcao>.opcoes .itens .item.active>.descricao b {
	font-family: var(--font-family-bold);
}

.box-cookies>.customizar .botoes {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

.box-cookies.customizar>.conteudo,
.box-cookies.accept>.conteudo {
	opacity: 0;
	visibility: hidden;
}

.box-cookies.customizar>.customizar {
	opacity: 1;
	visibility: visible;
}

@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-social,
	.footer-contact-item {
		justify-content: center;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}