/*
* Fonts — Montserrat
*
* UMA familia com cinco @font-face, um por peso — nao cinco familias como no
* codigo original (`montserrat-bold`, `montserrat-medium`, ...). Aquele desenho
* era a origem do problema de hierarquia: com uma familia por peso, o
* font-weight do CSS nao selecionava nada, e qualquer regra sem weight caia em
* 400. Aqui `font-weight: 700` escolhe de fato o arquivo Bold.
*
* WOFF2, nao os TTF que estavam no repo: os cinco TTF somavam 1205 KB e em
* WOFF2 somam 381 KB (-69%). font-display:swap para o texto nao ficar invisivel
* enquanto a fonte carrega.
*
* As classes .montserrat-* continuam existindo como utilitarios de PESO: sao
* usadas ~3,6k vezes no HTML e reescrever isso nao traria ganho.
*/
@font-face {
	font-family: 'Montserrat';
	src: url('fonts/montserrat-regular.woff2') format('woff2');
	font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	src: url('fonts/montserrat-medium.woff2') format('woff2');
	font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	src: url('fonts/montserrat-semibold.woff2') format('woff2');
	font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	src: url('fonts/montserrat-bold.woff2') format('woff2');
	font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	src: url('fonts/montserrat-black.woff2') format('woff2');
	font-weight: 800; font-style: normal; font-display: swap;
}

/* Fonte global. O tema define Poppins no body do theme.css; esta regra vem
   depois na ordem de carga e prevalece, sem precisar editar o vendor. */
html body,
html body .montserrat-regular,
html body h1, html body h2, html body h3,
html body h4, html body h5, html body h6 {
	font-family: 'Montserrat', Arial, sans-serif;
}

.montserrat-regular  { font-family: 'Montserrat', Arial, sans-serif; font-weight: 400; }
.montserrat-medium   { font-family: 'Montserrat', Arial, sans-serif; font-weight: 500; }
.montserrat-semibold { font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; }
.montserrat-bold     { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; }
.montserrat-black    { font-family: 'Montserrat', Arial, sans-serif; font-weight: 800; }

/* Os 4 titulos de post em blog/ usam <h1 class="montserrat-medium">. 600
   preserva o peso optico que eles tinham. */
h1.montserrat-medium { font-weight: 600; }

/*
* Scrollbar
*/

::-webkit-scrollbar {
	width: 18px;
}

::-webkit-scrollbar-track {
	background: #333333;
}

::-webkit-scrollbar-thumb {
	background: #000096;
}

::-webkit-scrollbar-thumb:hover {
	background: #000096;
}

/*
* Loading 
*/

.loading-overlay {
	background-color: var(--color-custom-primary);
}

.bounce-loader .bounce1, 
.bounce-loader .bounce2, 
.bounce-loader .bounce3 {
	background-color: var(--color-custom-secondary);
}

/*
* Maps
*/

.maps {
	min-height: 450px;
}

/*
* Swal
*/

.swal2-container {
	padding: 0px !important;
}

.swal2-popup {
	border-radius: 0px !important;
}

.swal2-actions {
	display: flex !important;
	z-index: 1 !important;
	flex-wrap: initial !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
}

div#swal2-content {
	font-size: 20px;
	line-height: 20px;
	color: #454A60;
}

.swal2-styled.swal2-confirm,
.swal2-styled.swal2-cancel {
	border: 0 !important;
	border-radius: 0 !important;
	background: initial !important;
	background-color: var(--color-custom-primary) !important;
	border-color: var(--color-custom-primary) var(--color-custom-primary) var(--color-custom-primary) !important;
	color: #FFF !important;
	border: 1px solid var(--color-custom-primary) !important;
}

.swal2-styled.swal2-confirm:hover,
.swal2-styled.swal2-cancel:hover {
	border: 1px solid var(--color-custom-primary)  !important;
	background: #0000 !important;
	color: var(--color-custom-primary)  !important;
}

.swal2-styled.swal2-confirm i,
.swal2-styled.swal2-cancel i {
	color: #FFF !important;
	margin-left: 6px;
}

.swal2-styled.swal2-confirm:hover i,
.swal2-styled.swal2-cancel:hover i {
	color: var(--color-custom-secondary) !important;
}

.swal2-container.swal2-backdrop-show {
	background: rgba(0, 0, 0, 0.72);
	z-index: 99999;
}

.swal2-icon.swal2-error {
	border-color: var(--color-custom-primary);
	color: var(--color-custom-primary);
}

.break-line {
	width: min-intrinsic !important;
	width: -webkit-min-content !important;
	width: -moz-min-content !important;
	width: min-content !important;
	-ms-grid-columns: min-content !important;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
	background-color: var(--color-custom-primary);
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
	background-color: var(--color-custom-primary);
}

.swal2-title {
	font-size: 72px !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
	border: .25em solid var(--color-custom-primary);
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
	background-color: var(--color-custom-primary);
}

.swal2-styled:focus {
	outline: 0;
	box-shadow: none;
}

.swal2-icon {
	width: 3em;
	height: 3em;
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
	top: 1.9em;
	left: .475em;
	width: 1.2em;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
	top: 1.6em;
	right: 2em;
	width: 1.9375em;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

div#swal2-content i {
	font-size: 82px;
	margin: 15px;
	color: var(--color-custom-primary);
}

div#swal2-content h1 {
	margin: 0px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/*
* Whats App
*/

a.btn-whatsapp {
	position: fixed;
	right: 5%;
	background-color: #1ebea5;
	display: inline-block;
	padding: 0px;
	border-radius: 5px;
	box-shadow: 1px 2px 3px rgba(0,0,0,0.3);
	line-height: 21px;
	height: 80px;
	width: 80px;
	color: #fff !important;
	text-transform: uppercase;
	z-index: 9999;
	font-size: 38px;
	bottom: 5%;
	border-radius: 50%;
	animation: pulse 2s infinite;
	display: flex;
	justify-content: center;
	text-decoration: none;
	align-items: center;
}

a.btn-whatsapp:hover {
	background-color: #fff;
	color: #1ebea5 !important;
	border: 2px solid #1ebea5;
}

a.btn-whatsapp svg {
	position: absolute;
	left: 0;
	bottom: 0;
	top: 0;
	right: 0;
	margin: auto;
	padding: 5px;
}

@keyframes pulse {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(7,219,215, 0.8);
		box-shadow: 0 0 0 0 rgba(7,219,215, 0.8);
	}
	70% {
		-moz-box-shadow: 0 0 0 20px rgba(7,219,215, 0);
		box-shadow: 0 0 0 20px rgba(7,219,215, 0);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(7,219,215, 0);
		box-shadow: 0 0 0 0 rgba(7,219,215, 0);
	}
}

/* 
* Menu mobile
*/

.menu-overlay-with-animation-2 ::after, 
.menu-overlay-with-animation-2 ::before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.menu-overlay-with-animation-2 ::after, 
.menu-overlay-with-animation-2 ::before {
	content: '';
}

.cd-logo, 
.cd-nav-trigger {
	position: relative;
	display: inline-block;
}

.cd-logo {
	top: 28px;
	left: 5%;

}
.cd-logo img {
	display: block;
}

.sticky-header-active .cd-nav-trigger {
	height: 71px;
	width: 71px;
}

.cd-nav-trigger {
	top: 4px;
	right: 10px;
	height: 71px;
	width: 71px;
	z-index: 5;
	text-indent: 100%;
	white-space: nowrap;
	transition: 0.3s;
	cursor: pointer;
	background-color: transparent;
}

.cd-nav-trigger .cd-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: inline-block;
	width: 18px;
	height: 3px;
	background-color: #ffffff;
	z-index: 10;
	width: 35px;
}

.cd-nav-trigger .cd-icon::before, 
.cd-nav-trigger .cd-icon:after {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: -webkit-transform .3s;
	-moz-transition: -moz-transform .3s;
	transition: transform .3s;
}

.cd-nav-trigger .cd-icon::before {
	-webkit-transform: translateY(-6px) rotate(0deg);
	-moz-transform: translateY(-6px) rotate(0deg);
	-ms-transform: translateY(-6px) rotate(0deg);
	-o-transform: translateY(-6px) rotate(0deg);
	transform: translateY(-6px) rotate(0deg);
	width: 35px;
	left: 0;
	top: -3px;
}

.cd-nav-trigger .cd-icon::after {
	-webkit-transform: translateY(6px) rotate(0deg);
	-moz-transform: translateY(6px) rotate(0deg);
	-ms-transform: translateY(6px) rotate(0deg);
	-o-transform: translateY(6px) rotate(0deg);
	transform: translateY(6px) rotate(0deg);
	width: 35px;
	left: 0;
	top: 3px;
}

.cd-nav-trigger::before, 
.cd-nav-trigger::after {
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 0%;
	height: 100%;
	width: 100%;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
}

.cd-nav-trigger::before {
	background-color: #0000;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-delay: 0.4s;
	-moz-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.cd-nav-trigger::after {
	background-color: #d0ff0100;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transition-duration: 0s;
	-moz-transition-duration: 0s;
	transition-duration: 0s;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	transition-delay: 0s;
}

.cd-nav-trigger.close-nav::before {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.cd-nav-trigger.close-nav::after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-delay: 0.4s;
	-moz-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.cd-nav-trigger.close-nav .cd-icon {
	background-color: #fff0 !important
}

.cd-nav-trigger.close-nav .cd-icon::before, 
.cd-nav-trigger.close-nav .cd-icon::after {
	background-color: #fff;
}

.cd-nav-trigger.close-nav .cd-icon::before {
	-webkit-transform: translateY(0) rotate(45deg);
	-moz-transform: translateY(0) rotate(45deg);
	-ms-transform: translateY(0) rotate(45deg);
	-o-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
}

.cd-nav-trigger.close-nav .cd-icon::after {
	-webkit-transform: translateY(0) rotate(-45deg);
	-moz-transform: translateY(0) rotate(-45deg);
	-ms-transform: translateY(0) rotate(-45deg);
	-o-transform: translateY(0) rotate(-45deg);
	transform: translateY(0) rotate(-45deg);
	top: -3px;
	width: 35px;
	left: 0;
}

.cd-primary-nav {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: fixed;
	left: 0;
	top: 0;
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	z-index: 3;
	background-color: #09113f;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	visibility: hidden;
	list-style: none;
	opacity: 0;
	-webkit-transition: visibility 0s, opacity 0.3s;
	-moz-transition: visibility 0s, opacity 0.3s;
	transition: visibility 0s, opacity 0.3s;
}

.cd-primary-nav li {
	margin: .8em 0;
	text-align: center;
	text-transform: capitalize;
	list-style-type: none !important;
	list-style: none !important;
}

.cd-primary-nav a {
	font-size: 20px;
	font-size: 1.25rem;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transition: color 0.2s;
	-moz-transition: color 0.2s;
	transition: color 0.2s;
	font-size: 28px;
	color: #fff !important;
}

.cd-primary-nav a:not(.accordion-topo):hover{
	color: #c2c2c2 !important;
	text-decoration: none;
}

.no-touch .cd-primary-nav a:hover {
	color: #ffffff;
}

.cd-primary-nav.fade-in {
	visibility: visible;
	opacity: 1;
}

@media only screen and (min-width: 768px) {
	.cd-primary-nav li {
		margin: 2em 0;
	}

	.cd-primary-nav a {
		font-size: 28px;
		font-size: 1.75rem;
		text-transform: uppercase;
	}
}

@media only screen and (min-width: 1170px) {
	.cd-primary-nav li {
		margin: 2.6em 0;
	}

	.cd-primary-nav a {
		font-size: 32px;
		font-size: 2rem;
	}
}

.cd-overlay-nav, 
.cd-overlay-content {
	position: fixed;
	top: 28px;
	right: 5%;
	height: 4px;
	width: 4px;
	-webkit-transform: translateX(-20px) translateY(20px);
	-moz-transform: translateX(-20px) translateY(20px);
	-ms-transform: translateX(-20px) translateY(20px);
	-o-transform: translateX(-20px) translateY(20px);
	transform: translateX(-20px) translateY(20px);
}

.cd-overlay-nav span, 
.cd-overlay-content span {
	display: inline-block;
	position: absolute;
	border-radius: 50%;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	will-change: transform;
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.cd-overlay-nav.is-hidden, 
.cd-overlay-content.is-hidden {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .3s 0s, visibility 0s .3s;
	-moz-transition: opacity .3s 0s, visibility 0s .3s;
	transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-overlay-nav {
	z-index: 2;
}

.cd-overlay-nav span {
	background-color: #09113f;
}

.cd-overlay-content {
	z-index: 4;
}

.cd-overlay-content span {
	background-color: #fff;
}

.cd-content {
	padding: 80px 0;
	width: 90%;
	max-width: 768px;
	margin: 0 auto;
	z-index: 1;
}

.cd-content .cd-intro {
	height: 200px;
	padding-top: 4.6em;
}

.cd-content h1 {
	text-align: center;
	font-size: 20px;
	font-size: 1.25rem;
}

.cd-content p {
	line-height: 1.5;
	color: #fff;
}

@media only screen and (min-width: 768px) {
	.cd-content .cd-intro {
		height: 250px;
		padding-top: 6em;
	}

	.cd-content h1 {
		font-size: 28px;
		font-size: 1.75rem;
	}

	.cd-content p {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.8;
	}
}

.menu-overlay-with-animation-2:before {
	content: '';
	height: 63px;
	width: 65px;
	position: absolute;
	border-radius: 100%;
	top: -21px;
	right: 3px;
}

/*
* Cookies
*/

.container-cookie {
	display: none;
	justify-content: center !important;
	align-items: center !important;
}

.row-cookie {
	position: fixed !important;
	bottom: 10px !important;
	background: var(--color-custom-white) !important;
	justify-content: center !important;
	align-items: center !important;
	max-width: 1024px !important;
	border: 5px solid #00005b !important;
	z-index: 9999999 !important;
}

.row-cookie {
	padding: 20px !important;
}

.row-cookie.desktop .col-cookie p {
	margin-bottom: 0 !important;
	line-height: 16px !important;
	color: #00005b !important;
}

.row-cookie.desktop .col-cookie a {
	color: #00005b !important;
}

.btn-cookie {
	font-size: 14px !important;
	border-top-left-radius: 50px !important;
	border-bottom-left-radius: 50px !important;
	border-top-right-radius: 50px !important;
	border-bottom-right-radius: 50px !important;
	background-color: #00005b !important;
	border-color: #00005b !important;
	color: var(--color-custom-white) !important;
	transition: ease-in-out .3s !important;
	text-align: center !important;
	width: 100% !important;
	padding: 8px !important;
}

.btn-cookie:hover {
	background-color: transparent !important;
	border-color: #00005b !important;
	color: #00005b !important;
}

/*
* Google
*/

.grecaptcha-badge {
	display: none;
}

/*
* Scroll to top
*/

html .scroll-to-top {
	border-radius: 0;
	bottom: 15px;
	padding: 22px 10px 32px;
	right: 23px;
	line-height: 12px;
	box-shadow: -2px 4px 10px #666;
	border: 2px solid #404040 !important;
	opacity: 1 !important;
}

html .scroll-to-top:hover {
	border: 2px solid #404040;
	color: #404040;
	background: #fff;
}

html.sticky-header-active #header .header-body.header-body-bottom-border {
	border-bottom: none !important;
}

/*
* Custom background with gradient
*/

.bgGradient {
	background: linear-gradient(90deg, #b2edff 0%, #e9dbff 25%, #c1ffe1 50%, #b2edff 75%, #e9dbff 100%);
	background-size: 400% 400%;
	animation: bgAnimated 10s infinite linear;
}

@keyframes bgAnimated {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/*
* Header
*/

.hover-solucoes:hover .container-solucoes,
.container-solucoes:hover {
	display: flex;
	align-items: center;
	min-width: 100%;
	width: calc(100vw + 1000px);
	min-height: 200px;
	opacity: 1;
}

.container-solucoes {
	position: absolute;
	top: 137px;
	left: calc(-36vw - 500px);
	opacity: 0;
	display: none;
	min-height: 0;
	min-width: 0;
	transition: all .3s;
	background: #fff;
}

#header .header-column {
	flex-grow: 0 !important;
}

#info-topo {
	background-color: #2e3535;
}

#info-topo p i {
	background-color: #aecd3c;
	color: #2e3535;
	border-radius: 100%;
	height: 30px;
	width: 30px;
	font-size: 15px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

#header .header-body {
	background-color: #000096;
	box-shadow: none !important;
}

.card {
	background-color: #333 !important;
	border-color: #333333 !important;
}

.card-header {
	background-color: initial !important;
}

.card-body {
	background-color: #2a2a2a !important;
}

@media (max-width: 991px) {
	#header .header-nav-main {
		position: initial !important;
		transform: translate3d(0, 0, 0) !important;
	}

	#header .header-nav-main:before {
		content: none !important;
	}
}

#header .header-nav-main nav > ul > li > a {
	text-transform: capitalize !important;
}

.custom-social-icon {
	background: #fff;
	color: #000096 !important;
	border: 2px solid #fff;
	width: 30px;
	height: 30px;
	display: flex !important;
	justify-content: center;
	align-items: center;
	font-size: 15px;
	border-radius: 100%;
	transition: all .3s;
	position: relative;
}

.custom-social-icon:hover {
	color: #fff !important;
	background: #000096;
}

.custom-social-icon.blue {
	background: #1e233c;
	border: 2px solid #1e233c !important;
}

.custom-social-icon.blue:hover {
	background: transparent !important;
	color: #1e233c !important;
}

.btn-whatsapp-2 {
	background: #00b285 !important;
	color: #ffffff !important;
	border: 2px solid #00b285 !important;
	border-radius: 100px;
	transition: all .3s;
}

.btn-whatsapp-2:hover {
	background: transparent !important;
	color: #00b285 !important;
}

.link-hover {
	position: relative !important;
}

.link-hover::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 4px;
	background-color: #fff;
	left: 0;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform .3s ease-in-out;
}

.link-hover::after {
	bottom: -1px;
}

.link-hover:hover::before,
#header .header-nav.header-nav-links nav > ul li:hover > a .link-hover::before,
.link-hover:hover::after,
#header .header-nav.header-nav-links nav > ul li:hover > a .link-hover::after,
.link-hover.active::before,
.link-hover.active::after {
	transform-origin: left;
	transform: scaleX(1);
}

/*
* Background
*/

.bg-gradient-blue {
	background: rgb(0,122,255);
	background: -moz-linear-gradient(330deg, rgba(0,122,255,1) 0%, rgba(0,0,150,1) 100%);
	background: -webkit-linear-gradient(330deg, rgba(0,122,255,1) 0%, rgba(0,0,150,1) 100%);
	background: linear-gradient(330deg, rgba(0,122,255,1) 0%, rgba(0,0,150,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#007aff",endColorstr="#000096",GradientType=1);
}

.bg-blue {
	background-color: #000096;
}

.bg-dark-blue {
	background-color: #00005b;
}

.bg-gray {
	background-color: #f4f6fb;
}

.banner-full {
	background-image: var(--bg);
	background-size: cover;
	background-position: top;
	position: fixed;
	min-height: 300px;
}

.bg-menu-mobile {
	background-color: #09113f;
	margin-top: 0 !important;
	padding-top: 10px;
}

/*
* Text
*/

.text-color-blue {
	color: #000FA3;
}

/*
* Button
*/

.btn-gradient-blue {
	background: rgb(0,122,255);
	background: -moz-linear-gradient(346deg, rgba(0,122,255,1) 0%, rgba(0,0,150,1) 100%);
	background: -webkit-linear-gradient(346deg, rgba(0,122,255,1) 0%, rgba(0,0,150,1) 100%);
	background: linear-gradient(346deg, rgba(0,122,255,1) 0%, rgba(0,0,150,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#007aff",endColorstr="#000096",GradientType=1);
	border: none;
}

.btn-hover-shadow {
	box-shadow: 0 0 20px 0px #00000045;
	transition: all .3s;
}

.btn-hover-shadow:hover {
	box-shadow: none;
}

.btn-radius {
	border-radius: 8px;
}

.btn-transparent-white {
	color: #fff;
	background-color: transparent;
	border: 2px solid #fff;
	transition: all .3s;
}

.btn-transparent-white:hover {
	background-color: #fff;
	color: #000096;
}

/*
* Inicial
*/

.card-blog {
	background: #1e233c;
	transition: all .3s;
}

.card-blog.inicial {
	background: rgb(0,122,255);
	background: -moz-linear-gradient(302deg, rgba(0,122,255,1) 0%, rgba(0,0,150,1) 100%);
	background: -webkit-linear-gradient(302deg, rgba(0,122,255,1) 0%, rgba(0,0,150,1) 100%);
	background: linear-gradient(302deg, rgba(0,122,255,1) 0%, rgba(0,0,150,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#007aff",endColorstr="#000096",GradientType=1);
	border-radius: 8px;
}

.card-blog.inicial:hover {
	transform: translateY(-10px);
}

.card-blog .img-filter {
	overflow: hidden;
}

.card-blog .img-filter:before {
	content: '';
	position: absolute;
	top: 30px;
	left: 30px;
	width: 60px;
	height: 60px;
	background: var(--vri-icone) no-repeat;
	z-index: 10;
}

.card-blog .img-filter:after {
	content: '';
	position: absolute;
	top: 0;
	height: 0;
	width: 100%;
	height: 100%;
	background-color: #00000042;
	pointer-events: none;
	border-radius: 8px 8px 0 0;
}

.card-blog img {
	border-radius: 8px 8px 0 0;
}

.card-blog .plus {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background-color: #fff;
	color: #000096;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 40px;
	font-weight: 100;
	position: absolute;
	bottom: -26px;
	right: 30px;
	box-shadow: 0 0 9px 0px #00000042;
	transition: all .3s;
}

.card-blog:hover .plus {
	transform: rotate(180deg);
}

.card-blog .card-body {
	background-color: transparent !important;
}

.owl-carousel:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"]:before {
	font-size: 1.80em !important;
	font-weight: 400;
	top: 0;
}

.owl-carousel:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"],
.btn-carrousel-blog {
	height: 50px !important;
	width: 50px !important;
	background-color: #fff !important;
	color: #000 !important;
	border: 2px solid #fff !important;
	border-radius: 100% !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	transition: all .3s !important;
}

.owl-carousel:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"]:focus,
.btn-carrousel-blog:focus {
	background-color: #fff !important;
	color: #000 !important;
}

.owl-carousel .owl-nav button[class*="owl-"]:before {
	font-family: 'Font Awesome 6 Pro' !important;
}

.owl-carousel:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"]:hover,
.btn-carrousel-blog:hover {
	background-color: transparent !important;
	color: #fff !important;
}

.btn-carrousel-blog.servico {
	background-color: #fd5100 !important;
	color: #fff !important;
	border: 2px solid #fd5100 !important;
}

.btn-carrousel-blog.servico:hover {
	background-color: transparent !important;
	color: #fd5100 !important;
}

.owl-carousel:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"] span {
	display: none;
}

.owl-carousel:not('.owl-produtos-inicial') .owl-nav {
	width: calc(100% + 140px);
	left: -70px;
}

@media(max-width: 991px) {
	.owl-carousel:not('.owl-produtos-inicial') .owl-nav {
		width: 170px;
		height: 1px;
		left: calc(50% - 85px);
		bottom: -50px;
		top: initial;
	}
}

.owl-produtos-inicial .owl-stage {
	display: flex;
	justify-content: center;
	align-items: stretch;
}

.owl-carousel.owl-produtos-inicial .owl-nav {
	width: 120px;
	top: initial;
	bottom: -22px;
	left: 25%;
}

@media(max-width: 991px) {
	.owl-carousel.owl-produtos-inicial .owl-nav {
		width: 120px;
		left: calc(50% - 60px);
		bottom: -33px;
	}
}

.owl-carousel.owl-produtos-inicial:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"] {
	background-color: #17529a !important;
	color: #ffffff !important;
	border: 2px solid #17529a !important;
}

.owl-carousel.owl-produtos-inicial:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"]:hover {
	background-color: transparent !important;
	color: #17529a !important;
}

.owl-theme.owl-produtos-inicial .owl-dots {
	width: 50%;
	transform: translate(75%, 37px);
}

.owl-carousel.owl-produtos-inicial .owl-dots .owl-dot span {
	width: 150px;
	height: 5px;
	margin: 5px 4px;
	border-radius: 0;
	background-color: #f85d08;
}

.owl-carousel .owl-dots .owl-dot.active span, 
.owl-carousel .owl-dots .owl-dot:hover span {
	background-color: #17529a !important;
}

.owl-carousel .owl-stage {
	display: flex;
	align-items: stretch;
}

.pin_produtos {
	position: absolute;
	bottom: -25px;
	right: 25px;
	width: 50px !important;
	height: 50px;
	z-index: 99;
}

.card-diferenciais > div {
	background: rgb(255,255,255);
	background: -moz-linear-gradient(293deg, rgba(255,255,255,1) 0%, rgba(238,238,238,1) 100%);
	background: -webkit-linear-gradient(293deg, rgba(255,255,255,1) 0%, rgba(238,238,238,1) 100%);
	background: linear-gradient(293deg, rgba(255,255,255,1) 0%, rgba(238,238,238,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#eeeeee",GradientType=1);
}

.card-diferenciais:nth-child(1) > div {
	background: rgb(0,122,255);
	background: -moz-linear-gradient(293deg, rgba(0,122,255,1) 0%, rgba(0,0,150,1) 100%);
	background: -webkit-linear-gradient(293deg, rgba(0,122,255,1) 0%, rgba(0,0,150,1) 100%);
	background: linear-gradient(293deg, rgba(0,122,255,1) 0%, rgba(0,0,150,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#007aff",endColorstr="#000096",GradientType=1);
}

.icone-diferenciais {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
}

.c-quote:before {
	content: '';
	position: absolute;
	top: -47px;
	left: -127px;
	width: 245px;
	height: 179px;
	background-image: var(--quote);
	background-repeat: no-repeat;   
	z-index: -1;
}

@media(max-width: 990px) {
	.c-quote:before {
		left: -41px;
	}
}

/*
* Footer
*/

.border-btn-newsletter {
	border-radius: 0px 5px 5px 0px;
}

.border-input-newsletter {
	border-radius: 5px 0px 0px 5px;
}

.text-custom-rodape {
	color: #ffffff !important;
}

footer#footer {
	background: #000096;
	border: none !important;
}

/*
* Institucional
*/

.pin_unidades {
	position: absolute;
	top: -65px;
	left: calc(50% - 47px);
}

.owl-carousel.owl-institucional .owl-dots .owl-dot span {
	width: 115px;
	height: 8px;
	margin: 30px 0 0 0;
	border-radius: 0;
}

.owl-carousel.owl-institucional .owl-dots .owl-dot span {
	background-color: #fff !important;
}

.owl-carousel.owl-institucional .owl-dots .owl-dot.active span, 
.owl-carousel.owl-institucional .owl-dots .owl-dot:hover span {
	background-color: #09113f !important;
}

.img-institucional {
	position: absolute;
	top: 65px;
	left: -300px;
	width: 1000px;
	z-index: 0;
}

/* O logo cinza decorativo tem 1000px de largura e comeca em left:-300px, ou
 * seja, a ponta direita dele fica em x=700. Em qualquer tela menor que 700px
 * (390 e 320 inclusive) era ELE, sozinho, que esticava o scrollWidth para 700
 * e criava rolagem horizontal na home. O carrossel .owl-stage tambem passa da
 * viewport, mas .owl-stage-outer ja o recorta e ele nao entra na conta.
 * Recortar na propria secao nao muda nada do que se ve: a esquerda o corte cai
 * exatamente onde a viewport ja cortava, e a direita so passa a valer abaixo
 * de 700px. overflow-x:clip (e nao hidden) para nao criar um container de
 * rolagem nem interferir em position:sticky. */
section:has(> .img-institucional) { overflow-x: clip; }

.img-flu-institucional {
	position: absolute;
}

.img-flu-institucional.um {
	bottom: -20px;
	left: -20px;
	z-index: 1;
}

.img-flu-institucional.dois {
	top: 0;
	right: 0;
	z-index: 0;
}

.img-flu-institucional.tres {
	bottom: -40px;
	right: 0;
	z-index: 1;
}

.img-diferenciais {
	position: absolute;
	bottom: -3rem;
	left: -17px;
	z-index: 0;
	opacity: 0.5;
}

.owl-carousel.owl-blog .owl-dots {
	position: absolute;
	bottom: 0;
	width: 44%;
	right: -52%;
	text-align: right;
	transform: rotate(180deg);
}

.owl-carousel.owl-blog .owl-dots .owl-dot span,
.owl-carousel.owl-blog-mobile .owl-dots .owl-dot span {
	width: 40px;
	background-color: #C8C8C8;
}

.owl-carousel.owl-blog .owl-dots .owl-dot.active span, 
.owl-carousel.owl-blog .owl-dots .owl-dot:hover span,
.owl-carousel.owl-blog-mobile .owl-dots .owl-dot.active span, 
.owl-carousel.owl-blog-mobile .owl-dots .owl-dot:hover span {
	background-color: #000096 !important;
}

.img-solucoes-topo {
	width: 70px !important;
	height: 70px !important;
	transform: rotate(314deg) !important;
}

@media(max-width: 1200px) {
	.img-flu-institucional {
		width: 270px;
	}
}

@media(max-width: 991px) {
	.img-flu-institucional {
		width: 330px;
	}
}

@media(max-width: 765px) {
	.img-flu-institucional {
		width: 250px;
	}

	.img-flu-institucional.um {
		bottom: 20px;
		left: 0;
	}
}

@media(max-width: 500px) {
	.img-flu-institucional {
		width: 205px;
	}
}

.mvv-container {
	background: #007aff;
	background: -moz-linear-gradient(330deg, rgba(0,122,255,1) 0%, rgba(0,0,150,1) 100%);
	background: -webkit-linear-gradient(330deg, #007aff 0%, #000096 100%);
	background: linear-gradient(1deg, #007aff 0%, #000096 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#007aff",endColorstr="#000096",GradientType=1);
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	transform: rotate(45deg);
	box-shadow: 0 0 3px 0px #00000057;
}

.mvv-container img {
	transform: rotate(315deg);
}

.background-mvv {
	position: absolute;
	bottom: 0;
	left: 44px;
	z-index: 0;
	opacity: 0.5;
	height: 460px;
}

@media(max-width: 991px) {
	.background-mvv {
		display: none !important;
	}
}

.border-mvv {
	border-radius: 50px;
	overflow: hidden;
}

/*
* Contato
*/

::placeholder {
	color: #000000 !important;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #000000 !important;
}

::-ms-input-placeholder {
	color: #000000 !important;
}

.form-control {
	border: 1px solid #c8c8c8;
}

label.error {
	display: none !important;
}

form select:not(.cotacao) {
	background-image: linear-gradient(45deg, #0000 50%, #093a64 50%), linear-gradient(135deg, #093a64 50%, #0000 50%), linear-gradient(to right, #0000 , #0000 ) !important;
	background-position: calc(100% - 18px) calc(1em + 13px), calc(100% - 13px) calc(1em + 13px), calc(100% - 2.4em) 0.3em !important;
	background-size: 5px 5px, 5px 5px, 1px 2.6em !important;
	background-repeat: no-repeat !important;
}

input,select,textarea {
	background-color: #eeeeee !important;
}

.container-unidades .card-unidades:nth-child(1) {
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.container-unidades .card-unidades:nth-last-child(1) {
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

.input-yellow {
	background-color: #ffed00 !important;
	border-color: #ffed00 !important;
}

.custom-file-input {
	height: 1px;
	width: 1px;
	opacity: 0;
	position: absolute;
}

.custom-file-label {
	height: 40px;
	width: 100%;
	background-color: #f5f5f5;
	color: #c7c7c7;
	border: 1px solid #c8c8c8;
	display: flex;
	align-items: center;
	padding: 0.375rem 0.75rem;
	cursor: pointer;
	position: relative;
}

.custom-file-label:before {
	background-color: #f27135;
	content: 'Anexar arquivo';
	font-family: 'galano-grotesque-medium';
	display: flex;
	height: 40px;
	width: 142px;
	align-items: center;
	justify-content: center;
	color: #fff;
	right: 0px;
	position: absolute;
	padding-bottom: 4px;
}

label.error {
	display: none !important;
}

.file-input-contato {
	height: 57px;
	background-color: #eeeeee;
	width: 100%;
	border: 1px solid #c8c8c8;
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
	padding: 0.375rem 7rem 0.375rem 0.75rem;
	border-radius: 0.25rem;
}

.file-input-contato span {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	font-size: 1.1em !important;
	font-family: 'Montserrat', Arial, sans-serif; font-weight: 500;
	color: #423b3b;
}

.file-input-contato:after {
	content: 'ANEXAR';
	position: absolute;
	width: 100px;
	height: 55px;
	top: 0;
	right: 0;
	background: linear-gradient(346deg, rgba(0,122,255,1) 0%, rgba(0,0,150,1) 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Montserrat', Arial, sans-serif; font-weight: 400;
	font-size: 13px;
	border-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
}

.file-input-contato input {
	opacity: 0;
	width: 1px;
	height: 1px;
}

/*
* Global
*/

.border-c-radius {
	border-radius: 8px;
}

.img-shadow {
	filter: drop-shadow(-24px -16px 38px #00000045);
}

/*
* Serviços
*/

.owl-servicos.owl-carousel:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"],
.btn-carrousel-blog.servicos {
	background-color: transparent !important;
	color: #0021b3 !important;
	border: none !important;
}

@media(max-width: 991px) {
	.owl-servicos.owl-carousel .owl-nav {
		display: none !important;
	}
}

.owl-servicos.owl-carousel .owl-nav {
	width: calc(100% + 60px);
	left: -30px;
}

.container-img-servicos {
	position: relative;
}

.container-img-servicos:before {
	content: '';
	position: absolute;
	top: calc(50% - 40px);
	right: -5px;
	height: 80px;
	width: 80px;
	z-index: 1;
	border-right: 10px solid #fff;
	border-bottom: 8px solid #fff;
	border-radius: 0px 0px 48px 0px;
	transform: skew(356deg , 2deg) rotate(312deg);
}

.container-img-servicos:after {
	content: '';
	position: absolute;
	top: -1px;
	right: 0;
	height: calc(100% + 1px);
	width: 100%;
	background-color: #fff;
	clip-path: polygon(50% 0%, 101% 0%, 101% 100%, 50% 100%, 100% 50%);
}

.img-servicos {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

.logo-servicos {
	background: #0016A9;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	transform: rotate(45deg);
	position: absolute;
	top: 30px;
	right: 39px;
	z-index: 3;
}

.logo-servicos img {
	transform: rotate(315deg);
	height: 40px;
}

/*
* Qualidade
*/

.item-certificacao {
	border-radius: 8px;
	overflow: hidden;
}

.descricao-qualidade br {
	content: "";
	margin: 2em;
	display: block;
	font-size: 24%;
}

/*
* Insights
*/

.container-search input {
	border-radius: 8px 0 0 8px !important;
}

.container-search button {
	border-radius: 0 8px 8px 0 !important;
}

.card-insight {
	position: relative;
	background-color: #fff;
	border-radius: 8px;
	transition: all .3s;
}

.card-insight:hover {
	transform: translateY(-10px);
}

.card-insight img {
	border-radius: 8px 8px 0 0;
}

.card-insight .plus {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: rgb(0,122,255);
	background: -moz-linear-gradient(346deg, rgba(0,122,255,1) 0%, rgba(0,0,150,1) 100%);
	background: -webkit-linear-gradient(346deg, rgba(0,122,255,1) 0%, rgba(0,0,150,1) 100%);
	background: linear-gradient(346deg, rgba(0,122,255,1) 0%, rgba(0,0,150,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#007aff",endColorstr="#000096",GradientType=1);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 40px;
	font-weight: 100;
	position: absolute;
	bottom: -26px;
	left: calc(50% - 25px);
	box-shadow: 0 0 9px 0px #00000042;
	transition: all .3s;
}

.card-insight:hover .plus {
	transform: rotate(180deg);
}

.logo-blog {
	position: absolute;
	bottom: 0;
	right: 0;
}

@media(max-width: 570px) {
	.logo-blog {
		right: 30px;
	}
}

.owl-insights.owl-carousel .owl-dots .owl-dot span {
	width: 15px;
	height: 15px;
}

.owl-insights.owl-carousel .owl-dots .owl-dot.active span, 
.owl-insights.owl-carousel .owl-dots .owl-dot:hover span {
	background-color: #0013a6 !important;
}

.owl-insights.owl-carousel .owl-stage-outer {
	display: flex;
	align-items: stretch;
}

.unidades hr {
	background: #000096 !important;
}

.unidades:nth-last-child(1) hr {
	display: none;
}

/*
* Banner - video
*/

.titulo-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.titulo-video h1 {
	text-shadow: 0px 0px 3px #626262;
}

@media(min-width: 576px) {
	.titulo-video {
		padding: 0 3rem;
	}
}

@media(min-width: 768px) {
	.titulo-video {
		padding: 0 10rem;
	}
}

@media(min-width: 991px) {
	.titulo-video {
		padding: 0 19rem;
	}
}

@media(min-width: 1200px) {
	.titulo-video {
		padding: 0 25rem;
	}
}

@media(min-width: 1400px) {
	.titulo-video {
		padding: 0 34rem;
	}
}

/*
* Trabalhe conosco
*/

.btn-submit-arquivo {
	cursor: pointer;
}

.btn-submit-arquivo input {
	width: 0px;
	height: 0px;
	opacity: 0;
	position: absolute;
}

@media(min-width: 1200px) {
	.header-container {
		max-width: 1200px;
	}
}

@media(max-width: 1200px) {
	.header-container {
		max-width: 1027px;
	}
}

/* ==========================================================================
 * FASE 1 — Home (narrativa binacional Brasil–EUA) + RFQ
 * --------------------------------------------------------------------------
 * Referência de design: o próprio site da VRI. Nada de paleta ou tipografia
 * nova — reusa #000096 / #00005b / #f4f6fb e a família Montserrat.
 * Regras: um único estilo de sombra, raio de card 16px, botão pílula.
 * Texturas deliberadamente diferentes por seção (numeral / hairline /
 * grade de fio) para não repetir o mesmo card seis vezes seguidas.
 * ========================================================================== */

:root {
	--vri-blue:       #000096;
	--vri-blue-deep:  #00005b;
	--vri-blue-ink:   #000FA3;
	--vri-offwhite:   #f4f6fb;
	--vri-ink-soft:   #33406b;
	--vri-line:       rgba(0,0,60,.10);
	--vri-shadow:     0 6px 20px rgba(0,0,60,.05);
	--vri-r:          16px;
}

/* --- Hero único: foto real da fábrica sob o azul VRI ----------------------
 * Fase 2. Antes havia DOIS heróis empilhados: um carrossel Owl de 8 slides
 * (banners-desktop / banners-mobile) e a faixa de manchete .vri-hero-claim.
 * O carrossel foi removido inteiro — o texto dele vinha QUEIMADO em português
 * dentro do JPG e era mascarado por uma pílula HTML opaca, o que vazava
 * português em /en e /es. Agora é um bloco só: foto + manchete + um CTA.
 *
 * A foto é um frame do institucional da própria VRI (vri29-pt.mp4 @00:30),
 * então é material próprio, sem licença de terceiro. Para trocar por uma foto
 * maior basta sobrescrever /public/uploads/home/hero-fabrica.jpg — o CSS
 * enquadra por object-fit e não depende das dimensões do arquivo.
 *
 * O gradiente não é decoração: ele existe para (1) garantir contraste AAA do
 * texto branco sobre uma foto de luminância variável e (2) emendar a foto na
 * barra .vri-stats, que usa o mesmo --vri-blue-deep e vem logo abaixo. */
.vri-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--vri-blue-deep); }
.vri-hero-img {
	position: absolute; inset: 0; width: 100%; height: 100%;
	/* 68% horizontal mantém o operador no terço direito; 14% vertical existe
	 * porque o quadro do hero é bem mais panorâmico que a foto (16:9) — a 50%
	 * o corte comia a cabeça dele. */
	object-fit: cover; object-position: 68% 14%; z-index: 0;
}
/* Overlay em #000096 e nos valores LEVES: com o fundo em video, um veu pesado
 * apagava a imagem e sobrava chapado azul. Medido antes de aliviar — o texto
 * branco tinha 12,3:1 de contraste, e AAA pede 4,5:1, entao havia folga.
 * O segundo gradiente continua sendo o que emenda o hero na barra .vri-stats,
 * que vem logo abaixo em --vri-blue-deep. */
.vri-hero::after {
	content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background:
		linear-gradient(104deg, rgba(0,0,150,.86) 0%, rgba(0,0,150,.66) 38%, rgba(0,0,150,.30) 72%, rgba(0,0,150,.42) 100%),
		linear-gradient(to bottom, rgba(0,0,91,0) 62%, rgba(0,0,91,.62) 100%);
}

/* --- Video de fundo do hero -----------------------------------------------
 * O POSTER e o <img class="vri-hero-img">, que ja existia e ja e o elemento de
 * LCP (fetchpriority=high). O video entra por cima, invisivel, e so aparece
 * quando consegue tocar — assim a primeira pintura nunca espera por ele.
 * Sem `autoplay` no HTML: o play e disparado por JS depois do load, e so
 * quando ha permissao para movimento (ver vri-hero-video.js). */
.vri-hero-video {
	position: absolute; inset: 0; width: 100%; height: 100%;
	object-fit: cover; object-position: 68% 14%;
	z-index: 0; opacity: 0;
	transition: opacity .7s cubic-bezier(0,0,.2,1);
}
.vri-hero-video[data-pronto] { opacity: 1; }

/* Realce de uma palavra da manchete. Faixa larga em azul-gelo: o resto da
 * manchete ja e branco, entao um realce branco nao distinguiria nada. */
.vri-hero-h .vri-realce {
	background: linear-gradient(100deg,#fff 0%,#bfe6ff 22%,#7ec8ff 50%,#bfe6ff 78%,#fff 100%);
	background-size: 180% 100%;
	background-position: 0% 50%;
	-webkit-background-clip: text; background-clip: text;
	color: transparent;
	filter: drop-shadow(0 0 26px rgba(120,200,255,.5));
	animation: vriRealce 9s ease-in-out infinite;
}
@keyframes vriRealce {
	0%, 100% { background-position: 0% 50%; }
	50%      { background-position: 100% 50%; }
}

/* parallax: a camada de midia sobe 0.35x da rolagem. So >=1024px — no celular
 * o custo nao compensa e a barra de endereco faz a conta pular. */
.vri-hero-media { position: absolute; inset: 0; z-index: 0; will-change: transform; }
@media (max-width: 1023px) { .vri-hero-media { will-change: auto; } }

@media (prefers-reduced-motion: reduce) {
	/* fica o poster: o video nem chega a iniciar (ver o JS), e o realce para. */
	.vri-hero-video { display: none; }
	.vri-hero-h .vri-realce { animation: none; }
	.vri-hero-media { transform: none !important; }
}
.vri-hero-body {
	position: relative; z-index: 2; display: flex; align-items: center;
	min-height: clamp(540px, 75vh, 730px);
	padding: clamp(48px, 6vw, 72px) 0;
	/* full-bleed: em paisagem no iPhone o texto não pode entrar sob o notch */
	padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right);
}
.vri-hero .vri-hero-h { max-width: 17ch; }
.vri-hero .vri-hero-p { max-width: 46ch; }

/* tipografia da manchete — vinha da antiga faixa .vri-hero-claim, preservada
 * tal e qual: sobre a foto o gradiente já garante o contraste. */
.vri-hero-flag {
	display: inline-flex; align-items: center; gap: .5rem;
	margin-bottom: 1.05rem; padding: .32rem .85rem;
	border: 1px solid rgba(255,255,255,.4); border-radius: 999px;
	color: rgba(255,255,255,.92); font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
	font-size: .72rem; letter-spacing: .13em; text-transform: uppercase;
}
.vri-hero-flag svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }
.vri-hero-h {
	color: #fff; font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; margin: 0 0 .85rem;
	font-size: clamp(1.5rem, 3.1vw, 2.65rem); line-height: 1.09; letter-spacing: -.022em;
	text-wrap: balance;
}
.vri-hero-p {
	color: rgba(255,255,255,.85); font-family: 'Montserrat', Arial, sans-serif; font-weight: 500;
	font-size: clamp(.95rem, 1.25vw, 1.12rem); line-height: 1.5;
	margin: 0 0 1.55rem;
}
@media (max-width: 991px) { .vri-hero-p { font-size: .95rem; } }


/* entrada escalonada: 80ms entre elementos, 14px de deslocamento, ease-out */
@keyframes vriHeroIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.vri-hero-flag,
.vri-hero .vri-hero-h,
.vri-hero .vri-hero-p,
.vri-hero-cta { animation: vriHeroIn .62s cubic-bezier(0,0,.2,1) both; }
.vri-hero-flag        { animation-delay: .05s; }
.vri-hero .vri-hero-h { animation-delay: .13s; }
.vri-hero .vri-hero-p { animation-delay: .21s; }
.vri-hero-cta         { animation-delay: .29s; }

@media (max-width: 991px) {
	/* no celular o texto desce para o rodapé do quadro e o gradiente vira
	 * vertical: a operadora continua visível na metade de cima. */
	.vri-hero-img, .vri-hero-video { object-position: 62% 38%; }
	.vri-hero::after {
		background: linear-gradient(to bottom, rgba(0,0,91,.32) 0%, rgba(0,0,91,.60) 42%, rgba(0,0,91,.94) 100%);
	}
	.vri-hero-body { align-items: flex-end; min-height: clamp(430px, 78vh, 620px); padding-bottom: clamp(28px, 5vw, 40px); }
	.vri-hero .vri-hero-h, .vri-hero .vri-hero-p { max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
	@keyframes vriHeroIn { from { opacity: 0; } to { opacity: 1; } }
	.vri-hero-flag,
	.vri-hero .vri-hero-h,
	.vri-hero .vri-hero-p,
	.vri-hero-cta { animation-duration: .2s; animation-delay: 0s; }
}

/* a barra de números encosta no hero: leem-se como um só bloco */
.vri-hero + .vri-stats .vri-stats-grid { border-top: 1px solid rgba(255,255,255,.14); }

/* --- Barra de números: faixa curta e densa, puro tipográfico -------------- */
.vri-stats { background: var(--vri-blue-deep); }
.vri-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.vri-stat { padding: 1.9rem 1.4rem; text-align: center; border-left: 1px solid rgba(255,255,255,.13); }
.vri-stat:first-child { border-left: 0; }
.vri-stat-n {
	display: block; color: #fff; font-family: 'Montserrat', Arial, sans-serif; font-weight: 700;
	font-size: clamp(1.55rem, 2.9vw, 2.45rem); line-height: 1; letter-spacing: -.02em;
	font-feature-settings: "tnum";
}
.vri-stat-l {
	display: block; color: rgba(255,255,255,.6); font-family: 'Montserrat', Arial, sans-serif; font-weight: 500;
	font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; margin-top: .6rem; line-height: 1.4;
}
@media (max-width: 800px) {
	.vri-stats-grid { grid-template-columns: repeat(2, 1fr); }
	.vri-stat:nth-child(3) { border-left: 0; }
	.vri-stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.13); }
}

/* --- Cards de diferenciais -------------------------------------------------
 * Regras migradas do <style> inline que vivia na própria home. Agora ficam
 * aqui porque a seção de prova social e as de passos/certificações reusam
 * .vri-diff-sub e .vri-diff-grid. */
.vri-diff-sec .vri-diff-h { font-size: clamp(1.6rem, 3.2vw, 2.2rem); }
.vri-diff-sub { color: var(--vri-ink-soft); max-width: 720px; margin-left: auto; margin-right: auto; }
/* flex, não grid: são 5 diferenciais — numa grade de 3 colunas a segunda
 * linha ficaria com um vão à direita. Assim a linha órfã fica centralizada. */
.vri-diff-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem; max-width: 1040px; margin: 0 auto; }
.vri-diff-item {
	flex: 0 1 calc(33.333% - .94rem);
	background: #fff; border: 1px solid #e6e9f2; border-radius: var(--vri-r);
	padding: 1.6rem 1.5rem; box-shadow: var(--vri-shadow); text-align: center;
}
.vri-diff-ic {
	display: inline-flex; width: 56px; height: 56px; align-items: center; justify-content: center;
	border-radius: 14px; background: linear-gradient(135deg,#0a3d91,#1e73be); margin-bottom: 1rem;
}
.vri-diff-ic svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.vri-diff-item h3 { color: var(--vri-blue); font-size: 1.06rem; margin: 0 0 .4rem; }
.vri-diff-item p  { font-size: .92rem; line-height: 1.5; margin: 0; color: var(--vri-ink-soft); }
@media (max-width: 800px) { .vri-diff-item { flex-basis: 100%; } }

/* --- Plano em 3 passos: sequência com fio, não três cards ----------------- */
.vri-steps-h { font-size: clamp(1.55rem, 3.1vw, 2.15rem); letter-spacing: -.015em; }
.vri-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.6rem; max-width: 1040px; margin: 0 auto; }
.vri-step { position: relative; }
.vri-step-n {
	width: 2.55rem; height: 2.55rem; border-radius: 999px;
	background: linear-gradient(135deg,#0a3d91,#1e73be); color: #fff;
	font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; font-size: .95rem;
	display: inline-flex; align-items: center; justify-content: center;
	margin-bottom: 1.15rem; position: relative; z-index: 2;
}
.vri-step h3 { color: var(--vri-blue); font-size: 1.1rem; margin: 0 0 .5rem; letter-spacing: -.01em; }
.vri-step p  { color: var(--vri-ink-soft); font-size: .95rem; line-height: 1.6; margin: 0; }
.vri-step:not(:last-child)::after {
	content: ""; position: absolute; top: 1.27rem; left: 3.1rem; right: -1.6rem;
	height: 1px; background: var(--vri-line);
}
@media (max-width: 800px) {
	.vri-steps-grid { grid-template-columns: 1fr; gap: 1.9rem; }
	.vri-step:not(:last-child)::after { display: none; }
}

/* --- Nearshoring: bloco assimétrico e escuro ------------------------------ */
.vri-near { background: var(--vri-blue-deep); color: #fff; }
.vri-near-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.vri-near-eyebrow {
	color: rgba(255,255,255,.55); font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
	font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 .9rem;
}
.vri-near h2 {
	color: #fff; font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; margin: 0 0 1.2rem;
	font-size: clamp(1.6rem, 3.3vw, 2.6rem); line-height: 1.1; letter-spacing: -.022em; max-width: 15ch;
}
.vri-near p { color: rgba(255,255,255,.82); font-size: 1rem; line-height: 1.65; margin: 0 0 1rem; max-width: 54ch; }
.vri-near-link {
	display: inline-block; margin-top: .6rem; color: #fff; text-decoration: none;
	font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; font-size: .95rem;
	border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 2px;
	transition: border-color .15s ease-out;
}
.vri-near-link:hover { color: #fff; border-bottom-color: #fff; }
.vri-near-facts { border-left: 2px solid rgba(255,255,255,.25); padding-left: 1.5rem; }
.vri-near-fact { margin-bottom: 1.5rem; }
.vri-near-fact:last-child { margin-bottom: 0; }
.vri-near-fact b {
	display: block; color: #fff; font-family: 'Montserrat', Arial, sans-serif; font-weight: 700;
	font-size: 1.35rem; line-height: 1.15; letter-spacing: -.01em; margin-bottom: .3rem;
}
.vri-near-fact span { display: block; color: rgba(255,255,255,.68); font-size: .9rem; line-height: 1.5; }
@media (max-width: 900px) {
	.vri-near-grid { grid-template-columns: 1fr; gap: 2.2rem; }
	.vri-near h2 { max-width: none; }
}

/* --- Hero das páginas de serviço: foto real da fábrica --------------------
 * As 45 páginas internas usam .vri-page-hero com o MESMO SVG azul genérico
 * (vri-page-hero-bg.svg), e essa regra está duplicada inline nas 45. Este
 * modificador liga foto só nas 15 páginas de serviço (5 serviços × PT/EN/ES)
 * sem tocar nas outras 30 nem no <style> inline delas.
 *
 * Seletor com `section.` de propósito: a regra inline `.vri-page-hero` tem a
 * mesma especificidade e vem DEPOIS do custom.css no <head>. `section.` sobe
 * para (0,1,1) e vence independente da ordem.
 *
 * A foto entra por custom property, setada no próprio elemento:
 *   <section class="vri-page-hero vri-page-hero--photo"
 *            style="--vri-hero-photo:url('/public/uploads/servicos/servico-x.jpg')">
 * Trocar a arte = sobrescrever o JPG; o HTML não muda.
 *
 * O gradiente existe para segurar o contraste do H1 branco sobre foto de
 * luminância variável — não é decoração. É de fundo (decorativa), então a foto
 * não leva alt: quem carrega o significado é o <h1>. */
section.vri-page-hero--photo {
	background:
		linear-gradient(180deg, rgba(0,0,91,.64) 0%, rgba(0,0,91,.80) 100%),
		var(--vri-hero-photo) center/cover no-repeat,
		var(--vri-blue);
}

/* --- Faixa "dentro da fábrica" --------------------------------------------
 * Três fotos reais (frames do institucional da própria VRI) coladas de ponta a
 * ponta: sem card, sem sombra, sem .container. A seção existe justamente para
 * quebrar a sequência de blocos de texto com prova visual, então a foto é o
 * conteúdo e não há título — a legenda basta. Ordem = ordem do processo:
 * almoxarifado, linha, inspeção.
 * Legenda com o mesmo tratamento tipográfico de .vri-stat-l (caixa alta, .1em). */
.vri-floor { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--vri-blue-deep); }
.vri-floor-i { position: relative; margin: 0; overflow: hidden; }
.vri-floor-i img { display: block; width: 100%; height: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.vri-floor-i figcaption {
	position: absolute; left: 0; right: 0; bottom: 0;
	padding: 2.6rem 1.4rem 1.1rem;
	background: linear-gradient(to top, rgba(0,0,91,.88) 0%, rgba(0,0,91,0) 100%);
	color: #fff; font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
	font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; line-height: 1.4;
}
@media (max-width: 800px) {
	.vri-floor { grid-template-columns: 1fr; }
	.vri-floor-i img { aspect-ratio: 16 / 9; }
}

/* --- Certificações: grade de fio, o ano é o gráfico (sem ícone) ----------- */
.vri-cert-h { font-size: clamp(1.55rem, 3.1vw, 2.15rem); letter-spacing: -.015em; }
.vri-cert-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
	background: var(--vri-line); border: 1px solid var(--vri-line);
	border-radius: var(--vri-r); overflow: hidden; max-width: 1040px; margin: 0 auto;
}
.vri-cert-item { background: #fff; padding: 1.75rem 1.5rem; }
.vri-cert-year {
	font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; font-size: .73rem; letter-spacing: .14em;
	text-transform: uppercase; color: #7c86ad; font-feature-settings: "tnum";
}
.vri-cert-item h3 { color: var(--vri-blue); font-size: 1.22rem; margin: .4rem 0 .5rem; letter-spacing: -.012em; }
.vri-cert-item p  { color: var(--vri-ink-soft); font-size: .92rem; line-height: 1.55; margin: 0; }
@media (max-width: 800px) { .vri-cert-grid { grid-template-columns: 1fr; } }

/* Slot de selo nos cards de certificação.
 * Fica vazio de propósito: NÃO existe "logo ISO 9001" que uma empresa
 * certificada possa exibir — a própria ISO proíbe o uso da marca dela. O que se
 * publica é a marca do ORGANISMO CERTIFICADOR mais a de acreditação, sob as
 * regras dele. Pelos certificados em /public/uploads/upload_cad_certificacoes/,
 * o organismo da VRI é a NCC Certificações do Brasil (a Bureau Veritas company),
 * acreditação Cgcre 0001 — certificados NCC 25.11279 (ISO 9001:2015) e
 * NCC 25.11278 (ISO 13485:2016), ambos válidos até 20/02/2028. O IPC é
 * MEMBRO, não certificação: o logo de membro vem do portal de membros do IPC.
 * Para ligar um selo: colocar o arquivo em /public/uploads/home/ e descomentar
 * a linha <img class="vri-cert-seal"> dentro do card correspondente. */
.vri-cert-item { position: relative; }
.vri-cert-seal {
	position: absolute; top: 1.6rem; right: 1.5rem;
	height: 40px; width: auto; max-width: 92px; object-fit: contain;
}
.vri-cert-item:has(.vri-cert-seal) .vri-cert-year,
.vri-cert-item:has(.vri-cert-seal) h3 { padding-right: 104px; }


/* --- Cards de serviço com foto --------------------------------------------
 * Regras migradas do <style> inline que estava DUPLICADO em servicos.html,
 * services-en.html e services-es.html. Passam a servir também a grade da home
 * nos 3 idiomas: uma mudança aqui vale para os seis arquivos de uma vez. */
.vri-svc-grid {
	display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
	margin: 1rem auto 0; max-width: 1000px;
}
.vri-svc-card {
	flex: 1 1 280px; max-width: 300px; background: #fff;
	border: 1px solid #e6e9f2; border-radius: var(--vri-r); overflow: hidden;
	box-shadow: 0 6px 20px rgba(0,0,60,.06);
	display: flex; flex-direction: column;
	text-decoration: none; color: inherit; cursor: pointer;
	transition: transform .2s cubic-bezier(0,0,.2,1), box-shadow .2s cubic-bezier(0,0,.2,1);
}
.vri-svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,90,.15); }
.vri-svc-card .vri-svc-ph { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.vri-svc-card .vri-svc-b  { padding: 1.35rem 1.45rem 1.55rem; }
.vri-svc-card h3 { color: var(--vri-blue); font-size: 1.15rem; line-height: 1.2; margin: 0 0 .55rem; }
.vri-svc-card p  { font-size: .97rem; line-height: 1.55; margin: 0; }
.vri-svc-card a  { color: var(--vri-blue); text-decoration: none; border-bottom: 1px solid rgba(0,0,150,.35); }
@media (max-width: 575px) { .vri-svc-card { flex-basis: 100%; max-width: none; } }
@media (prefers-reduced-motion: reduce) {
	.vri-svc-card { transition: box-shadow .2s ease-out; }
	.vri-svc-card:hover { transform: none; }
}

/* --- Botão "Solicitar orçamento" no header -------------------------------- */
/* O tema estica os <a> do menu para a altura inteira do header e zera o
 * background deles. Por isso a pílula é desenhada no <span> interno, que
 * dimensiona pelo conteúdo. */
.vri-nav-cta > a { padding-left: .35rem !important; padding-right: .35rem !important; }
.vri-nav-cta .link-hover {
	display: inline-block !important; white-space: nowrap;
	padding: .52rem 1.1rem !important; line-height: 1.1 !important;
	border-radius: 999px;
	background: linear-gradient(346deg, rgb(0,122,255) 0%, rgb(0,0,150) 100%);
	border: 1px solid rgba(255,255,255,.55) !important;
	box-shadow: 0 1px 2px rgba(0,0,0,.18);
	transition: transform .15s ease-out, box-shadow .15s ease-out;
}
.vri-nav-cta > a:hover .link-hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,.28); }
.cd-primary-nav .vri-nav-cta-mobile a { color: var(--vri-blue-ink) !important; font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; }

/* --- RFQ (pedido de orçamento) -------------------------------------------
 * Formulário à esquerda + trilho de segurança à direita. Não é um form
 * centralizado numa caixa: quem manda Gerber/BOM quer ver, ao lado do campo
 * de upload, o que acontece com o arquivo depois. */
.vri-rfq { background: var(--vri-offwhite); }
.vri-rfq-head { max-width: 720px; margin: 0 0 2.4rem; }
.vri-rfq-eyebrow {
	color: #7c86ad; font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; font-size: .74rem;
	letter-spacing: .16em; text-transform: uppercase; margin: 0 0 .7rem;
}
.vri-rfq-head h1 {
	color: var(--vri-blue); font-family: 'Montserrat', Arial, sans-serif; font-weight: 700;
	font-size: clamp(1.6rem, 3.3vw, 2.5rem); line-height: 1.1; letter-spacing: -.022em;
	margin: 0 0 .8rem; text-wrap: balance;
}
.vri-rfq-head p { color: var(--vri-ink-soft); font-size: 1rem; line-height: 1.6; margin: 0; }

.vri-rfq-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: start; }
@media (max-width: 900px) { .vri-rfq-grid { grid-template-columns: 1fr; } }

.vri-rfq-form {
	background: #fff; border: 1px solid var(--vri-line); border-radius: var(--vri-r);
	padding: clamp(1.3rem, 3vw, 2.1rem); box-shadow: var(--vri-shadow);
}
.vri-rfq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.1rem; margin-bottom: 1.1rem; }
.vri-rfq-row--one { grid-template-columns: 1fr; }
@media (max-width: 620px) { .vri-rfq-row { grid-template-columns: 1fr; } }

.vri-rfq-field label {
	display: block; color: var(--vri-ink-soft); font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
	font-size: .82rem; letter-spacing: .02em; margin-bottom: .4rem;
}
.vri-rfq-field .req { color: var(--vri-blue-ink); }
/* O site já pinta input/select/textarea de #eee com !important (mesma
 * linguagem da página de Contato). Em vez de brigar com isso, mantemos o
 * preenchimento cinza e usamos borda transparente + anel de foco azul. */
.vri-rfq-field input[type=text],
.vri-rfq-field input[type=email],
.vri-rfq-field input[type=tel],
.vri-rfq-field select,
.vri-rfq-field textarea {
	width: 100%; border: 1px solid transparent; border-radius: 8px;
	padding: .62rem .8rem; font-size: .95rem; color: #1b2340; font-family: inherit;
	transition: border-color .15s ease-out, box-shadow .15s ease-out;
}
.vri-rfq-field textarea { min-height: 130px; resize: vertical; }
.vri-rfq-field input:focus, .vri-rfq-field select:focus, .vri-rfq-field textarea:focus {
	outline: none; border-color: var(--vri-blue-ink); box-shadow: 0 0 0 3px rgba(0,15,163,.14);
}
/* [fase2] O upload de Gerber/BOM saiu do formulário; .vri-rfq-drop,
 * .vri-rfq-files e .vri-rfq-help foram removidos junto por terem ficado
 * sem uso. */

/* caixas de marcar */
.vri-rfq-check { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .85rem; }
.vri-rfq-check input { margin-top: .22rem; flex: 0 0 auto; width: 16px; height: 16px; accent-color: var(--vri-blue); }
.vri-rfq-check label { font-size: .88rem; line-height: 1.5; color: var(--vri-ink-soft); margin: 0; font-family: inherit; }
.vri-rfq-check a { color: var(--vri-blue-ink); }

.vri-rfq-msg { margin: 0 0 1rem; padding: .8rem 1rem; border-radius: 8px; font-size: .9rem; line-height: 1.5; }
.vri-rfq-msg--err { background: #fdecec; border: 1px solid #f5c2c2; color: #8f2020; }
.vri-rfq-msg--ok  { background: #e9f7ee; border: 1px solid #b6e0c5; color: #1c6b3a; }
.vri-rfq-form[hidden], .vri-rfq-msg[hidden] { display: none !important; }

/* ---------------------------------------------------------------------------
   VRI News — aceite LGPD na faixa de inscrição (rodapé de 54 páginas).
   A faixa vive sobre .bg-dark-blue, então o aceite é branco com opacidade,
   e não usa as cores do formulário de orçamento (que fica sobre fundo claro).
   --------------------------------------------------------------------------- */
.vri-nl-check { display: flex; gap: .55rem; align-items: flex-start; margin-top: .8rem; }
.vri-nl-check input {
	margin-top: .2rem; flex: 0 0 auto; width: 16px; height: 16px;
	accent-color: #fff; cursor: pointer;
}
.vri-nl-check label {
	font-size: .8rem; line-height: 1.5; color: #fff; opacity: .82;
	margin: 0; font-family: inherit; cursor: pointer;
}
.vri-nl-check a { color: #fff; text-decoration: underline; }
.vri-nl-check a:hover { opacity: .8; }

/* No mobile a faixa fica centralizada; o aceite acompanha. */
@media (max-width: 767.98px) {
	.vri-nl-check { justify-content: center; }
	.vri-nl-check label { text-align: left; max-width: 30ch; }
}

/* trilho de segurança */
.vri-rfq-side { position: sticky; top: 120px; }
@media (max-width: 900px) { .vri-rfq-side { position: static; } }
.vri-rfq-side h2 {
	color: var(--vri-blue); font-family: 'Montserrat', Arial, sans-serif; font-weight: 700;
	font-size: 1.05rem; margin: 0 0 1rem; letter-spacing: -.01em;
}
.vri-rfq-side ol { list-style: none; margin: 0 0 1.7rem; padding: 0; counter-reset: rfq; }
.vri-rfq-side ol li {
	counter-increment: rfq; position: relative; padding-left: 2.1rem;
	margin-bottom: .95rem; font-size: .9rem; line-height: 1.55; color: var(--vri-ink-soft);
}
.vri-rfq-side ol li::before {
	content: counter(rfq); position: absolute; left: 0; top: -.06rem;
	width: 1.5rem; height: 1.5rem; border-radius: 999px;
	background: linear-gradient(135deg,#0a3d91,#1e73be); color: #fff;
	font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; font-size: .74rem;
	display: flex; align-items: center; justify-content: center;
}
.vri-rfq-note {
	border-left: 2px solid var(--vri-line); padding-left: 1rem;
	font-size: .86rem; line-height: 1.55; color: var(--vri-ink-soft); margin: 0 0 1.2rem;
}
.vri-rfq-note strong { color: var(--vri-blue); display: block; margin-bottom: .2rem; }

/* =========================================================================
 * [fase2-menu] Menu principal: submenus (Empresa / Serviços) + Nearshoring
 * -------------------------------------------------------------------------
 * A barra já estava no limite: em ES os itens somavam 908px numa faixa de
 * 882px a 1280px de viewport. Por isso "Trabalhe conosco" (o item mais largo,
 * 167px em ES) desceu para o submenu de Empresa e abriu espaço para
 * "Nearshoring" no topo, sem estourar.
 *
 * O painel usa --vri-blue-deep, o mesmo azul das seções .vri-near/.vri-stats:
 * ele prolonga a barra para baixo em vez de abrir um retângulo branco no meio
 * do azul. Os itens são caixa-baixa — a diferença de caixa é o que separa o
 * nível 1 do nível 2 sem precisar de indentação nem de ícone.
 * ===================================================================== */

/* O tema corta o que passa da faixa do header; o painel precisa vazar. */
#header .header-body,
#header .header-container,
#header .header-row,
#header .header-column,
#header .header-nav,
#header .header-nav-main,
#header .header-nav-main > nav,
#header #mainNav { overflow: visible; }

#header .header-body { z-index: 1001; }

#mainNav .vri-has-sub { position: relative; }

/* Seta: SVG desenhado no CSS para não depender do FontAwesome. */
.vri-sub-caret {
	display: inline-block; width: 7px; height: 7px; margin-left: .38em;
	vertical-align: .06em; border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg);
	transition: transform .18s cubic-bezier(0, 0, .2, 1);
	opacity: .72;
}
.vri-has-sub:hover > a .vri-sub-caret,
.vri-has-sub:focus-within > a .vri-sub-caret,
.vri-has-sub.is-open > a .vri-sub-caret { transform: translateY(1px) rotate(-135deg); opacity: 1; }

/* --- Painel ------------------------------------------------------------ */
.vri-sub {
	position: absolute; top: 100%; left: 50%;
	min-width: 244px; z-index: 1002;
	background: var(--vri-blue-deep);
	border: 1px solid rgba(255, 255, 255, .13);
	border-top: 0;
	border-radius: 0 0 4px 4px;
	box-shadow: 0 18px 40px rgba(0, 0, 20, .45);
	padding: .3rem 0;
	text-align: left;
	opacity: 0; visibility: hidden;
	transform: translateX(-50%) translateY(-6px);
	transition: opacity .12s cubic-bezier(.4, 0, 1, 1),
	            transform .12s cubic-bezier(.4, 0, 1, 1),
	            visibility 0s linear .12s;
}
/* Ponte invisível: cobre a folga entre o fim do <li> e o topo do painel,
 * senão o mouse "cai" no vão e o menu fecha no meio do caminho. */
.vri-sub::before {
	content: ''; position: absolute; left: 0; right: 0; top: -16px; height: 16px;
}
.vri-has-sub:hover > .vri-sub,
.vri-has-sub:focus-within > .vri-sub,
.vri-has-sub.is-open > .vri-sub {
	opacity: 1; visibility: visible;
	transform: translateX(-50%) translateY(0);
	transition: opacity .18s cubic-bezier(0, 0, .2, 1),
	            transform .18s cubic-bezier(0, 0, .2, 1),
	            visibility 0s;
}

/* Esc fecha o painel, mas o foco volta para o gatilho — e o :focus-within
 * acima reabriria tudo de novo. Esta classe vence a disputa até o mouse
 * entrar ou o foco sair do item. */
#mainNav .vri-has-sub.is-dismissed > .vri-sub {
	opacity: 0; visibility: hidden;
	transform: translateX(-50%) translateY(-6px);
	transition: opacity .12s cubic-bezier(.4, 0, 1, 1),
	            transform .12s cubic-bezier(.4, 0, 1, 1),
	            visibility 0s linear .12s;
}
#mainNav .vri-has-sub.is-dismissed > a .vri-sub-caret { transform: translateY(-2px) rotate(45deg); opacity: .72; }

.vri-sub ul { list-style: none; margin: 0; padding: 0; }
.vri-sub li { margin: 0; }
.vri-sub li + li > a,
.vri-sub li + li > span { border-top: 1px solid rgba(255, 255, 255, .07); }

.vri-sub a,
.vri-sub .vri-sub-soon {
	display: block; position: relative;
	padding: .62rem 1.05rem .62rem 1.05rem;
	font-family: 'Montserrat', Arial, sans-serif; font-weight: 400;
	font-size: .8125rem; line-height: 1.35; letter-spacing: .005em;
	color: rgba(255, 255, 255, .8);
	text-decoration: none;
	border-left: 2px solid transparent;
	transition: color .15s cubic-bezier(0, 0, .2, 1),
	            border-color .15s cubic-bezier(0, 0, .2, 1),
	            background-color .15s cubic-bezier(0, 0, .2, 1);
}
.vri-sub a:hover,
.vri-sub a:focus-visible {
	color: #fff;
	border-left-color: #007aff;
	background-color: rgba(255, 255, 255, .045);
	text-decoration: none;
}
.vri-sub a:focus-visible { outline: 0; }

/* "Visão geral" abre o grupo: é a página-mãe, não um irmão dos filhos. */
.vri-sub .vri-sub-overview {
	color: #fff; font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
	font-size: .78rem; letter-spacing: .05em; text-transform: uppercase;
}

/* Item ainda sem página. Sem href — não há 404 possível. */
.vri-sub .vri-sub-soon {
	color: rgba(255, 255, 255, .4); cursor: default;
	display: flex; align-items: center; justify-content: space-between; gap: .6rem;
}
.vri-sub-soon em {
	flex: 0 0 auto; font-style: normal;
	font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
	font-size: .5625rem; letter-spacing: .13em; text-transform: uppercase;
	color: rgba(255, 255, 255, .5);
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 2px; padding: .16em .42em .1em;
	white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
	.vri-sub { transform: translateX(-50%); transition: opacity .12s linear, visibility 0s linear .12s; }
	.vri-has-sub:hover > .vri-sub,
	.vri-has-sub:focus-within > .vri-sub,
	.vri-has-sub.is-open > .vri-sub { transform: translateX(-50%); transition: opacity .12s linear, visibility 0s; }
	.vri-sub-caret { transition: none; }
}

/* Folga a mais para o alvo do menu quando o link é uma âncora da home:
 * o header é sticky e cobriria o título da seção. */
#nearshoring { scroll-margin-top: 120px; }

/* --- Menu mobile -------------------------------------------------------
 * O overlay é #09113f. A regra antiga pintava o CTA de --vri-blue-ink
 * (#000FA3) — azul sobre azul-escuro, praticamente ilegível. Vira a mesma
 * pílula do desktop. E a escala cai de 28px para 21px porque a lista passou
 * de 9 para 10 linhas e não cabia em 844px de altura. */
.cd-primary-nav li { margin: .42em 0; }
.cd-primary-nav a { font-size: 21px; }

.cd-primary-nav .vri-nav-cta-mobile { margin: .2em 0 1.1em; }
.cd-primary-nav .vri-nav-cta-mobile a {
	display: inline-block;
	color: #fff !important;
	font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
	font-size: 15px; letter-spacing: .06em;
	padding: .72rem 1.6rem; border-radius: 999px;
	background: linear-gradient(346deg, rgb(0, 122, 255) 0%, rgb(0, 0, 150) 100%);
	border: 1px solid rgba(255, 255, 255, .55);
	box-shadow: 0 2px 10px rgba(0, 0, 20, .35);
	transition: transform .15s cubic-bezier(0, 0, .2, 1), box-shadow .15s cubic-bezier(0, 0, .2, 1);
}
.cd-primary-nav .vri-nav-cta-mobile a:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0, 0, 20, .45); }
.cd-primary-nav .vri-nav-cta-mobile a:active { transform: scale(.98); }

/* Sanfona do mobile: mesma ideia do desktop, empilhada. */
.cd-primary-nav .vri-m-sub > button {
	display: inline-flex; align-items: center; gap: .45em;
	background: none; border: 0; padding: 0;
	font-family: inherit; font-size: 21px; line-height: 24px; text-transform: uppercase;
	color: #fff; cursor: pointer;
}
.cd-primary-nav .vri-m-sub > button .vri-sub-caret { border-color: currentColor; }
.cd-primary-nav .vri-m-sub > button[aria-expanded="true"] .vri-sub-caret { transform: translateY(1px) rotate(-135deg); }

.cd-primary-nav .vri-m-panel {
	overflow: hidden; max-height: 0;
	transition: max-height .28s cubic-bezier(.4, 0, .2, 1);
}
.cd-primary-nav .vri-m-sub.is-open .vri-m-panel { max-height: 460px; }
.cd-primary-nav .vri-m-panel ul { list-style: none; margin: .5rem 0 .2rem; padding: 0; }
.cd-primary-nav .vri-m-panel li { margin: 0; }
.cd-primary-nav .vri-m-panel a,
.cd-primary-nav .vri-m-panel .vri-sub-soon {
	display: block; padding: .42rem 0;
	font-size: 14px !important; text-transform: none;
	letter-spacing: .01em;
	color: rgba(255, 255, 255, .68) !important;
}
.cd-primary-nav .vri-m-panel a:hover { color: #fff !important; }
.cd-primary-nav .vri-m-panel .vri-sub-overview {
	font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
	text-transform: uppercase; letter-spacing: .07em;
	font-size: 12px !important; color: rgba(255, 255, 255, .92) !important;
}
.cd-primary-nav .vri-m-panel .vri-sub-soon {
	display: inline-flex; align-items: center; gap: .5rem;
	color: rgba(255, 255, 255, .42) !important; cursor: default;
}

@media (prefers-reduced-motion: reduce) {
	.cd-primary-nav .vri-m-panel { transition: none; }
}

/* Com a sanfona aberta a lista chega perto do rodapé, e os botões flutuantes
 * (chat e WhatsApp) ficam por cima de "Contato". Enquanto o overlay do menu
 * estiver aberto, eles saem de cena. */
body:has(.cd-primary-nav.fade-in) #vri-chat-btn,
body:has(.cd-primary-nav.fade-in) .btn-whatsapp {
	opacity: 0; pointer-events: none;
	transition: opacity .18s cubic-bezier(.4, 0, 1, 1);
}

/* Títulos que eram <h1> por engano (várias h1 na mesma página) e viraram <h2>.
   Estas classes replicam exatamente o que o tema aplicava ao elemento h1,
   para que a mudança seja só semântica — nenhuma alteração visual.
   .vri-h1  = tamanho + peso (títulos sem classe text-N)
   .vri-h1w = só o peso (títulos que já tinham text-N definindo o tamanho) */
.vri-h1 { font-size: 2.275rem; line-height: 1.2088; }
.vri-h1, .vri-h1w { font-weight: 200; }

/* Home: os dois CTAs da coluna "Soluções e serviços" ficam com a mesma largura,
   independentemente do tamanho do rótulo em cada idioma. */
.vri-home-btn { min-width: 19rem; text-align: center; }
@media (max-width: 575.98px) { .vri-home-btn { min-width: 0; width: 100%; } }

/* Faixa de CTA do rodapé de página: uma faixa azul só, no lugar das duas seções
   quase brancas que existiam antes (uma com o botão "voltar", outra com o CTA).
   Os dois botões ficam lado a lado e do mesmo tamanho, com hierarquia clara:
   sólido para a ação principal, contorno para a secundária. */
.vri-cta-band { background: linear-gradient(135deg, #000096 0%, #0b32b8 55%, #1f4fd6 100%); }
.vri-cta-band .vri-cta-title { color: #fff; }
.vri-cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.vri-cta-btn {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 15.5rem; padding: .72rem 1.6rem;
	font-family: 'Montserrat', Arial, sans-serif; font-weight: 500; font-size: 1.05rem; letter-spacing: .01em;
	border-radius: 8px; text-decoration: none; border: 2px solid transparent;
	transition: background-color .25s, color .25s, border-color .25s, transform .25s;
}
.vri-cta-btn--primary { background: #fff; color: #000096; }
.vri-cta-btn--primary:hover { background: #eaeefb; color: #000096; transform: translateY(-2px); }
.vri-cta-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.vri-cta-btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.vri-cta-btn:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
@media (max-width: 575.98px) { .vri-cta-btn { min-width: 0; width: 100%; } }
@media (prefers-reduced-motion: reduce) { .vri-cta-btn { transition: none; } .vri-cta-btn:hover { transform: none; } }

/* Localizacoes: telefone que ainda nao foi confirmado pela VRI. Marcado em
   italico cinza para nao ser confundido com um numero real. */
.vri-unit-tel-todo{color:#8a90a3;font-style:italic;font-size:.92rem;}

/* --- Avaliacoes no Google -------------------------------------------------
 * O SELO e o protagonista, os cards sao apoio. Motivo: os reviews reais do
 * perfil sao curtos, genericos e antigos (4-8 anos) e nenhum e B2B — a nota
 * agregada com link para a fonte carrega mais confianca do que o texto.
 *
 * Titulo deliberadamente factual ("Avaliacoes no Google", nao "o que nossos
 * clientes dizem"): nem todo autor e cliente confirmado, e o perfil tem um
 * 1 estrela. Afirmar "clientes" seria alegar o que nao se pode comprovar.
 *
 * NAO existe AggregateRating/Review em JSON-LD para estes dados: marcar
 * review de terceiro como proprio viola as diretrizes do Google. A estrela
 * verificavel mora no link para o perfil, nao no schema. */
.vri-gr-wrap { max-width: 1040px; margin: 0 auto; text-align: center; }

/* selo */
.vri-gr-badge {
	display: inline-flex; align-items: center; gap: 1.15rem;
	padding: 1.15rem 1.75rem; margin: 0 auto 2.4rem;
	background: #fff; border: 1px solid #e6e9f2; border-radius: var(--vri-r);
	box-shadow: var(--vri-shadow); text-decoration: none;
	transition: transform .2s ease-out, box-shadow .2s ease-out, border-color .2s ease-out;
}
.vri-gr-badge:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,60,.10); border-color: #ccd3e8; }
.vri-gr-badge:focus-visible { outline: 3px solid var(--vri-blue); outline-offset: 3px; }
.vri-gr-score {
	font-family: 'Montserrat', Arial, sans-serif; font-weight: 700;
	font-size: clamp(2rem, 4.4vw, 2.7rem); line-height: 1; color: var(--vri-blue);
	letter-spacing: -.02em; font-feature-settings: "tnum";
}
.vri-gr-meta { text-align: left; }
.vri-gr-count {
	display: block; margin-top: .3rem; color: var(--vri-ink-soft);
	font-family: 'Montserrat', Arial, sans-serif; font-weight: 500; font-size: .88rem;
}
.vri-gr-go {
	display: block; margin-top: .1rem; color: var(--vri-blue);
	font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; font-size: .78rem;
	letter-spacing: .04em; text-transform: uppercase;
}

/* estrelas: duas camadas, a de cima recortada por width para a nota parcial */
.vri-gr-stars { position: relative; display: block; width: 116px; height: 22px; line-height: 0; }
.vri-gr-stars svg { display: block; width: 116px; height: 22px; }
.vri-gr-stars-fill { position: absolute; top: 0; left: 0; bottom: 0; overflow: hidden; }

/* cards de apoio: menores e mais discretos que os .vri-diff-item */
.vri-gr-cards { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 1.1rem; }
.vri-gr-card {
	flex: 0 1 calc(50% - .55rem); max-width: 420px;
	background: #fff; border: 1px solid #e6e9f2; border-radius: var(--vri-r);
	padding: 1.3rem 1.35rem; box-shadow: var(--vri-shadow); text-align: left;
	/* coluna + margin-top:auto no rodape: os dois cards tem alturas de texto
	   diferentes (um quebra em 2 linhas) e sem isso o nome do autor flutuava
	   em alturas distintas entre os cards. */
	display: flex; flex-direction: column;
}
.vri-gr-card .vri-gr-stars, .vri-gr-card .vri-gr-stars svg { width: 92px; height: 17px; }
.vri-gr-quote {
	/* zera a estilizacao de blockquote que vem do tema (barra lateral e recuo),
	   para o card seguir a mesma linguagem dos demais cards do site. */
	margin: .7rem 0 .9rem; padding: 0; border: 0; quotes: none;
	color: var(--vri-ink-soft);
	font-family: 'Montserrat', Arial, sans-serif; font-weight: 400;
	font-size: .95rem; line-height: 1.55;
}
.vri-gr-quote::before, .vri-gr-quote::after { content: none; }
.vri-gr-foot { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: auto; }
.vri-gr-author {
	color: var(--vri-blue); font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
	font-size: .84rem; letter-spacing: .01em;
}
.vri-gr-src {
	flex: 0 0 auto; color: #7c86ad;
	font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
	font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
	border: 1px solid #e6e9f2; border-radius: 999px; padding: .2rem .55rem;
}
/* nota de idioma: so aparece nas versoes EN/ES, onde o texto segue em PT */
.vri-gr-lang {
	margin: 1.5rem 0 0; color: #8a90a3;
	font-family: 'Montserrat', Arial, sans-serif; font-weight: 400; font-size: .78rem;
}
@media (max-width: 800px) {
	.vri-gr-card { flex-basis: 100%; }
	.vri-gr-badge { gap: .9rem; padding: 1rem 1.25rem; }
}
@media (max-width: 380px) {
	.vri-gr-badge { flex-direction: column; gap: .55rem; text-align: center; }
	.vri-gr-meta { text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
	.vri-gr-badge { transition: none; }
	.vri-gr-badge:hover { transform: none; }
}

/* --- CTA "Solicitar orçamento": dois tratamentos para escolha ------------
 * O `.btn-gradient-blue` do tema ja e um gradiente azul, mas sobre o hero
 * (que agora e video com veu #000096) ele some no fundo: azul sobre azul,
 * sem separacao. Os dois tratamentos abaixo resolvem isso por caminhos
 * diferentes — um por LUMINANCIA, outro por CONTORNO.
 *
 * Aplicar adicionando a classe ao <a>; sem a classe, nada muda. */

/* A — ELECTRIC: gradiente mais claro que o fundo, com halo e brilho que
 * atravessa no hover. Ganha destaque por luminancia. */
.vri-cta-a {
	position: relative; overflow: hidden; isolation: isolate;
	background: linear-gradient(135deg, #1b6bff 0%, #0a34e0 55%, #0a1fd8 100%) !important;
	box-shadow: 0 0 0 1px rgba(120,180,255,.55) inset,
	            0 8px 26px rgba(10,60,255,.45),
	            0 0 34px rgba(30,120,255,.30);
	transition: box-shadow .25s ease-out, transform .18s ease-out;
}
.vri-cta-a::after {
	content: ''; position: absolute; top: 0; bottom: 0; left: -60%; width: 45%;
	background: linear-gradient(100deg, transparent, rgba(255,255,255,.42), transparent);
	transform: skewX(-18deg); transition: left .55s cubic-bezier(0,0,.2,1);
	pointer-events: none;
}
.vri-cta-a:hover { transform: translateY(-2px);
	box-shadow: 0 0 0 1px rgba(150,200,255,.75) inset,
	            0 12px 34px rgba(10,60,255,.55),
	            0 0 46px rgba(40,140,255,.45); }
.vri-cta-a:hover::after { left: 115%; }

/* B — OUTLINE VIVO: fundo quase transparente com contorno ciano e vidro.
 * Ganha destaque por CONTORNO, nao por peso — deixa o video aparecer atras
 * e pesa menos sobre a imagem. */
.vri-cta-b {
	background: rgba(10,25,120,.34) !important;
	border: 1.5px solid rgba(125,205,255,.85) !important;
	backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
	box-shadow: 0 0 22px rgba(90,180,255,.28), 0 0 0 0 rgba(125,205,255,.5) inset;
	transition: background .25s ease-out, box-shadow .25s ease-out, transform .18s ease-out, border-color .25s ease-out;
}
.vri-cta-b:hover {
	background: rgba(20,70,220,.55) !important;
	border-color: #a8e0ff !important;
	transform: translateY(-2px);
	box-shadow: 0 0 30px rgba(120,200,255,.5), 0 8px 26px rgba(0,20,120,.45);
}

@media (prefers-reduced-motion: reduce) {
	.vri-cta-a, .vri-cta-b { transition: none; }
	.vri-cta-a:hover, .vri-cta-b:hover { transform: none; }
	.vri-cta-a::after { display: none; }
}

/* --- FAQ em acordeao ------------------------------------------------------
 * Os estilos so valem depois que o JS converteu a marcacao (.vri-faq-ac). Sem
 * JS o FAQ continua no formato aberto de antes — nada quebra. */
.vri-faq-ac .vri-faq-btn {
	display: flex; align-items: flex-start; gap: 1rem; width: 100%;
	padding: 0; margin: 0; border: 0; background: none; cursor: pointer;
	text-align: left; font: inherit; color: inherit;
	transition: color .18s ease-out;
}
.vri-faq-ac .vri-faq-btn:hover { color: var(--vri-blue-ink, #000FA3); }
.vri-faq-ac .vri-faq-btn:focus-visible { outline: 2px solid var(--vri-blue, #000096); outline-offset: 4px; border-radius: 2px; }

/* seta: um chevron desenhado em CSS, para nao depender de icon font */
.vri-faq-ac .vri-faq-ic {
	flex: 0 0 auto; width: .62rem; height: .62rem; margin-top: .42em; margin-left: auto;
	border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
	transform: rotate(45deg); transform-origin: center;
	transition: transform .22s cubic-bezier(0,0,.2,1);
}
.vri-faq-ac.aberto .vri-faq-ic { transform: rotate(-135deg); }

/* fio entre as perguntas: fechado, o acordeao e uma lista — precisa de divisao */
.vri-faq-ac { border-bottom: 1px solid var(--vri-line, rgba(0,0,60,.10)); padding-bottom: .95rem; margin-bottom: .95rem; }
.vri-faq-ac:last-child { border-bottom: 0; }
.vri-faq-ac .vri-faq-a { margin-top: .85rem; animation: vriFaqAbre .24s cubic-bezier(0,0,.2,1); }
@keyframes vriFaqAbre { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
	.vri-faq-ac .vri-faq-ic { transition: none; }
	.vri-faq-ac .vri-faq-a { animation: none; }
}
