/*
 * Base enxuta do tema Dryon.
 * O layout principal sera conduzido por classes utilitarias no markup.
 */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: #fafafa;
	background-color: #0a0a0a;
	font-family: "Poppins", sans-serif;
	text-rendering: optimizeLegibility;
}

body,
.font-sans {
	font-family: "Poppins", sans-serif !important;
}

body.mobile-menu-open {
	overflow: hidden;
}

.font-display {
	font-family: "Playfair Display", serif !important;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

::-webkit-scrollbar {
	display: none;
}

:focus-visible {
	outline: 2px solid #0f172a;
	outline-offset: 2px;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo {
	display: block;
	width: 100%;
	height: auto;
	max-width: 168px;
}

.text-glow {
	text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.box-glow {
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.hero-visual {
	padding: 1rem 0.35rem 0.35rem 0.8rem;
}

.hero-visual-frame {
	top: 1.75rem;
	right: 1.2rem;
	bottom: 1rem;
	left: 1.6rem;
	transform: rotate(-6.5deg);
	transform-origin: center;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 200, 0, 0.1) 48%, rgba(0, 200, 0, 0.22) 100%);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
	filter: blur(0.2px);
	opacity: 0.78;
}

.hero-visual-card {
	transform: rotate(0deg);
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
	border: 0;
}

.neon-pulse {
	background: #00c800;
	box-shadow: 0 0 18px rgba(0, 200, 0, 0.65);
}

.line-glow {
	filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.neon-orb {
	background: rgba(0, 200, 0, 0.12);
}

.neon-outline-button:hover {
	border-color: #00c800;
	background: rgba(0, 200, 0, 0.08);
	color: #00c800;
}

#model .group:hover .flow-node {
	border-color: #00c800;
	box-shadow: 0 0 24px rgba(0, 200, 0, 0.12);
}

#model .group:hover .flow-node-dot {
	background: #00c800;
	filter: drop-shadow(0 0 8px rgba(0, 200, 0, 0.8));
}

#segmentation .group:hover .segmentation-title {
	color: #00c800;
	text-shadow: 0 0 18px rgba(0, 200, 0, 0.16);
}

#site-navigation .menu,
#mobile-navigation .menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

#site-navigation .menu a,
#mobile-navigation .menu a {
	transition: opacity 0.2s ease;
}

#site-navigation .menu a:hover,
#mobile-navigation .menu a:hover {
	opacity: 0.7;
}

.mobile-menu-trigger {
	background: transparent;
	border: 0;
}

.mobile-menu-panel.is-open {
	opacity: 1;
	background: #000 !important;
}

.mobile-menu-panel,
.mobile-menu-drawer {
	background: #000 !important;
}

#mobile-navigation .menu li {
	margin: 0;
}

#mobile-navigation .menu a {
	display: inline-flex;
	align-items: center;
	font-size: 1.75rem;
	line-height: 1.05;
	letter-spacing: -0.03em;
}

#site-navigation .current-menu-item > a,
#site-navigation .current_page_item > a,
#site-navigation .current-page-ancestor > a,
#mobile-navigation .current-menu-item > a,
#mobile-navigation .current_page_item > a,
#mobile-navigation .current-page-ancestor > a {
	color: #00c800;
	opacity: 1;
	font-weight: 500;
}

#colophon .menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

#colophon .menu li {
	margin: 0;
}

#colophon .menu a {
	display: inline-flex;
	align-items: center;
	transition: color 0.2s ease;
}

#colophon .menu a:hover {
	color: #00c800;
}

#colophon [aria-label="LinkedIn"] svg {
	width: 1.2rem;
	height: 1.2rem;
}

#colophon [aria-label="WhatsApp"] svg {
	width: 1.35rem;
	height: 1.35rem;
}

.wpp-button-wrapper {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 50px;
	right: 30px;
	background-color: #25d366;
	border-radius: 50px;
	text-align: center;
	box-shadow: 1px 1px 2px #888;
	z-index: 1000;
}

.wpp-button-wrapper a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 30px;
	color: #fff;
}

.wpp-button-wrapper a svg {
	fill: #fff;
	width: 30px;
	height: 30px;
}

.pulse {
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25);
	}

	100% {
		box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
	}
}

@media (max-width: 640px) {
	.wpp-button-wrapper {
		right: 20px;
		bottom: 24px;
	}
}

.stat-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.stat-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	margin: 0;
	overflow: visible;
	clip: auto;
	white-space: normal;
	background: #ffffff;
	color: #0f172a;
}

.font-14 {
	font-size: 14px !important;
}

.dryon-cf7-form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.dryon-input {
	width: 100%;
	border-radius: 0.5rem;
	border: 2px solid #262626;
	background: #0a0a0a;
	padding: 0.875rem 1.25rem;
	color: #fff;
	transition: all 0.2s ease;
	outline: none;
}

.dryon-input:focus {
	border-color: #00c800;
}

.dryon-input::placeholder {
	color: #737373;
}

.dryon-textarea {
	resize: none;
}

.dryon-submit {
	width: 100%;
	border-radius: 0.5rem;
	background: #fff;
	padding: 1rem;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #000;
	transition: all 0.2s ease;
	cursor: pointer;
}

.dryon-submit:hover {
	background: #00c800;
	color: #000;
}

.dryon-tipo-options .wpcf7-radio {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 640px) {
	.dryon-tipo-options .wpcf7-radio {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.dryon-tipo-options .wpcf7-radio {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.dryon-tipo-options .wpcf7-list-item {
	margin: 0;
}

.dryon-tipo-options label {
	display: block;
	height: 100%;
	cursor: pointer;
}

.dryon-tipo-options input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.dryon-tipo-options .wpcf7-list-item-label {
	display: flex;
	flex-direction: column;
	min-height: 106px;
	align-items: center;
	justify-content: center;
	border: 2px solid #262626;
	border-radius: 0.5rem;
	background: #171717;
	padding: 1rem;
	text-align: center;
	font-size: 0;
	transition: all 0.2s ease;
}

.dryon-tipo-options input:checked + .wpcf7-list-item-label {
	border-color: #00c800;
	background: #262626;
}

.dryon-tipo-options .wpcf7-list-item-label::before {
	display: block;
	margin-bottom: 0.5rem;
	font-family: "Font Awesome 6 Free";
	font-size: 1.5rem;
	font-weight: 900;
	color: #fff;
}

.dryon-tipo-options .wpcf7-list-item:nth-child(1) .wpcf7-list-item-label::before {
	content: "\f201";
}

.dryon-tipo-options .wpcf7-list-item:nth-child(2) .wpcf7-list-item-label::before {
	content: "\f1ad";
}

.dryon-tipo-options .wpcf7-list-item:nth-child(3) .wpcf7-list-item-label::before {
	content: "\f141";
}

.dryon-tipo-options .wpcf7-list-item-label::after {
	display: block;
	white-space: pre-line;
	font-size: 0.875rem;
	font-weight: 700;
	color: #fff;
}

.dryon-tipo-options .wpcf7-list-item:nth-child(1) .wpcf7-list-item-label::after {
	content: "Investidor\A Quero franquia";
}

.dryon-tipo-options .wpcf7-list-item:nth-child(2) .wpcf7-list-item-label::after {
	content: "Concessionária\A Quero parceria";
}

.dryon-tipo-options .wpcf7-list-item:nth-child(3) .wpcf7-list-item-label::after {
	content: "Outro assunto\A Informações gerais";
}

body.mobile-menu-open #mobile-navigation.mobile-menu-panel {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  min-height: 100vh !important;
  background: #000 !important;
  opacity: 1 !important;
  z-index: 9999 !important;
}

body.mobile-menu-open #mobile-navigation .mobile-menu-drawer {
  width: 100vw !important;
  height: 100vh !important;
  min-height: 100vh !important;
  background: #000 !important;
}

body.mobile-menu-open {
  overflow: hidden !important;
}

@media (max-width: 769px) { 
	
	#credibility .stat-reveal .text-5xl {
		font-size: 2rem !important;
	}
	
	.bg-neutral-200, .bg-neutral-300 {
		display: none !important;
	}
	
	.zoom-mobile-polishing {
		object-position: right !important;
    	object-fit: none !important;
	}
	
	#proposito .group {
		height: auto !important;
	}
	
}