/* ============================================
   TRANSCRIFY V3 — BRAND PALETTE
   Brand: Montserrat (headings), Inter (body)
   Palette: #000, #404040, #7F7F7F, #BFBFBF, #FFF
   ============================================ */

:root {
	--v3-accent: #000000;
	--v3-accent-light: #404040;
	--v3-accent-dark: #000000;
	--v3-blue: #404040;
	--v3-blue-light: #7F7F7F;
	--v3-gradient: linear-gradient(135deg, #000000 0%, #404040 100%);
	--v3-gradient-soft: linear-gradient(135deg, rgba(0,0,0,0.06) 0%, rgba(64,64,64,0.06) 100%);
	--v3-dark: #000000;
	--v3-dark-2: #161616;
	--v3-text: #404040;
	--v3-text-light: #7F7F7F;
	--v3-border: #E5E5E5;
	--v3-bg: #F7F7F7;
	--v3-success: #404040;
	--v3-warning: #7F7F7F;
}

/* --- RESET & BASE --- */
.v3 *, .v3 *::before, .v3 *::after { box-sizing: border-box; }
.v3 {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	color: var(--v3-text);
	overflow-x: hidden;
}
.v3 h1, .v3 h2, .v3 h3, .v3 h4, .v3 h5, .v3 h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: var(--v3-dark);
	line-height: 1.25;
}
.v3 p {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	line-height: 1.75;
	color: var(--v3-text-light);
	font-size: 1.05rem;
}
.v3 section { position: relative; }
.v3 .section-spacing { padding: 50px 0 !important; }
.v3 .section-spacing-lg { padding: 120px 0 !important; }

/* --- ACCENT TEXT --- */
.v3 .text-gradient {
	background: var(--v3-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* --- BUTTONS --- */
.v3 .btn-v3 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 36px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: 14px;
	text-decoration: none;
	transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	letter-spacing: 0.2px;
	border: none;
	cursor: pointer;
}
.v3 .btn-accent {
	background: var(--v3-gradient);
	color: #fff;
	box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.v3 .btn-accent:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 35px rgba(0,0,0,0.25);
	color: #fff;
	text-decoration: none;
}
.v3 .btn-accent-lg {
	padding: 20px 48px;
	font-size: 1.05rem;
	border-radius: 16px;
}
.v3 .text-center .btn-accent-lg,
.v3 section > .container > .btn-accent-lg {
	margin-top: 40px;
}
.v3 .btn-dark {
	background: var(--v3-dark);
	color: #fff;
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.v3 .btn-dark:hover {
	background: var(--v3-dark-2);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.2);
	text-decoration: none;
}
.v3 .btn-outline-accent {
	background: transparent;
	color: var(--v3-accent);
	border: 2px solid var(--v3-accent);
}
.v3 .btn-outline-accent:hover {
	background: var(--v3-accent);
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
}
.v3 .btn-white {
	background: #fff;
	color: var(--v3-dark);
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.v3 .btn-white:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.15);
	color: var(--v3-dark);
	text-decoration: none;
}

/* --- SECTION TITLES --- */
.v3 .section-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--v3-accent);
	margin-bottom: 16px;
	padding: 8px 18px;
	background: var(--v3-gradient-soft);
	border-radius: 30px;
}
.v3 .section-tag i {
	font-size: 0.7rem;
}
.v3 .section-title-v3 {
	font-size: 2.6rem;
	font-weight: 800;
	margin-bottom: 16px;
	max-width: 720px;
}
/* Wrapper padrão para header de seção */
.v3 .section-header {
	margin-bottom: 56px;
}
.v3 .section-subtitle {
	font-size: 1.15rem;
	color: var(--v3-text-light);
	max-width: 600px;
}

/* ============================================
   HERO
   ============================================ */
.v3-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: var(--v3-dark);
	overflow: hidden;
}
.v3-hero::before {
	content: '';
	position: absolute;
	top: -200px; right: -200px;
	width: 700px; height: 700px;
	background: radial-gradient(circle, rgba(0,0,0,0.15) 0%, transparent 70%);
	z-index: 0;
}
.v3-hero::after {
	content: '';
	position: absolute;
	bottom: -150px; left: -150px;
	width: 500px; height: 500px;
	background: radial-gradient(circle, rgba(64,64,64,0.12) 0%, transparent 70%);
	z-index: 0;
}
.v3-hero .hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	z-index: 0;
}
.v3-hero .container {
	position: relative;
	z-index: 2;
	padding-top: 80px;
}
.v3-hero .hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(0,0,0,0.08);
	border: 1px solid rgba(0,0,0,0.2);
	color: #BFBFBF;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 0.85rem;
	padding: 8px 20px;
	border-radius: 40px;
	margin-bottom: 28px;
}
.v3-hero .hero-badge .pulse-dot {
	width: 8px; height: 8px;
	background: #28C840;
	border-radius: 50%;
	animation: pulse 2s infinite;
}
@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.3); }
}
.v3-hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.15;
	margin-bottom: 24px;
	letter-spacing: -1px;
	max-width: 650px;
}
.v3-hero h1 .highlight {
	color: #fff;
	-webkit-text-fill-color: #fff;
	text-decoration: underline;
	text-decoration-color: #BFBFBF;
	text-underline-offset: 6px;
	text-decoration-thickness: 3px;
}
.v3-hero .hero-sub {
	font-size: 1.2rem;
	color: #BFBFBF;
	max-width: 520px;
	margin-bottom: 36px;
	line-height: 1.7;
}
.v3-hero .hero-ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}
.v3-hero .hero-note {
	color: #7F7F7F;
	font-size: 0.85rem;
}
.v3-hero .hero-note i {
	color: var(--v3-success);
	margin-right: 4px;
}
/* Hero right — demo mockup */
.v3-hero .hero-visual {
	position: relative;
}
.v3-hero .demo-card {
	background: var(--v3-dark-2);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.v3-hero .demo-card .demo-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
}
.v3-hero .demo-card .demo-dot {
	width: 12px; height: 12px;
	border-radius: 50%;
}
.v3-hero .demo-card .demo-dot.red { background: #FF5F57; }
.v3-hero .demo-card .demo-dot.yellow { background: #FEBC2E; }
.v3-hero .demo-card .demo-dot.green { background: #28C840; }
.v3-hero .demo-card .demo-waveform {
	display: flex;
	align-items: center;
	gap: 5px;
	height: 50px;
	margin-bottom: 20px;
}
.v3-hero .demo-play-btn {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 0.85rem;
	flex-shrink: 0;
	cursor: pointer;
	border: none;
	margin-right: 10px;
	transition: transform 0.2s, opacity 0.2s;
}
.v3-hero .demo-play-btn:hover {
	transform: scale(1.1);
	opacity: 0.9;
}
.v3-hero .demo-play-btn.playing i::before {
	content: "\f04c";
}
.v3-hero .demo-card .wave-bar {
	width: 4px;
	border-radius: 4px;
	background: #fff;
	opacity: 0.6;
	animation: waveAnim 1.5s ease-in-out infinite;
}
.v3-hero .demo-card .wave-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.v3-hero .demo-card .wave-bar:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.v3-hero .demo-card .wave-bar:nth-child(3) { height: 25px; animation-delay: 0.2s; }
.v3-hero .demo-card .wave-bar:nth-child(4) { height: 45px; animation-delay: 0.3s; }
.v3-hero .demo-card .wave-bar:nth-child(5) { height: 30px; animation-delay: 0.4s; }
.v3-hero .demo-card .wave-bar:nth-child(6) { height: 50px; animation-delay: 0.5s; }
.v3-hero .demo-card .wave-bar:nth-child(7) { height: 20px; animation-delay: 0.6s; }
.v3-hero .demo-card .wave-bar:nth-child(8) { height: 40px; animation-delay: 0.7s; }
.v3-hero .demo-card .wave-bar:nth-child(9) { height: 28px; animation-delay: 0.8s; }
.v3-hero .demo-card .wave-bar:nth-child(10) { height: 35px; animation-delay: 0.9s; }
.v3-hero .demo-card .wave-bar:nth-child(11) { height: 22px; animation-delay: 1s; }
.v3-hero .demo-card .wave-bar:nth-child(12) { height: 45px; animation-delay: 1.1s; }
.v3-hero .demo-card .wave-bar:nth-child(13) { height: 18px; animation-delay: 1.2s; }
.v3-hero .demo-card .wave-bar:nth-child(14) { height: 38px; animation-delay: 1.3s; }
.v3-hero .demo-card .wave-bar:nth-child(15) { height: 30px; animation-delay: 1.4s; }
.v3-hero .demo-card .wave-bar:nth-child(16) { height: 42px; animation-delay: 1.5s; }
.v3-hero .demo-card .wave-bar:nth-child(17) { height: 22px; animation-delay: 1.6s; }
.v3-hero .demo-card .wave-bar:nth-child(18) { height: 35px; animation-delay: 1.7s; }
.v3-hero .demo-card .wave-bar:nth-child(19) { height: 48px; animation-delay: 1.8s; }
.v3-hero .demo-card .wave-bar:nth-child(20) { height: 20px; animation-delay: 1.9s; }
.v3-hero .demo-card .wave-bar:nth-child(21) { height: 32px; animation-delay: 2.0s; }
.v3-hero .demo-card .wave-bar:nth-child(22) { height: 25px; animation-delay: 2.1s; }
.v3-hero .demo-card .wave-bar:nth-child(23) { height: 44px; animation-delay: 2.2s; }
.v3-hero .demo-card .wave-bar:nth-child(24) { height: 18px; animation-delay: 2.3s; }
.v3-hero .demo-card .wave-bar:nth-child(25) { height: 36px; animation-delay: 2.4s; }
.v3-hero .demo-card .wave-bar:nth-child(26) { height: 28px; animation-delay: 2.5s; }
.v3-hero .demo-card .wave-bar:nth-child(27) { height: 40px; animation-delay: 2.6s; }
.v3-hero .demo-card .wave-bar:nth-child(28) { height: 22px; animation-delay: 2.7s; }
.v3-hero .demo-card .wave-bar:nth-child(29) { height: 50px; animation-delay: 2.8s; }
.v3-hero .demo-card .wave-bar:nth-child(30) { height: 30px; animation-delay: 2.9s; }
@keyframes waveAnim {
	0%, 100% { transform: scaleY(1); }
	50% { transform: scaleY(0.5); }
}
.v3-hero .demo-card .demo-transcript {
	font-family: 'Inter', sans-serif;
	font-size: 0.82rem;
	line-height: 1.85;
	color: #BFBFBF;
	max-height: 160px;
	overflow-y: auto;
	padding-right: 6px;
}
.v3-hero .demo-card .demo-transcript p {
	margin: 0 0 6px 0;
	font-size: 0.82rem;
	color: #BFBFBF;
	line-height: 1.85;
}
.v3-hero .demo-card .demo-transcript .ts {
	color: var(--v3-accent-light);
	font-size: 0.72rem;
	font-weight: 600;
	margin-right: 6px;
}
.v3-hero .demo-card .demo-transcript .typing-line {
	display: inline;
	border-right: 2px solid var(--v3-accent-light);
	animation: blink 1s infinite;
}
@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}
.v3-hero .demo-card .demo-label {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 600;
	color: #28C840;
	background: rgba(40,200,64,0.12);
	padding: 4px 12px;
	border-radius: 20px;
	margin-top: 12px;
}

/* ============================================
   SOCIAL PROOF — Stats + Logos
   ============================================ */
.v3-social-proof {
	background: #fff;
	border-bottom: 1px solid var(--v3-border);
}
.v3-social-proof .stats-row {
	display: flex;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap;
}
.v3-social-proof .stat-item {
	text-align: center;
}
.v3-social-proof .stat-number {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 2.5rem;
	line-height: 1;
	margin-bottom: 6px;
}
.v3-social-proof .stat-label {
	font-size: 0.9rem;
	color: var(--v3-text-light);
	font-weight: 500;
}

/* ============================================
   HERO BOXES (Diferenciais)
   ============================================ */
.v3-boxes {
	background: #fff;
}
.v3-boxes .box-item {
	text-align: center;
	padding: 36px 20px;
	background: var(--v3-bg);
	border: 1px solid var(--v3-border);
	border-radius: 20px;
	transition: all 0.35s ease;
	height: 100%;
}
.v3-boxes .box-item:hover {
	border-color: var(--v3-accent-light);
	background: #fff;
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.v3-boxes .box-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: var(--v3-gradient-soft);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.v3-boxes .box-icon img {
	width: 32px;
	height: 32px;
}
.v3-boxes .box-item h5 {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--v3-dark);
	line-height: 1.5;
}

/* ============================================
   SERVICES (O que voce pode transcrever)
   ============================================ */
.v3-services {
	background: var(--v3-bg);
}
.v3-services .service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 14px;
	max-width: 900px;
	margin: 50px auto 40px;
}
.v3-services .service-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 22px 12px;
	background: #fff;
	border-radius: 16px;
	transition: all 0.3s ease;
	border: 1px solid var(--v3-border);
}
.v3-services .service-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	border-color: var(--v3-accent-light);
}
.v3-services .service-item img {
	width: 34px;
	height: 34px;
	margin-bottom: 10px;
}
.v3-services .service-item p {
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--v3-text);
	margin: 0;
	text-align: center;
	line-height: 1.3;
}

/* ============================================
   FEATURES (Por que e simples)
   ============================================ */
.v3-features {
	background: #fff;
}
.v3-features .feature-card {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 30px;
	background: var(--v3-bg);
	border-radius: 20px;
	transition: all 0.3s ease;
	height: 100%;
	border: 1px solid var(--v3-border);
}
.v3-features .feature-card:hover {
	background: #fff;
	box-shadow: 0 12px 40px rgba(0,0,0,0.05);
	transform: translateY(-3px);
	border-color: var(--v3-accent-light);
}
.v3-features .feature-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--v3-gradient-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.v3-features .feature-icon img {
	width: 28px;
	height: 28px;
}
.v3-features .feature-card h6 {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--v3-dark);
	line-height: 1.6;
	margin: 0;
}

/* ============================================
   EXAMPLE / DEMO (Veja na prática)
   ============================================ */
.v3-example {
	background: var(--v3-bg);
	overflow: hidden;
}
.v3-example .example-wrapper {
	background: #fff;
	border-radius: 24px;
	border: 1px solid var(--v3-border);
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.v3-example .example-tabs {
	display: flex;
	border-bottom: 1px solid var(--v3-border);
	background: var(--v3-bg);
}
.v3-example .example-tab {
	padding: 18px 28px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	color: #BFBFBF;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	border: none;
	background: none;
}
.v3-example .example-tab.active {
	color: #000;
}
.v3-example .example-tab.active::after {
	content: '';
	position: absolute;
	bottom: -1px; left: 0; right: 0;
	height: 2px;
	background: #000;
}
.v3-example .example-panels {
	display: flex;
}
.v3-example .example-panel {
	flex: 1;
	padding: 36px;
	min-height: 260px;
}
.v3-example .example-panel:first-child {
	border-right: 1px solid var(--v3-border);
}
.v3-example .example-panel-label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.7rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 20px;
	margin-bottom: 20px;
}
.v3-example .label-audio {
	background: rgba(0,0,0,0.06);
	color: #404040;
}
.v3-example .label-text {
	background: rgba(0,0,0,0.06);
	color: #404040;
}
.v3-example .audio-player {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}
.v3-example .play-btn {
	width: 44px; height: 44px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #000;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 0.9rem;
	flex-shrink: 0;
	cursor: pointer;
	transition: transform 0.2s, background 0.2s, color 0.2s;
}
.v3-example .play-btn:hover {
	transform: scale(1.08);
	background: rgba(0,0,0,0.08);
}
.v3-example .play-btn.playing i::before {
	content: "\f04c";
}
.v3-example .audio-progress {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.v3-example .progress-bar-wrap {
	width: 100%;
	height: 6px;
	background: rgba(0,0,0,0.08);
	border-radius: 3px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}
.v3-example .progress-bar-fill {
	height: 100%;
	background: #000;
	border-radius: 3px;
	width: 0%;
	transition: width 0.1s linear;
}
.v3-example .audio-time {
	display: flex;
	justify-content: space-between;
	font-size: 0.75rem;
	color: #7F7F7F;
	font-family: 'Inter', sans-serif;
	font-variant-numeric: tabular-nums;
}
.v3-example .audio-meta {
	font-size: 0.8rem;
	color: #7F7F7F;
}
.v3-example .transcript-text {
	font-family: 'Inter', sans-serif;
	font-size: 0.92rem;
	color: #404040;
	line-height: 1.9;
	max-height: 320px;
	overflow-y: auto;
	padding-right: 8px;
}
.v3-example .transcript-text .ts {
	color: #000;
	font-size: 0.78rem;
	font-weight: 600;
	margin-right: 8px;
}
.v3-example .transcript-text p,
.v3-hero .demo-card .demo-transcript p {
	transition: background 0.2s, box-shadow 0.2s;
	border-radius: 6px;
	cursor: pointer;
}
.v3-example .transcript-text p.active,
.v3-hero .demo-card .demo-transcript p.active {
	background: rgba(0,0,0,0.05);
	box-shadow: inset 2px 0 0 var(--v3-accent);
	padding-left: 8px;
	margin-left: -8px;
}
.v3-hero .demo-card .demo-transcript p.active {
	background: rgba(255,255,255,0.08);
	box-shadow: inset 2px 0 0 #fff;
}
.v3-example .example-tab-content {
	display: none;
}
.v3-example .example-tab-content.active {
	display: block;
}
/* ============================================
   PROCESS (Como usar)
   ============================================ */
.v3-process {
	background: var(--v3-bg);
}
.v3-process .process-step {
	text-align: center;
	padding: 30px 16px;
	position: relative;
}
.v3-process .step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: var(--v3-gradient);
	border-radius: 16px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 1.1rem;
	color: #fff;
	margin-bottom: 24px;
}
.v3-process .process-step img {
	width: 56px;
	height: 56px;
	margin-bottom: 16px;
}
.v3-process .process-step h6 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: var(--v3-dark);
	margin-bottom: 8px;
}
.v3-process .process-step p {
	font-size: 0.9rem;
	color: var(--v3-text-light);
	line-height: 1.6;
}
.v3-process .process-connector {
	position: absolute;
	top: 55px;
	right: -16px;
	color: var(--v3-accent-light);
	font-size: 1rem;
	z-index: 2;
}

/* ============================================
   CONTENT (Idiomas / Teste Gratis)
   ============================================ */
.v3-content {
	background: #fff;
}
.v3-content .content-img {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0,0,0,0.06);
	border: 1px solid var(--v3-border);
}
.v3-content .content-img img {
	width: 100%;
	height: auto;
	display: block;
}
.v3-content .content-text h3 {
	font-size: 2rem;
	margin-bottom: 16px;
}
.v3-content .content-text h5 {
	font-size: 1.5rem;
	margin-bottom: 16px;
}
.v3-content .flags-row {
	display: flex;
	gap: 8px;
	margin: 16px 0;
	flex-wrap: wrap;
}
.v3-content .flags-row img {
	width: 28px;
	height: 28px;
}
.v3-content .language-list {
	font-size: 0.88rem;
	color: var(--v3-text-light);
	line-height: 1.9;
	margin: 12px 0 28px;
}
.v3-content .small-note {
	color: var(--v3-text-light);
	font-size: 0.82rem;
	margin-top: 10px;
}
.v3-content .small-note i {
	color: var(--v3-success);
	margin-right: 4px;
}

/* ============================================
   PRICING
   ============================================ */
.v3-pricing {
	background: var(--v3-bg);
}
.v3-pricing .pricing-card {
	background: #fff;
	border-radius: 24px;
	padding: 44px 32px;
	text-align: center;
	transition: all 0.4s ease;
	border: 1px solid var(--v3-border);
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}
.v3-pricing .pricing-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.v3-pricing .pricing-card.featured {
	background: var(--v3-dark);
	border-color: var(--v3-accent);
	color: #fff;
	transform: scale(1.04);
	box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.v3-pricing .pricing-card.featured:hover {
	transform: scale(1.04) translateY(-6px);
	box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}
.v3-pricing .popular-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--v3-gradient);
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 0.7rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 6px 22px;
	border-radius: 20px;
	white-space: nowrap;
}
.v3-pricing .plan-name {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 1.15rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--v3-dark);
	margin-bottom: 24px;
}
.v3-pricing .pricing-card.featured .plan-name { color: #fff; }
.v3-pricing .pricing-card.featured h5,
.v3-pricing .pricing-card.featured .price-value,
.v3-pricing .pricing-card.featured .price-currency { color: #fff; }
.v3-pricing .pricing-card.featured p { color: #BFBFBF; }
.v3-pricing .pricing-card.featured .features-list li {
	color: #BFBFBF;
	border-bottom-color: rgba(255,255,255,0.06);
}
.v3-pricing .pricing-card.featured .features-list li::before {
	color: var(--v3-accent-light);
}
.v3-pricing .price-currency {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
	color: var(--v3-dark);
	vertical-align: super;
}
.v3-pricing .price-value {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 3.2rem;
	color: var(--v3-dark);
	line-height: 1;
}
.v3-pricing .price-note {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--v3-dark);
	background: var(--v3-gradient-soft);
	padding: 7px 18px;
	border-radius: 20px;
	margin-top: 12px;
	margin-bottom: 32px;
}
.v3-pricing .pricing-card.featured .price-note {
	color: #fff;
	background: rgba(255,255,255,0.14);
}
.v3-pricing .features-list {
	list-style: none;
	padding: 0;
	margin: 0 0 32px 0;
	text-align: left;
	flex-grow: 1;
}
.v3-pricing .features-list li {
	padding: 11px 0;
	font-size: 0.92rem;
	color: var(--v3-text);
	border-bottom: 1px solid var(--v3-border);
	padding-left: 28px;
	position: relative;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
}
.v3-pricing .features-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--v3-accent);
	font-weight: 700;
}

/* ============================================
   SECURITY
   ============================================ */
.v3-security {
	background: #fff;
}
.v3-security .security-badges {
	display: flex;
	gap: 20px;
	margin-top: 28px;
	flex-wrap: wrap;
}
.v3-security .badge-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	background: var(--v3-bg);
	border: 1px solid var(--v3-border);
	border-radius: 12px;
	font-family: 'Inter', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--v3-text);
}
.v3-security .badge-item i {
	color: var(--v3-success);
	font-size: 1rem;
}

/* ============================================
   FAQ
   ============================================ */
.v3-faq {
	background: var(--v3-bg);
}
.v3-faq .faq-item {
	border: 1px solid var(--v3-border);
	border-radius: 16px;
	margin-bottom: 12px;
	overflow: hidden;
	background: #fff;
	transition: all 0.3s ease;
}
.v3-faq .faq-item:hover {
	border-color: var(--v3-accent-light);
}
.v3-faq .faq-item.active {
	border-color: var(--v3-accent);
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.v3-faq .faq-header {
	padding: 22px 28px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	border: none;
	width: 100%;
	text-align: left;
}
.v3-faq .faq-header h5 {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--v3-dark);
	margin: 0;
	flex: 1;
	padding-right: 16px;
}
.v3-faq .faq-header .faq-icon {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: var(--v3-gradient);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	flex-shrink: 0;
	transition: transform 0.35s ease;
}
.v3-faq .faq-item.active .faq-icon {
	transform: rotate(180deg);
}
.v3-faq .faq-body {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	padding: 0 28px;
	transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
				opacity 0.35s ease,
				padding 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.v3-faq .faq-item.active .faq-body {
	opacity: 1;
	padding: 16px 28px 28px;
}
.v3-faq .faq-body p {
	font-size: 0.93rem;
	line-height: 1.8;
	color: var(--v3-text-light);
	margin-bottom: 8px;
	padding-top: 4px;
}

/* ============================================
   CTA FINAL
   ============================================ */
.v3-cta-final {
	background: var(--v3-dark);
	position: relative;
	overflow: hidden;
}
.v3-cta-final::before {
	content: '';
	position: absolute;
	top: -100px; right: -100px;
	width: 500px; height: 500px;
	background: radial-gradient(circle, rgba(0,0,0,0.12) 0%, transparent 70%);
}
.v3-cta-final::after {
	content: '';
	position: absolute;
	bottom: -80px; left: -80px;
	width: 400px; height: 400px;
	background: radial-gradient(circle, rgba(64,64,64,0.1) 0%, transparent 70%);
}
.v3-cta-final .container {
	position: relative;
	z-index: 2;
}
.v3-cta-final h2 {
	font-size: 2.6rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 16px;
}
.v3-cta-final p {
	color: #BFBFBF;
	font-size: 1.15rem;
	margin-bottom: 36px;
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
}
.v3-cta-final .cta-note {
	font-size: 0.85rem;
	color: #7F7F7F;
	margin-top: 16px;
}
.v3-cta-final .cta-note i {
	color: var(--v3-success);
	margin-right: 4px;
}

/* ============================================
   FOOTER — extensão do CTA (fundo preto)
   ============================================ */
#footer-3 {
	background: #000 !important;
	border-top: 1px solid rgba(255,255,255,0.06);
	padding-top: 20px;
	padding-bottom: 20px;
}
#footer-3 .footer-copyright p,
#footer-3 .bottom-footer p,
#footer-3 p {
	color: #7F7F7F !important;
	margin: 0;
}
#footer-3 .bottom-footer {
	border: none !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
	.v3-hero h1 { font-size: 2.6rem; }
	.v3 .section-title-v3 { font-size: 2rem; }
	.v3-content .content-text h3 { font-size: 1.7rem; }
	.v3-process .process-connector { display: none; }
	.v3-pricing .pricing-card.featured { transform: scale(1); }
	.v3-pricing .pricing-card.featured:hover { transform: translateY(-6px); }
	.v3-hero .hero-visual { margin-top: 50px; }
	.v3-example .example-panels { flex-direction: column; }
	.v3-example .example-panel:first-child { border-right: none; border-bottom: 1px solid var(--v3-border); }
	.v3-cta-final h2 { font-size: 2rem; }
}
@media (max-width: 767px) {
	.v3-hero h1 { font-size: 2rem; }
	.v3 .section-spacing { padding: 70px 0; }
	.v3 .section-spacing-lg { padding: 80px 0; }
	.v3 .section-title-v3 { font-size: 1.6rem; }
	.v3 .btn-v3 { padding: 14px 28px; font-size: 0.9rem; }
	.v3-services .service-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
	.v3-services .service-item { padding: 14px 8px; }
	.v3-services .service-item img { width: 28px; height: 28px; }
	.v3-content .content-text h3 { font-size: 1.4rem; }
	.v3-pricing .pricing-card { padding: 32px 24px; }
	.v3-social-proof .stats-row { gap: 30px; }
	.v3-social-proof .stat-number { font-size: 2rem; }
	.v3-cta-final h2 { font-size: 1.7rem; }
}

/* ============================================
   LP JURÍDICA — Antes/Depois, Comparativo, Depoimentos
   (usam somente os tokens --v3-* já existentes acima)
   ============================================ */

/* --- ANTES E DEPOIS --- */
.lp-compare-card {
	border: 1px solid var(--v3-border);
	border-radius: 20px;
	padding: 40px 32px;
	height: 100%;
	position: relative;
}
.lp-compare-card .lp-compare-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 1.3rem;
}
.lp-compare-card h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--v3-dark);
	margin-bottom: 12px;
	text-align: center;
}
.lp-compare-card > p {
	margin-bottom: 24px;
}
.lp-compare-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.lp-compare-card li {
	position: relative;
	padding-left: 28px;
}
.lp-compare-card.is-before {
	background: var(--v3-bg);
}
.lp-compare-card.is-before .lp-compare-icon {
	background: #fff;
	border: 1px solid var(--v3-border);
	color: var(--v3-text-light);
}
.lp-compare-card.is-before > p {
	color: var(--v3-text-light);
	font-size: 0.92rem;
	line-height: 1.6;
}
.lp-compare-card.is-before li {
	font-size: 0.88rem;
	color: var(--v3-text-light);
	line-height: 1.5;
	padding-bottom: 14px;
	margin-bottom: 14px;
	border-bottom: 1px dashed var(--v3-border);
}
.lp-compare-card.is-before li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.lp-compare-card.is-before li::before {
	content: "\f00d";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 1px;
	color: var(--v3-text-light);
	font-size: 0.75rem;
}
.lp-compare-card.is-after {
	background: #fff;
	border: 2px solid var(--v3-accent);
	box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.lp-compare-card.is-after .lp-compare-icon {
	background: var(--v3-gradient);
	color: #fff;
	box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.lp-compare-card.is-after li {
	font-size: 1rem;
	color: var(--v3-text);
	line-height: 1.7;
	padding-bottom: 18px;
	margin-bottom: 18px;
}
.lp-compare-card.is-after li:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
}
.lp-compare-card.is-after li::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 3px;
	color: var(--v3-accent);
	font-size: 0.85rem;
}
@media (max-width: 991px) {
	.lp-compare-card { margin-bottom: 24px; }
}

/* --- COMPARATIVO --- */
.lp-table-wrap {
	overflow-x: auto;
	border-radius: 20px;
	border: 1px solid var(--v3-border);
	-webkit-overflow-scrolling: touch;
}
.lp-table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
	font-family: 'Inter', sans-serif;
}
.lp-table th,
.lp-table td {
	padding: 18px 20px;
	text-align: left;
	border-bottom: 1px solid var(--v3-border);
	font-size: 0.95rem;
}
.lp-table thead th {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.lp-table .lp-col-transcrify {
	background: var(--v3-bg);
}
.lp-table thead .lp-col-transcrify {
	background: var(--v3-dark);
	color: #fff;
}
.lp-table tbody .lp-col-transcrify {
	color: var(--v3-dark);
	font-weight: 600;
}
.lp-table .lp-col-others {
	color: var(--v3-text-light);
}
.lp-table tbody tr:first-child td {
	font-weight: 600;
}
.lp-table tbody tr:last-child td {
	border-bottom: none;
}

/* --- DEPOIMENTOS --- */
.lp-quote {
	border-left: 3px solid var(--v3-accent);
	padding-left: 22px;
	height: 100%;
}
.lp-quote p {
	font-family: 'Inter', sans-serif;
	font-size: 1.05rem;
	color: var(--v3-text);
	line-height: 1.7;
	margin-bottom: 16px;
}
.lp-quote .lp-quote-name {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--v3-dark);
}
.lp-quote .lp-quote-role {
	color: var(--v3-text-light);
	font-size: 0.85rem;
}

/* --- BANNER PDF (dentro do exemplo com abas) --- */
.lp-pdf-banner {
	background: var(--v3-gradient);
	border-radius: 20px;
	padding: 26px 32px;
	margin-top: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.lp-pdf-banner .lp-pdf-info {
	display: flex;
	align-items: center;
	gap: 18px;
}
.lp-pdf-banner .lp-pdf-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: rgba(255,255,255,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
	font-size: 1.15rem;
}
.lp-pdf-banner h6 {
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	margin: 0 0 4px;
}
.lp-pdf-banner p {
	color: rgba(255,255,255,0.8);
	font-size: 0.88rem;
	margin: 0;
	line-height: 1.5;
}
.lp-pdf-banner .btn-v3 {
	flex-shrink: 0;
	white-space: nowrap;
}
@media (max-width: 767px) {
	.lp-pdf-banner { flex-direction: column; text-align: center; padding: 24px; }
	.lp-pdf-banner .lp-pdf-info { flex-direction: column; }
}
