.secao-texto,.secao-sem-lista {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 50px;
	padding: 60px 40px;
	background-color: var(--bra);
	border: 2px solid var(--esc);
	border-radius: 0;
	box-sizing: border-box;
	text-align: left;
	position: relative;
	transform-style: preserve-3d;
	box-shadow: none;
	transition: transform .4s var(--cur),border-color .4s ease
}

.secao-texto::before,.secao-sem-lista::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--mar);
	border: 2px solid var(--esc);
	transform: translate3d(-12px,12px,-1px);
	z-index: -1;
	transition: transform .4s var(--cur)
}

.secao-texto:hover,.secao-sem-lista:hover {
	transform: translate(4px,-4px);
	border-color: var(--mar)
}

.secao-texto:hover::before,.secao-sem-lista:hover::before {
	transform: translate3d(-18px,18px,-1px);
	background: var(--cla)
}

.secao-texto h3 {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--mar);
	margin-top: 40px;
	margin-bottom: 20px;
	letter-spacing: -0.01em
}

.secao-texto p,.secao-sem-lista p {
	font-size: 1.15rem;
	line-height: 1.9;
	color: var(--txtfo);
	margin-bottom: 24px
}

.secao-texto ul {
	list-style: none;
	margin: 35px 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
	gap: 12px
}

.secao-texto ul li {
	background: var(--cin);
	border: 2px solid var(--esc);
	border-radius: 0;
	padding: 10px 14px;
	font-size: .85rem;
	font-weight: 700;
	color: var(--txtfo);
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .2s var(--cur),background-color .2s ease
}

.secao-texto ul li::before {
	content: "\2022";
	font-size: .95rem;
	margin-right: 6px;
	flex-shrink: 0
}

.secao-texto ul li:hover {
	background: var(--bra);
	transform: translate(2px,-2px);
	box-shadow: -4px 4px 0 var(--esc)
}

.secao-texto a {
	color: var(--mar);
	font-weight: 900;
	text-decoration: none;
	border-bottom: 3px solid var(--cla);
	padding: 0 2px;
	display: inline;
	transition: all .2s ease
}

.secao-texto a:hover {
	color: #b51512;
	border-bottom-color: #b51512;
	background-color: rgba(181,21,18,0.04)
}

.secao-texto .btn-contato {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 36px;
	background-color: var(--mar);
	color: var(--bra);
	font-weight: 800;
	font-size: 1.05rem;
	text-decoration: none;
	border-radius: 0;
	border: 2px solid var(--esc);
	margin-top: 25px;
	transition: transform .3s var(--cur),background-color .3s ease;
	min-width: 44px;
	min-height: 44px;
	position: relative;
	transform-style: preserve-3d;
	box-shadow: none
}

.secao-texto .btn-contato::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--cla);
	border: 2px solid var(--esc);
	transform: translate3d(-6px,6px,-1px);
	z-index: -1;
	transition: transform .3s var(--cur)
}

.secao-texto .btn-contato:hover {
	transform: translate(4px,-4px);
	background-color: var(--esc)
}

.secao-texto .btn-contato:hover::before {
	transform: translate3d(-10px,10px,-1px);
	background: var(--bra)
}

@media(max-width:768px) {
	.secao-texto,.secao-sem-lista {
		padding: 45px 16px
	}

	.secao-texto ul {
		grid-template-columns: repeat(2,1fr);
		gap: 8px
	}

	.secao-texto ul li {
		font-size: .8rem;
		padding: 8px 10px;
		border-radius: 0
	}
}

.secao-contato {
	padding: 80px 24px;
	background-color: var(--cin);
	text-align: center;
	border-top: 2px solid var(--esc)
}

.secao-contato .titulo-contato {
	font-size: 2.4rem;
	font-weight: 900;
	color: var(--esc);
	margin-bottom: 24px;
	letter-spacing: -0.03em;
	text-transform: uppercase
}

.secao-contato .titulo-contato::after {
	content: '';
	display: block;
	width: 50px;
	height: 5px;
	background: var(--cla);
	margin: 14px auto 0;
	border-radius: 0
}

.secao-contato .descricao-contato {
	font-size: 1.25rem;
	line-height: 1.85;
	color: var(--txtfo);
	margin: 30px auto;
	font-weight: 700;
	max-width: 600px
}

.secao-contato .descricao-contato::before {
	content: "\1F4AC ";
	font-size: 1.4rem
}

.secao-contato .email-link {
	color: var(--mar);
	text-decoration: none;
	font-weight: 900;
	border-bottom: 3px solid var(--cla);
	padding: 2px 6px;
	display: inline-block;
	background-color: var(--bra);
	border: 2px solid var(--esc);
	transition: transform .3s var(--cur),background-color .3s ease;
	position: relative;
	transform-style: preserve-3d
}

.secao-contato .email-link::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--cla);
	border: 2px solid var(--esc);
	transform: translate3d(-4px,4px,-1px);
	z-index: -1;
	transition: transform .3s var(--cur)
}

.secao-contato .email-link:hover {
	color: var(--bra);
	background-color: var(--esc);
	transform: translate(3px,-3px);
	border-color: var(--esc)
}

.secao-contato .email-link:hover::after {
	transform: translate3d(-6px,6px,-1px);
	background: var(--cla)
}

@media(max-width:768px) {
	.secao-contato {
		padding: 60px 16px
	}

	.secao-contato .titulo-contato {
		font-size: 1.9rem
	}

	.secao-contato .descricao-contato {
		font-size: 1.1rem
	}
}

.secao-depoimentos {
	text-align: center;
	padding: 80px 24px;
	background-color: var(--bra)
}

.depoimentos-wrapper {
	position: relative;
	width: 100%;
	max-width: 550px;
	height: 160px;
	margin: 0 auto;
	overflow: hidden;
	background: var(--cin);
	border-radius: 0;
	border: 2px solid var(--esc);
	transform-style: preserve-3d
}

@media(max-width:480px) {
	.depoimentos-wrapper {
		height: 220px
	}
}

.depoimento {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 24px;
	background-color: transparent;
	border: 0;
	box-shadow: none;
	opacity: 0;
	transition: opacity .8s ease-in-out;
	box-sizing: border-box
}

.depoimento.visible {
	opacity: 1;
	z-index: 2
}

.depoimento p {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 12px;
	color: var(--txtfo);
	font-style: italic
}

.depoimento cite,.depoimento cite span {
	font-style: normal;
	font-weight: 800;
	color: var(--mar);
	font-size: .95rem;
	text-transform: uppercase;
	letter-spacing: .02em
}

.depoimento cite::before {
	content: "\1F4AC "
}

.rating-visu {
	color: var(--cla);
	font-size: 1.4rem;
	margin-bottom: 15px;
	letter-spacing: 2px
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	border: 0;
	color: transparent;
	background: transparent
}

.map-container {
	width: 100%;
	max-width: 800px;
	margin: 50px auto 0;
	padding: 0 20px;
	position: relative;
	transform-style: preserve-3d
}

.map-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 20px;
	width: calc(100% - 40px);
	height: 100%;
	background: var(--mar);
	border: 2px solid var(--esc);
	transform: translate3d(-10px,10px,-1px);
	z-index: -1;
	transition: transform .4s var(--cur)
}

.map-container:hover::before {
	transform: translate3d(-16px,16px,-1px);
	background: var(--cla)
}

.map-container iframe {
	width: 100%;
	height: 400px;
	border: 2px solid var(--esc);
	border-radius: 0;
	box-shadow: none;
	display: block
}

main article section,#depoimentos {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	box-sizing: border-box
}

main article section>*,#depoimentos>* {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto
}

button,summary,.menu a,.navbar-links a,.secao-texto .btn-contato {
	min-width: 44px;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box
}

summary {
	margin-bottom: 16px;
	cursor: pointer;
	font-weight: 700;
	color: var(--esc);
	padding: 14px 20px;
	background-color: var(--cin);
	border-radius: 0;
	border: 2px solid var(--esc);
	transition: background-color .2s ease,color .2s ease
}

summary:focus,summary:hover {
	background-color: var(--esc);
	color: var(--bra);
	outline: 0
}

.rodape {
	background-color: var(--esc);
	color: var(--bra);
	padding: 60px 24px;
	text-align: center;
	border-top: 2px solid var(--mar);
	box-sizing: border-box
}

.rodape p {
	color: #cbd5e1;
	font-size: .95rem;
	font-weight: 400;
	margin-bottom: 16px;
	line-height: 1.8
}

.rodape a,.rodape p a {
	color: var(--cla);
	text-decoration: none;
	font-weight: 700;
	border-bottom: 1px dashed rgba(255,165,0,0.4);
	padding: 0 4px;
	transition: opacity .15s ease;
	overflow-wrap: anywhere
}

.rodape a:hover,.rodape p a:hover {
	opacity: .85
}

.rodape-nav {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 28px;
	max-width: 1200px;
	margin: 0 auto 40px;
	text-align: left
}

.rodape-nav strong {
	display: block;
	margin: 0 0 12px;
	font-size: 15px;
	color: var(--bra)
}

.rodape-nav ul {
	list-style: none;
	padding: 0;
	margin: 0
}

.rodape-nav li {
	margin: 0 0 8px
}

.rodape-nav a {
	display: block;
	border: 0;
	padding: 0
}

.rodape address {
	max-width: 1200px;
	margin: 0 auto;
	font-style: normal;
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 30px
}

@media(max-width:768px) {
	.rodape {
		padding: 40px 16px
	}

	.rodape p {
		font-size: .9rem;
		margin-bottom: 12px
	}

	.rodape-nav {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 30px
	}
}

.mega-sitelinks {
	padding: 80px 24px;
	background-color: var(--esc);
	background-image: linear-gradient(rgba(255,255,255,0.01) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.01) 1px,transparent 1px);
	background-size: 40px 40px;
	text-align: center;
	border-bottom: 1px solid rgba(255,255,255,0.04)
}

.mega-sitelinks>* {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	width: 100%
}

.mega-sitelinks .sitelinks-grid ul {
	list-style: none;
	padding: 0;
	margin: 30px auto 0;
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(240px,1fr));
	gap: 12px;
	width: 100%
}

.mega-sitelinks .sitelinks-grid ul li {
	background-color: rgba(255,255,255,0.04);
	border: 2px solid rgba(255,255,255,0.1);
	padding: 0 14px;
	border-radius: 0;
	box-shadow: none;
	margin: 0;
	box-sizing: border-box;
	width: 100%;
	height: 46px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start
}

.mega-sitelinks .sitelinks-grid ul li::before {
	content: "\1F4A7";
	color: var(--bra);
	font-size: .95rem;
	margin-right: 8px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center
}

.mega-sitelinks .sitelinks-grid ul li:hover {
	background: var(--cla);
	border-color: var(--cla);
	transform: translate(3px,-3px);
	box-shadow: -6px 6px 0 var(--bra)
}

.mega-sitelinks .sitelinks-grid ul li a {
	color: var(--bra);
	font-size: .85rem;
	font-weight: 700;
	text-decoration: none;
	border: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	text-align: left;
	white-space: normal;
	word-break: break-word;
	box-sizing: border-box
}

.mega-sitelinks .sitelinks-grid ul li:hover a {
	color: var(--esc)
}

@media(max-width:768px) {
	.mega-sitelinks .sitelinks-grid ul {
		grid-template-columns: repeat(2,1fr);
		gap: 8px;
		width: 100%;
		margin: 20px auto 0
	}

	.mega-sitelinks .sitelinks-grid ul li {
		font-size: .75rem;
		min-height: 52px;
		height: auto;
		width: 100%;
		padding: 8px 10px;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start
	}

	.mega-sitelinks .sitelinks-grid ul li a {
		font-size: .75rem;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		white-space: normal;
		word-break: break-word;
		width: 100%
	}

	.mega-sitelinks .sitelinks-grid ul li:hover {
		transform: none;
		box-shadow: none
	}
}

.btn-whats {
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #25d366;
	box-shadow: 0 -8px 30px rgba(0,0,0,0.3);
	padding: 12px 24px 14px 24px;
	border-top: 1px solid rgba(255,255,255,0.1);
	border-radius: 0;
	height: auto;
	box-sizing: border-box;
	transform: none;
	-webkit-transform: none
}

.btn-whats svg {
	width: 28px;
	height: 28px;
	fill: var(--bra)
}

.btn-whats::after {
	content: "FALAR COM ATENDENTE 24H";
	color: var(--bra);
	font-size: .95rem;
	font-weight: 800;
	letter-spacing: .05em;
	margin-left: 10px;
	display: inline-block
}

@media(min-width:768px) {
	.btn-whats {
		position: fixed;
		left: auto;
		right: 30px;
		bottom: 20px;
		width: 320px;
		max-width: 320px;
		height: 56px;
		border-radius: 4px;
		border: 1px solid rgba(255,255,255,0.2);
		box-shadow: 0 10px 25px rgba(0,0,0,0.4);
		padding: 0 20px;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: transform .3s cubic-bezier(0.4,0,0.2,1)
	}

	.btn-whats svg {
		width: 26px;
		height: 26px;
		fill: var(--bra)
	}

	.btn-whats::after {
		display: inline-block;
		font-size: .85rem
	}

	.btn-whats:hover {
		transform: translateY(-4px);
		box-shadow: 0 15px 30px rgba(37,211,102,0.4)
	}

	.btn-whats:active {
		transform: scale(0.98)
	}
}

picture {
	display: block;
	width: 100%;
	max-width: 512px;
	max-content: 100vw;
	margin: 0 auto;
	box-sizing: border-box
}

picture img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	box-sizing: border-box
}

img {
	max-width: 100%;
	height: auto
}