/* ===========================
 HELP KIM — LANDING PAGE
 Base visual: simulador-marketing.mazukim.com.br
 =========================== */

:root {
 /* Cores HelpKim / Mazukim */
 --primary-color: #1672d0;
 --primary-dark: #0f5baa;
 --primary-light: #5b9de8;
 --secondary-color: #7c3aed;
 --secondary-dark: #6d28d9;
 --secondary-light: #a78bfa;
 --accent-color: #f59e0b;
 --accent-hover: #d97706;
 --text-dark: #1f2937; 
 --text-gray: #6b7280; 
 --text-light: #9ca3af; 
 --bg-light: #f9fafb; 
 --white: #ffffff; 
 --success: #10b981; 
 --shadow-sm: 0 2px 8px rgba(22, 114, 208, 0.08);
 --shadow-md: 0 4px 16px rgba(22, 114, 208, 0.12);
 --shadow-lg: 0 8px 32px rgba(22, 114, 208, 0.16);
 --border-radius: 16px; 
 --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
} 
 
* { 
 box-sizing: border-box; 
 margin: 0; 
 padding: 0; 
} 
 
body { 
 font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
 background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%); 
 color: var(--text-dark); 
 line-height: 1.6; 
 overflow-x: hidden; 
 position: relative; 
} 
 
/* Partículas animadas no fundo */ 
body::before { 
 content: ''; 
 position: fixed; 
 top: 0; 
 left: 0; 
 width: 100%; 
 height: 100%; 
 background-image: 
 radial-gradient(circle at 20% 50%, rgba(30, 58, 138, 0.05) 0%, transparent 50%), 
 radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.05) 0%, transparent 50%), 
 radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%); 
 animation: particleFloat 20s ease-in-out infinite; 
 pointer-events: none; 
 z-index: 0; 
} 
 
@keyframes particleFloat { 
 0%, 100% { 
 transform: translateY(0) scale(1); 
 opacity: 1; 
 } 
 50% { 
 transform: translateY(-20px) scale(1.05); 
 opacity: 0.8; 
 } 
} 
 
/* =========================== 
 CONTAINER PRINCIPAL 
 =========================== */ 
 
.simulador-container { 
 min-height: 100vh; 
 display: flex; 
 flex-direction: column; 
 position: relative; 
} 
 
/* Grid tecnológico de fundo */ 
.simulador-container::before { 
 content: ''; 
 position: fixed; 
 top: 0; 
 left: 0; 
 width: 100%; 
 height: 100%; 
 background-image: 
 linear-gradient(rgba(30, 58, 138, 0.03) 1px, transparent 1px), 
 linear-gradient(90deg, rgba(30, 58, 138, 0.03) 1px, transparent 1px); 
 background-size: 50px 50px; 
 pointer-events: none; 
 z-index: -1; 
 animation: gridMove 20s linear infinite; 
} 
 
@keyframes gridMove { 
 0% { transform: translate(0, 0); } 
 100% { transform: translate(50px, 50px); } 
} 
 
/* =========================== 
 HEADER / HERO 
 =========================== */ 
 
.hero-section { 
 background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); 
 padding: 60px 20px 80px; 
 text-align: center; 
 position: relative; 
 overflow: hidden; 
} 
 
.hero-section::before { 
 content: ''; 
 position: absolute; 
 top: 0; 
 left: 0; 
 right: 0; 
 bottom: 0; 
 background: 
 radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.3) 0%, transparent 40%), 
 radial-gradient(circle at 80% 70%, rgba(167, 139, 250, 0.3) 0%, transparent 40%); 
 z-index: 0; 
} 
 
/* Efeito de scan line tecnológico */ 
.hero-section::after { 
 content: ''; 
 position: absolute; 
 top: 0; 
 left: 0; 
 width: 100%; 
 height: 3px; 
 background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent); 
 animation: scanLine 4s linear infinite; 
 z-index: 1; 
} 
 
@keyframes scanLine { 
 0% { transform: translateY(0); } 
 100% { transform: translateY(600px); } 
} 
 
.hero-content { 
 position: relative; 
 z-index: 1; 
 max-width: 1100px; 
 margin: 0 auto; 
} 
 
 .logo-header {
 width: 280px;
 max-width: 90%;
 height: auto;
 margin-bottom: 24px;
 filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35));
 animation: logoFloat 3s ease-in-out infinite;
 }

 .hero-badge {
 display: inline-block;
 padding: 8px 18px;
 margin-bottom: 20px;
 border-radius: 999px;
 font-size: 0.85rem;
 font-weight: 700;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 color: #fff;
 background: rgba(255, 255, 255, 0.12);
 border: 1px solid rgba(255, 255, 255, 0.25);
 backdrop-filter: blur(8px);
 }

 .hero-message {
 max-width: 860px;
 margin: 0 auto 32px;
 padding: 24px 28px;
 border-radius: 16px;
 background: rgba(255, 255, 255, 0.1);
 border: 1px solid rgba(255, 255, 255, 0.18);
 backdrop-filter: blur(10px);
 text-align: left;
 }

 .hero-message p {
 color: rgba(255, 255, 255, 0.95);
 font-size: 1.05rem;
 line-height: 1.75;
 margin-bottom: 14px;
 position: relative;
 z-index: 2;
 }

 .hero-message p:last-child {
 margin-bottom: 0;
 }

 .hero-message strong {
 color: #fff;
 }
 
@keyframes logoFloat { 
 0%, 100% { transform: translateY(0); } 
 50% { transform: translateY(-10px); } 
} 
 
.hero-title {
 font-weight: 800;
 color: var(--white);
 margin-bottom: 20px;
} 
 
@keyframes titleGlow { 
 0%, 100% { 
 text-shadow: 0 0 20px rgba(255,255,255,0.3), 
 0 0 40px rgba(59, 130, 246, 0.3); 
 } 
 50% { 
 text-shadow: 0 0 30px rgba(255,255,255,0.5), 
 0 0 60px rgba(59, 130, 246, 0.5); 
 } 
} 
 
.hero-subtitle { 
 font-size: 1.3rem; 
 color: var(--white); 
 margin-bottom: 40px; 
 font-weight: 400; 
 opacity: 0.95; 
 max-width: 800px; 
 margin-left: auto; 
 margin-right: auto; 
} 
 
.hero-highlight { 
 background: var(--accent-color); 
 color: var(--white); 
 padding: 4px 12px; 
 border-radius: 8px; 
 font-weight: 700; 
 display: inline-block; 
 box-shadow: 0 0 20px rgba(245, 158, 11, 0.4); 
} 
 
/* Stats do Hero */ 
.hero-stats { 
 display: grid; 
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
 gap: 20px; 
 max-width: 900px; 
 margin: 0 auto 40px; 
 padding: 0 20px; 
} 
 
.stat-item { 
 background: rgba(255, 255, 255, 0.15); 
 backdrop-filter: blur(10px); 
 -webkit-backdrop-filter: blur(10px); 
 border: 1px solid rgba(255, 255, 255, 0.2); 
 border-radius: 16px; 
 padding: 25px 20px; 
 text-align: center; 
 transition: var(--transition); 
 animation: statFloat 3s ease-in-out infinite; 
} 
 
.stat-item:nth-child(2) { 
 animation-delay: 0.5s; 
} 
 
.stat-item:nth-child(3) { 
 animation-delay: 1s; 
} 
 
@keyframes statFloat { 
 0%, 100% { transform: translateY(0); } 
 50% { transform: translateY(-5px); } 
} 
 
.stat-item:hover { 
 background: rgba(255, 255, 255, 0.25); 
 transform: translateY(-5px) scale(1.05); 
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); 
} 
 
.stat-icon { 
 font-size: 2.5rem; 
 margin-bottom: 10px; 
 filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)); 
} 
 
.stat-value { 
 display: block; 
 font-size: 1.8rem; 
 font-weight: 800; 
 color: var(--white); 
 margin-bottom: 5px; 
 text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); 
} 
 
.stat-label { 
 display: block; 
 font-size: 0.9rem; 
 color: rgba(255, 255, 255, 0.9); 
 font-weight: 500; 
} 
 
.btn-start { 
 background: var(--accent-color); 
 color: var(--white); 
 border: none; 
 padding: 20px 50px; 
 font-size: 1.2rem; 
 font-weight: 700; 
 border-radius: 50px; 
 cursor: pointer; 
 transition: var(--transition); 
 box-shadow: var(--shadow-md), 0 0 30px rgba(245, 158, 11, 0.5); 
 display: inline-flex; 
 align-items: center; 
 gap: 12px; 
 position: relative; 
 overflow: hidden; 
 margin-bottom: 20px; 
} 
 
.btn-start::before { 
 content: ''; 
 position: absolute; 
 top: 50%; 
 left: 50%; 
 width: 0; 
 height: 0; 
 border-radius: 50%; 
 background: rgba(255, 255, 255, 0.2); 
 transform: translate(-50%, -50%); 
 transition: width 0.6s, height 0.6s; 
} 
 
.btn-start:hover::before { 
 width: 300px; 
 height: 300px; 
} 
 
.btn-start:hover { 
 transform: translateY(-3px) scale(1.05); 
 box-shadow: var(--shadow-lg), 0 0 50px rgba(245, 158, 11, 0.7); 
 background: var(--accent-hover); 
} 
 
.btn-start svg { 
 width: 22px; 
 height: 22px; 
 animation: bounce 2s infinite; 
} 
 
@keyframes bounce { 
 0%, 100% { transform: translateY(0); } 
 50% { transform: translateY(5px); } 
} 
 
.hero-disclaimer { 
 font-size: 0.85rem; 
 color: rgba(255, 255, 255, 0.8); 
 font-style: italic; 
} 
 
/* =========================== 
 PROGRESS BAR 
 =========================== */ 
 
.progress-container { 
 background: rgba(255, 255, 255, 0.95); 
 backdrop-filter: blur(10px); 
 -webkit-backdrop-filter: blur(10px); 
 padding: 30px 20px; 
 box-shadow: var(--shadow-sm), 0 4px 30px rgba(30, 58, 138, 0.1); 
 border-bottom: 1px solid rgba(30, 58, 138, 0.1); 
 position: sticky; 
 top: 0; 
 z-index: 100; 
 display: none; 
} 
 
.progress-container.active { 
 display: block; 
 animation: slideDown 0.5s ease; 
} 
 
@keyframes slideDown { 
 from { 
 transform: translateY(-100%); 
 opacity: 0; 
 } 
 to { 
 transform: translateY(0); 
 opacity: 1; 
 } 
} 
 
.progress-wrapper { 
 max-width: 900px; 
 margin: 0 auto; 
} 
 
.progress-steps { 
 display: flex; 
 justify-content: space-between; 
 align-items: center; 
 margin-bottom: 15px; 
 position: relative; 
} 
 
.progress-steps::before { 
 content: ''; 
 position: absolute; 
 top: 20px; 
 left: 0; 
 right: 0; 
 height: 3px; 
 background: #e5e7eb; 
 z-index: 0; 
} 
 
.progress-bar-fill { 
 position: absolute; 
 top: 20px; 
 left: 0; 
 height: 3px; 
 background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-light)); 
 background-size: 200% 100%; 
 animation: shimmer 2s linear infinite; 
 transition: width 0.5s ease; 
 z-index: 1; 
 box-shadow: 0 0 10px rgba(30, 58, 138, 0.5); 
} 
 
@keyframes shimmer { 
 0% { background-position: -200% 0; } 
 100% { background-position: 200% 0; } 
} 
 
.progress-step { 
 display: flex; 
 flex-direction: column; 
 align-items: center; 
 position: relative; 
 z-index: 2; 
} 
 
.step-circle { 
 width: 40px; 
 height: 40px; 
 border-radius: 50%; 
 background: var(--white); 
 border: 3px solid #e5e7eb; 
 display: flex; 
 align-items: center; 
 justify-content: center; 
 font-weight: 700; 
 color: var(--text-light); 
 transition: var(--transition); 
 margin-bottom: 8px; 
 position: relative; 
} 
 
.progress-step.active .step-circle { 
 border-color: var(--primary-color); 
 background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); 
 color: var(--white); 
 transform: scale(1.15); 
 box-shadow: 0 0 20px rgba(30, 58, 138, 0.6), 
 inset 0 0 10px rgba(255, 255, 255, 0.3); 
 animation: circleGlow 2s ease-in-out infinite; 
} 
 
@keyframes circleGlow { 
 0%, 100% { 
 box-shadow: 0 0 20px rgba(30, 58, 138, 0.6), 
 inset 0 0 10px rgba(255, 255, 255, 0.3); 
 } 
 50% { 
 box-shadow: 0 0 30px rgba(30, 58, 138, 0.9), 
 inset 0 0 15px rgba(255, 255, 255, 0.5); 
 } 
} 
 
.progress-step.completed .step-circle { 
 border-color: var(--success); 
 background: var(--success); 
 color: var(--white); 
 box-shadow: 0 0 15px rgba(16, 185, 129, 0.4); 
} 
 
.step-label { 
 font-size: 0.75rem; 
 color: var(--text-light); 
 font-weight: 500; 
 text-align: center; 
} 
 
.progress-step.active .step-label { 
 color: var(--primary-color); 
 font-weight: 600; 
} 
 
/* =========================== 
 ETAPAS DO SIMULADOR 
 =========================== */ 
 
.step-section { 
 display: none; 
 padding: 60px 20px; 
 min-height: calc(100vh - 200px); 
} 
 
.step-section.active { 
 display: block; 
 animation: fadeInUp 0.5s ease; 
} 
 
@keyframes fadeInUp { 
 from { 
 opacity: 0; 
 transform: translateY(30px); 
 } 
 to { 
 opacity: 1; 
 transform: translateY(0); 
 } 
} 
 
.step-content {
 max-width: 900px;
 margin: 0 auto;
 width: 100%;
 min-width: 0;
 box-sizing: border-box;
} 
 
.step-header { 
 text-align: center; 
 margin-bottom: 50px; 
} 
 
.step-number { 
 display: inline-flex; 
 align-items: center; 
 justify-content: center; 
 width: 60px; 
 height: 60px; 
 border-radius: 50%; 
 background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); 
 color: var(--white); 
 font-size: 1.5rem; 
 font-weight: 700; 
 margin-bottom: 20px; 
 box-shadow: var(--shadow-md), 0 0 30px rgba(30, 58, 138, 0.4); 
 position: relative; 
 animation: pulse 2s ease-in-out infinite; 
} 
 
.step-number::before { 
 content: ''; 
 position: absolute; 
 width: 100%; 
 height: 100%; 
 border-radius: 50%; 
 border: 2px solid var(--primary-color); 
 animation: ripple 2s ease-out infinite; 
} 
 
@keyframes pulse { 
 0%, 100% { 
 box-shadow: var(--shadow-md), 0 0 30px rgba(30, 58, 138, 0.4); 
 } 
 50% { 
 box-shadow: var(--shadow-md), 0 0 50px rgba(30, 58, 138, 0.6); 
 } 
} 
 
@keyframes ripple { 
 0% { 
 transform: scale(1); 
 opacity: 1; 
 } 
 100% { 
 transform: scale(1.5); 
 opacity: 0; 
 } 
} 
 
.step-title { 
 font-size: 2rem; 
 font-weight: 700; 
 color: var(--text-dark); 
 margin-bottom: 15px; 
 line-height: 1.3; 
} 
 
.step-description { 
 font-size: 1.1rem; 
 color: var(--text-gray); 
 max-width: 700px; 
 margin: 0 auto; 
} 
 
/* =========================== 
 OPTIONS / CARDS 
 =========================== */ 
 
.options-grid { 
 display: grid; 
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
 gap: 25px; 
 margin-bottom: 30px; 
} 
 
.option-card { 
 background: var(--white); 
 border-radius: var(--border-radius); 
 padding: 40px 30px; 
 text-align: center; 
 cursor: pointer; 
 transition: var(--transition); 
 border: 3px solid transparent; 
 box-shadow: var(--shadow-sm); 
 position: relative; 
 overflow: hidden; 
} 
 
.option-card::before { 
 content: ''; 
 position: absolute; 
 top: 0; 
 left: 0; 
 right: 0; 
 height: 5px; 
 background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-light)); 
 background-size: 200% 100%; 
 animation: shimmer 2s linear infinite; 
 transform: scaleX(0); 
 transition: var(--transition); 
} 
 
.option-card::after { 
 content: ''; 
 position: absolute; 
 inset: -3px; 
 border-radius: var(--border-radius); 
 padding: 3px; 
 background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-light)); 
 background-size: 400% 400%; 
 -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); 
 mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); 
 -webkit-mask-composite: xor; 
 mask-composite: exclude; 
 opacity: 0; 
 transition: opacity 0.3s; 
 animation: borderGlow 3s ease infinite; 
} 
 
@keyframes borderGlow { 
 0%, 100% { background-position: 0% 50%; } 
 50% { background-position: 100% 50%; } 
} 
 
.option-card:hover { 
 transform: translateY(-8px) scale(1.02); 
 box-shadow: var(--shadow-lg), 0 10px 40px rgba(30, 58, 138, 0.2); 
 border-color: var(--primary-light); 
} 
 
.option-card:hover::before { 
 transform: scaleX(1); 
} 
 
.option-card:hover::after { 
 opacity: 1; 
} 
 
.option-card.selected { 
 border-color: var(--primary-color); 
 background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); 
 color: var(--white); 
 box-shadow: var(--shadow-lg), 0 0 40px rgba(30, 58, 138, 0.5); 
 animation: selectedPulse 2s ease-in-out infinite; 
} 
 
@keyframes selectedPulse { 
 0%, 100% { 
 box-shadow: var(--shadow-lg), 0 0 40px rgba(30, 58, 138, 0.5); 
 } 
 50% { 
 box-shadow: var(--shadow-lg), 0 0 60px rgba(30, 58, 138, 0.7); 
 } 
} 
 
.option-card.selected .option-icon { 
 filter: brightness(0) invert(1); 
 animation: iconFloat 2s ease-in-out infinite; 
} 
 
@keyframes iconFloat { 
 0%, 100% { transform: translateY(0); } 
 50% { transform: translateY(-5px); } 
} 
 
.option-card.selected .option-title, 
.option-card.selected .option-description { 
 color: var(--white); 
 text-shadow: 0 0 10px rgba(255,255,255,0.3); 
} 
 
 .option-icon {
 width: 80px;
 height: 80px;
 margin: 0 auto 20px;
 transition: var(--transition);
 position: relative;
 filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 2.75rem;
 line-height: 1;
 }
 
.option-icon img { 
 width: 100%; 
 height: 100%; 
 object-fit: contain; 
 position: relative; 
 z-index: 1; 
 
 filter: brightness(0) saturate(100%) invert(27%) sepia(73%) 
 saturate(1652%) hue-rotate(239deg) brightness(89%) 
 contrast(92%); 
} 
 
.option-icon::before { 
 content: ''; 
 position: absolute; 
 inset: -10px; 
 background: radial-gradient(circle, rgba(30, 58, 138, 0.2), transparent 70%); 
 border-radius: 50%; 
 opacity: 0; 
 transition: var(--transition); 
} 
 
.option-card:hover .option-icon { 
 transform: scale(1.1) rotate(5deg); 
 filter: drop-shadow(0 8px 16px rgba(30, 58, 138, 0.3)); 
} 
 
.option-card:hover .option-icon::before { 
 opacity: 1; 
 animation: iconPulse 1.5s ease-in-out infinite; 
} 
 
@keyframes iconPulse { 
 0%, 100% { transform: scale(1); opacity: 0.5; } 
 50% { transform: scale(1.2); opacity: 0.8; } 
} 
 
.option-icon img { 
 width: 100%; 
 height: 100%; 
 object-fit: contain; 
 position: relative; 
 z-index: 1; 
} 
 
.option-title { 
 font-size: 1.3rem; 
 font-weight: 700; 
 color: var(--text-dark); 
 transition: var(--transition); 
 margin-bottom: 10px; 
} 
 
.option-description { 
 font-size: 0.9rem; 
 color: var(--text-gray); 
 transition: var(--transition); 
} 
 
/* =========================== 
 INFO CARDS (Etapa 2) 
 =========================== */ 
 
.info-cards { 
 display: grid; 
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
 gap: 20px; 
 margin: 40px 0; 
} 
 
.info-card { 
 background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(124, 58, 237, 0.05)); 
 border: 2px solid rgba(30, 58, 138, 0.1); 
 border-radius: 12px; 
 padding: 25px; 
 text-align: center; 
 transition: var(--transition); 
} 
 
.info-card:hover { 
 transform: translateY(-5px); 
 border-color: var(--primary-color); 
 background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(124, 58, 237, 0.1)); 
 box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15); 
} 
 
.info-icon { 
 font-size: 2.5rem; 
 margin-bottom: 15px; 
 filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)); 
} 
 
.info-card h4 { 
 font-size: 1.2rem; 
 color: var(--primary-color); 
 margin-bottom: 10px; 
 font-weight: 700; 
} 
 
.info-card p { 
 font-size: 0.9rem; 
 color: var(--text-gray); 
 line-height: 1.5; 
} 
 
/* =========================== 
 HIGHLIGHT BOX 
 =========================== */ 
 
.highlight-box { 
 background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1)); 
 border: 2px solid var(--accent-color); 
 border-radius: 16px; 
 padding: 30px; 
 margin-bottom: 40px; 
 box-shadow: 0 4px 20px rgba(245, 158, 11, 0.15); 
} 
 
.highlight-box h3 { 
 font-size: 1.5rem; 
 color: var(--primary-color); 
 margin-bottom: 20px; 
 text-align: center; 
 font-weight: 800; 
} 
 
.benefits-list { 
 list-style: none; 
 padding: 0; 
 display: grid; 
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
 gap: 15px; 
} 
 
.benefits-list li { 
 font-size: 1rem; 
 color: var(--text-dark); 
 padding: 12px 15px; 
 background: rgba(255, 255, 255, 0.7); 
 border-radius: 8px; 
 transition: var(--transition); 
 font-weight: 500; 
} 
 
.benefits-list li:hover { 
 background: rgba(255, 255, 255, 1); 
 transform: translateX(5px); 
 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
} 
 
/* =========================== 
 SELECT / DROPDOWN 
 =========================== */ 
 
.select-wrapper {
 width: 100%;
 max-width: 600px;
 margin: 0 auto 40px;
 padding: 0;
 box-sizing: border-box;
}

.select-custom {
 display: block;
 width: 100%;
 max-width: 100%;
 box-sizing: border-box;
 padding: 16px 44px 16px 16px;
 font-size: 16px;
 border: 2px solid #e5e7eb;
 border-radius: var(--border-radius);
 background-color: var(--white);
 color: var(--text-dark);
 cursor: pointer;
 transition: var(--transition);
 appearance: none;
 -webkit-appearance: none;
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%231672d0' d='M10 13l-7-7h14z'/%3E%3C/svg%3E");
 background-repeat: no-repeat;
 background-position: right 14px center;
 background-size: 18px;
 font-family: 'Inter', sans-serif;
 text-overflow: ellipsis;
 white-space: nowrap;
 overflow: hidden;
}

.select-custom:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 4px rgba(22, 114, 208, 0.1);
}

.select-custom option {
 padding: 10px;
 white-space: normal;
 word-wrap: break-word;
}
 
/* =========================== 
 BOTÕES DE NAVEGAÇÃO 
 =========================== */ 
 
.button-group { 
 display: flex; 
 justify-content: center; 
 gap: 20px; 
 margin-top: 40px; 
} 
 
.btn { 
 padding: 16px 40px; 
 font-size: 1.1rem; 
 font-weight: 600; 
 border-radius: 50px; 
 border: none; 
 cursor: pointer; 
 transition: var(--transition); 
 display: inline-flex; 
 align-items: center; 
 gap: 10px; 
 font-family: 'Inter', sans-serif; 
} 
 
.btn-primary { 
 background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); 
 background-size: 200% 200%; 
 color: var(--white); 
 box-shadow: var(--shadow-md), 0 0 20px rgba(30, 58, 138, 0.3); 
 animation: gradientShift 3s ease infinite; 
 position: relative; 
 overflow: hidden; 
} 
 
.btn-primary::before { 
 content: ''; 
 position: absolute; 
 top: 50%; 
 left: 50%; 
 width: 0; 
 height: 0; 
 border-radius: 50%; 
 background: rgba(255, 255, 255, 0.2); 
 transform: translate(-50%, -50%); 
 transition: width 0.6s, height 0.6s; 
} 
 
.btn-primary:hover:not(:disabled)::before { 
 width: 300px; 
 height: 300px; 
} 
 
@keyframes gradientShift { 
 0%, 100% { background-position: 0% 50%; } 
 50% { background-position: 100% 50%; } 
} 
 
.btn-primary:hover:not(:disabled) { 
 background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark)); 
 transform: translateY(-3px); 
 box-shadow: var(--shadow-lg), 0 0 40px rgba(30, 58, 138, 0.5); 
} 
 
.btn-primary:disabled { 
 opacity: 0.5; 
 cursor: not-allowed; 
} 
 
.btn-secondary { 
 background: transparent; 
 color: var(--text-gray); 
 border: 2px solid #e5e7eb; 
} 
 
.btn-secondary:hover { 
 border-color: var(--text-gray); 
 background: #f9fafb; 
} 
 
/* =========================== 
 FORMULÁRIO FINAL 
 =========================== */ 
 
.form-section { 
 display: none; 
 padding: 60px 20px; 
 min-height: 100vh; 
} 
 
.form-section.active { 
 display: block; 
 animation: fadeInUp 0.5s ease; 
} 
 
.form-container { 
 max-width: 700px; 
 margin: 0 auto; 
 background: var(--white); 
 padding: 50px; 
 border-radius: var(--border-radius); 
 box-shadow: var(--shadow-lg), 0 0 40px rgba(30, 58, 138, 0.2); 
 position: relative; 
 border: 1px solid rgba(30, 58, 138, 0.1); 
} 
 
.form-container::before { 
 content: ''; 
 position: absolute; 
 inset: -2px; 
 background: linear-gradient(45deg, 
 var(--primary-color), 
 var(--secondary-color), 
 var(--primary-light), 
 var(--secondary-light) 
 ); 
 background-size: 300% 300%; 
 border-radius: var(--border-radius); 
 z-index: -1; 
 opacity: 0.3; 
 animation: borderGlow 4s ease infinite; 
 filter: blur(8px); 
} 
 
.form-header { 
 text-align: center; 
 margin-bottom: 40px; 
} 
 
.form-header .step-number { 
 margin-bottom: 20px; 
} 
 
.form-title { 
 font-size: 1.8rem; 
 font-weight: 700; 
 color: var(--text-dark); 
 margin-bottom: 10px; 
} 
 
.form-description { 
 font-size: 1rem; 
 color: var(--text-gray); 
 margin-bottom: 30px; 
} 
 
/* Final Stats */ 
.final-stats { 
 display: grid; 
 grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
 gap: 15px; 
 margin-top: 25px; 
} 
 
.final-stat { 
 background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(124, 58, 237, 0.1)); 
 padding: 20px; 
 border-radius: 12px; 
 text-align: center; 
 border: 2px solid rgba(30, 58, 138, 0.2); 
 transition: var(--transition); 
} 
 
.final-stat:hover { 
 transform: translateY(-3px); 
 border-color: var(--primary-color); 
 box-shadow: 0 5px 20px rgba(30, 58, 138, 0.2); 
} 
 
.final-stat-label { 
 display: block; 
 font-size: 0.85rem; 
 color: var(--text-gray); 
 margin-bottom: 5px; 
 font-weight: 500; 
} 
 
.final-stat-value { 
 display: block; 
 font-size: 1.5rem; 
 font-weight: 800; 
 color: var(--primary-color); 
 text-shadow: 0 0 20px rgba(30, 58, 138, 0.2); 
} 
 
.form-group { 
 margin-bottom: 25px; 
} 
 
.form-label { 
 display: block; 
 font-size: 0.95rem; 
 font-weight: 600; 
 color: var(--text-dark); 
 margin-bottom: 8px; 
} 
 
.form-input, textarea { 
 width: 100%; 
 padding: 16px 20px; 
 font-size: 1rem; 
 border: 2px solid #e5e7eb; 
 border-radius: 12px; 
 transition: var(--transition); 
 font-family: 'Inter', sans-serif; 
 background: var(--white); 
 position: relative; 
} 
 
.form-input:focus { 
 outline: none; 
 border-color: var(--primary-color); 
 box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1), 
 0 0 20px rgba(30, 58, 138, 0.2); 
 transform: translateY(-2px); 
} 
 
.form-input::placeholder { 
 color: #adb5bd; 
} 
 
.form-error { 
 color: #dc2626; 
 font-size: 0.85rem; 
 margin-top: 5px; 
 display: block; 
} 
 
.btn-submit { 
 width: 100%; 
 background: linear-gradient(135deg, var(--accent-color), var(--accent-hover)); 
 background-size: 200% 200%; 
 color: var(--white); 
 padding: 20px; 
 font-size: 1.3rem; 
 font-weight: 700; 
 border: none; 
 border-radius: 12px; 
 cursor: pointer; 
 transition: var(--transition); 
 margin-top: 20px; 
 box-shadow: var(--shadow-md), 0 0 30px rgba(245, 158, 11, 0.4); 
 animation: gradientShift 3s ease infinite, submitPulse 2s ease-in-out infinite; 
 position: relative; 
 overflow: hidden; 
} 
 
.btn-submit::before { 
 content: ''; 
 position: absolute; 
 top: 50%; 
 left: 50%; 
 width: 0; 
 height: 0; 
 border-radius: 50%; 
 background: rgba(255, 255, 255, 0.3); 
 transform: translate(-50%, -50%); 
 transition: width 0.6s, height 0.6s; 
} 
 
.btn-submit:hover:not(:disabled)::before { 
 width: 400px; 
 height: 400px; 
} 
 
@keyframes submitPulse { 
 0%, 100% { 
 box-shadow: var(--shadow-md), 0 0 30px rgba(245, 158, 11, 0.4); 
 } 
 50% { 
 box-shadow: var(--shadow-md), 0 0 50px rgba(245, 158, 11, 0.6); 
 } 
} 
 
.btn-submit:hover:not(:disabled) { 
 background: linear-gradient(135deg, var(--accent-hover), #b45309); 
 transform: translateY(-3px) scale(1.02); 
 box-shadow: var(--shadow-lg), 0 0 50px rgba(245, 158, 11, 0.6); 
} 
 
.btn-submit:disabled { 
 opacity: 0.6; 
 cursor: not-allowed; 
 animation: none; 
}

.form-feedback {
  margin-top: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-feedback--error {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #be123c;
}

.form-success {
  margin-top: 1.25rem;
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  text-align: center;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.08));
  border: 2px solid rgba(16, 185, 129, 0.35);
}

.form-success h3 {
  font-size: 1.2rem;
  color: #047857;
  margin-bottom: 0.45rem;
}

.form-success p {
  color: #065f46;
  font-size: 0.95rem;
  line-height: 1.55;
} 
 
/* =========================== 
 FOOTER 
 =========================== */ 
 
.footer-section { 
 background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); 
 color: var(--white); 
 padding: 50px 20px 30px; 
 text-align: center; 
 margin-top: auto; 
} 
 
.footer-logo { 
 width: 200px; 
 max-width: 80%; 
 height: auto; 
 margin-bottom: 25px; 
 filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2)); 
} 
 
.footer-text { 
 color: rgba(255, 255, 255, 0.9); 
 font-size: 0.95rem; 
 max-width: 900px; 
 margin: 0 auto 20px; 
 line-height: 1.7; 
} 
 
.footer-address { 
 color: rgba(255, 255, 255, 0.8); 
 font-size: 0.9rem; 
 margin-bottom: 15px; 
} 
 
.footer-copyright { 
 color: rgba(255, 255, 255, 0.7); 
 font-size: 0.85rem; 
 padding-top: 20px; 
 border-top: 1px solid rgba(255, 255, 255, 0.2); 
 max-width: 900px; 
 margin: 0 auto; 
} 
 
/* =========================== 
 RESPONSIVIDADE 
 =========================== */ 
 
@media (max-width: 768px) { 
 .hero-title { 
 font-size: 2rem; 
 } 
 
 .hero-subtitle { 
 font-size: 1.1rem; 
 } 
 
 .hero-stats { 
 grid-template-columns: 1fr; 
 gap: 15px; 
 } 
 
 .stat-value { 
 font-size: 1.6rem; 
 } 
 
 .btn-start { 
 padding: 18px 40px; 
 font-size: 1.1rem; 
 } 
 
 .logo-header { 
 width: 170px; 
 } 
 
 .progress-container { 
 padding: 20px 15px; 
 } 
 
 .step-label { 
 font-size: 0.65rem; 
 } 
 
 .step-circle { 
 width: 35px; 
 height: 35px; 
 font-size: 0.9rem; 
 } 
 
 .step-title { 
 font-size: 1.6rem; 
 } 
 
 .step-description { 
 font-size: 1rem; 
 } 
 
 .options-grid { 
 grid-template-columns: 1fr; 
 gap: 20px; 
 } 
 
 .option-card { 
 padding: 30px 20px; 
 } 
 
 .info-cards { 
 grid-template-columns: 1fr; 
 } 
 
 .benefits-list { 
 grid-template-columns: 1fr; 
 } 
 
 .final-stats { 
 grid-template-columns: 1fr; 
 } 
 
 .form-container { 
 padding: 35px 25px; 
 } 
 
 .form-title { 
 font-size: 1.5rem; 
 } 
 
 .button-group { 
 flex-direction: column; 
 } 
 
 .btn { 
 width: 100%; 
 justify-content: center; 
 } 
} 
 
@media (max-width: 480px) { 
 .hero-section { 
 padding: 40px 15px 60px; 
 } 
 
 .hero-title { 
 font-size: 1.6rem; 
 } 
 
 .hero-subtitle { 
 font-size: 1rem; 
 } 
 
 .stat-value { 
 font-size: 1.4rem; 
 } 
 
 .stat-label { 
 font-size: 0.8rem; 
 } 
 
 .step-section { 
 padding: 40px 15px; 
 } 
 
 .step-number { 
 width: 50px; 
 height: 50px; 
 font-size: 1.2rem; 
 } 
 
 .option-icon { 
 width: 60px; 
 height: 60px; 
 } 
 
 .option-title { 
 font-size: 1.1rem; 
 } 
 
 .highlight-box { 
 padding: 20px; 
 } 
 
 .highlight-box h3 { 
 font-size: 1.2rem; 
 } 
 
 .benefits-list li { 
 font-size: 0.9rem; 
 } 
 
 .form-container { 
 padding: 25px 20px; 
 } 
 
 .btn-submit { 
 font-size: 1.1rem; 
 } 
} 
 
/* =========================== 
 LOADING STATE 
 =========================== */ 
 
.loading { 
 pointer-events: none; 
 opacity: 0.6; 
 position: relative; 
} 
 
.loading::after { 
 content: ''; 
 position: absolute; 
 top: 50%; 
 left: 50%; 
 width: 40px; 
 height: 40px; 
 border: 4px solid transparent; 
 border-top-color: var(--primary-color); 
 border-right-color: var(--secondary-color); 
 border-radius: 50%; 
 animation: spin 0.8s linear infinite; 
 transform: translate(-50%, -50%); 
 box-shadow: 0 0 20px rgba(30, 58, 138, 0.5); 
} 
 
@keyframes spin { 
 to { transform: translate(-50%, -50%) rotate(360deg); } 
} 
 
/* Loading Overlay Avançado */ 
.loading-overlay { 
 position: fixed; 
 top: 0; 
 left: 0; 
 width: 100%; 
 height: 100%; 
 background: rgba(30, 58, 138, 0.95); 
 backdrop-filter: blur(5px); 
 display: flex; 
 align-items: center; 
 justify-content: center; 
 z-index: 9999; 
 animation: fadeIn 0.3s ease; 
 flex-direction: column; 
 gap: 20px; 
} 
 
@keyframes fadeIn { 
 from { opacity: 0; } 
 to { opacity: 1; } 
} 
 
.spinner { 
 width: 70px; 
 height: 70px; 
 border: 6px solid rgba(255, 255, 255, 0.2); 
 border-top-color: var(--accent-color); 
 border-right-color: var(--primary-light); 
 border-radius: 50%; 
 animation: spin 0.8s linear infinite; 
 box-shadow: 0 0 40px rgba(245, 158, 11, 0.6), 
 inset 0 0 20px rgba(255, 255, 255, 0.3); 
 position: relative; 
} 
 
.spinner::before { 
 content: ''; 
 position: absolute; 
 top: 5px; 
 left: 5px; 
 right: 5px; 
 bottom: 5px; 
 border: 4px solid transparent; 
 border-top-color: var(--white); 
 border-radius: 50%; 
 animation: spin 1.2s linear infinite reverse; 
} 
 
/* =========================== 
 UTILITÁRIOS 
 =========================== */ 
 
.hidden { 
 display: none !important; 
} 
 
.text-center { 
 text-align: center; 
} 
 
.mt-20 { 
 margin-top: 20px; 
} 
 
.mb-20 { 
 margin-bottom: 20px; 
} 

/* ===========================
 ENHANCED LAYOUT v2
 =========================== */

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", "Inter", system-ui, sans-serif;
  background: #030712;
  overflow-x: hidden;
  max-width: 100vw;
}

.simulador-container::before,
body::before {
  display: none;
}

/* Nav */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 0 clamp(1rem, 3vw, 2rem);
  transition: var(--transition);
  background: rgba(3, 7, 18, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-nav.is-scrolled {
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.site-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav__brand img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.site-nav__links {
  display: none;
  gap: 1.75rem;
  margin-left: auto;
}

.site-nav__links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.site-nav__links a:hover {
  color: #fff;
}

.site-nav__cta {
  display: none;
  margin-left: auto;
  padding: 10px 22px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
  transition: var(--transition);
}

.site-nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.45);
}

.site-nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.site-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.site-nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem clamp(1rem, 3vw, 2rem) 1.25rem;
  background: rgba(3, 7, 18, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-nav__mobile[hidden] {
  display: none;
}

.site-nav__mobile a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.65rem 0;
  font-weight: 500;
}

.site-nav__mobile .btn-start-nav {
  margin-top: 0.5rem;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

@media (min-width: 900px) {
  .site-nav__links { display: flex; }
  .site-nav__cta { display: inline-flex; margin-left: 0; }
  .site-nav__toggle { display: none; }
}

/* Flow hidden until start */
.lp-flow {
  display: none;
}

.lp-flow.is-active {
  display: block;
}

.lp-marketing.is-hidden {
  display: none;
}

/* Hero redesign */
.hero-section {
  min-height: auto;
  padding: calc(72px + 2rem) clamp(1rem, 4vw, 2rem) clamp(5rem, 10vw, 7rem);
  text-align: left;
  background: #030712;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  display: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-bg__orb--1 {
  width: 420px;
  height: 420px;
  top: -80px;
  left: -60px;
  background: rgba(22, 114, 208, 0.35);
}

.hero-bg__orb--2 {
  width: 360px;
  height: 360px;
  bottom: 10%;
  right: -40px;
  background: rgba(124, 58, 237, 0.28);
}

.hero-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 15%, transparent 75%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 3vw, 3rem);
  }
}

.hero-content {
  max-width: none;
  min-width: 0;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.25rem;
  max-width: 100%;
  flex-wrap: wrap;
  font-size: clamp(0.7rem, 1.8vw, 0.85rem);
}

.hero-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 12px #10b981;
  animation: blink 1.5s ease-in-out infinite;
}

.hero-title {
  font-family: "Plus Jakarta Sans", "DM Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.2vw + 0.5rem, 2.65rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  animation: none;
  text-shadow: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-title__brand {
  display: block;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
}

.hero-title__line {
  display: block;
  color: #fff;
  max-width: 25ch;
}

.hero-title__accent {
  display: block;
  max-width: 25ch;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 45%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-visual {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-visual {
    max-width: none;
    margin: 0;
    padding-bottom: 1rem;
  }
}

.dashboard-mock {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(22, 114, 208, 0.25);
  animation: mockFloat 6s ease-in-out infinite;
}

@keyframes mockFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.dashboard-mock__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.dashboard-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard-mock__dot--r { background: #ef4444; }
.dashboard-mock__dot--y { background: #f59e0b; }
.dashboard-mock__dot--g { background: #10b981; }

.dashboard-mock__title {
  margin-left: 8px;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.9);
  font-weight: 500;
}

.video-container {
  position: relative;
  width: 100%;
  min-height: 380px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-container iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  outline: none !important;
}

/* Dashboard mockup */

@media (min-width: 640px) {
  .hero-title__line,
  .hero-title__accent {
    max-width: none;
  }
}

.hero-subtitle {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--login-muted, #94a3b8);
  opacity: 1;
}

.hero-message {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.75rem;
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.hero-message em {
  color: rgba(248, 113, 113, 0.95);
  font-style: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 18px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-stats {
  grid-template-columns: 1fr;
  padding: 0;
  margin-bottom: 0;
  gap: 0.75rem;
}

@media (min-width: 900px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.stat-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 0.65rem;
  background: rgba(22, 114, 208, 0.18);
  color: var(--primary-light);
}

.stat-item__icon svg {
  width: 22px;
  height: 22px;
}

.stat-value {
  font-size: 1.05rem;
  text-align: left;
}

.stat-label {
  text-align: left;
  font-size: 0.82rem;
  line-height: 1.45;
}

.stat-icon { display: none; }

.hero-disclaimer {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 2rem auto 0;
  text-align: center;
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(148, 163, 184, 0.85);
}

/* Dashboard mockup */
.hero-visual {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-visual {
    max-width: none;
    margin: 0;
    padding-bottom: 1rem;
  }
}

.dashboard-mock {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(22, 114, 208, 0.12);
  animation: mockFloat 6s ease-in-out infinite;
}

@keyframes mockFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.dashboard-mock__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.dashboard-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard-mock__dot--r { background: #ef4444; }
.dashboard-mock__dot--y { background: #f59e0b; }
.dashboard-mock__dot--g { background: #10b981; }

.dashboard-mock__title {
  margin-left: 8px;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.9);
  font-weight: 500;
}

.dashboard-mock__body {
  padding: 1.1rem;
  display: grid;
  gap: 1rem;
}

.dashboard-mock__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.metric-chip {
  padding: 0.65rem 0.5rem;
  border-radius: 10px;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.1);
  text-align: center;
}

.metric-chip__label {
  display: block;
  font-size: 0.65rem;
  color: #94a3b8;
  margin-bottom: 2px;
}

.metric-chip__value {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f8fafc;
}

.metric-chip--up .metric-chip__value { color: #34d399; }
.metric-chip--pulse .metric-chip__value {
  color: #67e8f9;
  animation: blink 2s ease-in-out infinite;
}

.dashboard-mock__chat {
  display: grid;
  gap: 0.5rem;
}

.chat-bubble {
  max-width: 92%;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
}

.chat-bubble--in {
  justify-self: start;
  background: rgba(30, 41, 59, 0.9);
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.chat-bubble--out {
  justify-self: end;
  background: rgba(22, 114, 208, 0.25);
  color: #e0f2fe;
  border: 1px solid rgba(22, 114, 208, 0.35);
}

.dashboard-mock__funnel {
  display: grid;
  gap: 0.45rem;
}

.funnel-step {
  height: 28px;
  width: var(--w, 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.7);
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.08);
}

.funnel-step--active {
  color: #fff;
  background: linear-gradient(90deg, rgba(22, 114, 208, 0.5), rgba(124, 58, 237, 0.35));
  border-color: rgba(22, 114, 208, 0.35);
}

.hero-visual__glow {
  position: absolute;
  inset: 10% -10%;
  background: radial-gradient(circle, rgba(22, 114, 208, 0.22), transparent 65%);
  z-index: 0;
  pointer-events: none;
}

/* Trust strip */
.trust-strip {
  overflow: hidden;
  background: linear-gradient(90deg, var(--primary-dark), var(--secondary-dark));
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0;
}

.trust-strip__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.trust-strip__track span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-strip__track span::before {
  content: "◆";
  margin-right: 0.75rem;
  color: var(--accent-color);
  font-size: 0.55rem;
  vertical-align: middle;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.section--compare {
  background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 100%);
}

.section--prospection {
  background: #030712;
  color: #f8fafc;
}

.section__container {
  max-width: 1140px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.75rem;
}

.section__kicker {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(22, 114, 208, 0.1);
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section--prospection .section__kicker {
  background: rgba(22, 114, 208, 0.2);
  color: var(--primary-light);
}

.section__title {
  font-family: "Plus Jakarta Sans", "DM Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
}

.section--prospection .section__title {
  color: #fff;
  text-align: left;
}

.section__desc {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.65;
}

.section--prospection .section__desc {
  color: #94a3b8;
  text-align: left;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

@media (min-width: 640px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

.pillar-card {
  padding: 1.5rem 1.35rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(22, 114, 208, 0.08);
  box-shadow: 0 8px 30px rgba(22, 114, 208, 0.06);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(22, 114, 208, 0.12);
  border-color: rgba(22, 114, 208, 0.2);
}

.pillar-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(22, 114, 208, 0.12), rgba(124, 58, 237, 0.1));
  color: var(--primary-color);
}

.pillar-card__icon svg {
  width: 24px;
  height: 24px;
}

.pillar-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.pillar-card p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.55;
}

/* Compare */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .compare-grid { grid-template-columns: 1fr 1fr; }
}

.compare-card {
  padding: 1.75rem 1.5rem;
  border-radius: 20px;
  border: 2px solid transparent;
}

.compare-card--muted {
  background: #fff;
  border-color: #e5e7eb;
}

.compare-card--highlight {
  background: linear-gradient(145deg, rgba(22, 114, 208, 0.08), rgba(124, 58, 237, 0.08));
  border-color: var(--primary-color);
  box-shadow: 0 16px 48px rgba(22, 114, 208, 0.12);
}

.compare-card__tag {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compare-card--muted .compare-card__tag {
  background: #f3f4f6;
  color: #6b7280;
}

.compare-card--highlight .compare-card__tag {
  background: var(--primary-color);
  color: #fff;
}

.compare-card ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.compare-card li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-dark);
}

.compare-card--muted li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

.compare-card--highlight li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.btn-start--inline {
  margin-top: 1.5rem;
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
}

/* Prospection */
.prospection-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .prospection-layout { grid-template-columns: 1.1fr 0.9fr; }
}

.prospection-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.85rem;
}

.prospection-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.prospection-list li span {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-light);
  background: rgba(22, 114, 208, 0.15);
  border: 1px solid rgba(22, 114, 208, 0.25);
}

.source-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.source-card {
  padding: 1.25rem 1rem;
  border-radius: 16px;
  text-align: center;
  font-weight: 600;
  font-size: 0.92rem;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.14);
  color: #e2e8f0;
  transition: var(--transition);
}

.source-card span {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.source-card--result {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(22, 114, 208, 0.35), rgba(124, 58, 237, 0.25));
  border-color: rgba(22, 114, 208, 0.4);
  color: #fff;
}

/* CTA band */
.cta-band {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-band__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cta-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-band h2 {
  font-family: "Plus Jakarta Sans", "DM Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  line-height: 1.6;
}

.btn-start--light {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Flow steps on light bg */
.lp-flow .step-section,
.lp-flow .form-section {
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
}

.options-grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .options-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

.options-grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .options-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.option-card .option-icon svg {
  width: 36px;
  height: 36px;
  color: var(--primary-color);
}

.option-card.selected .option-icon svg {
  color: #fff;
  filter: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1.25rem;
  }
}

/* Footer grid */
.footer-section {
  text-align: left;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem) 1.5rem;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 0.8fr 1fr; }
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-text {
  margin: 0;
  text-align: left;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links strong,
.footer-contact strong {
  color: #fff;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover { color: #fff; }

.footer-contact p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.footer-cta {
  margin-top: 0.75rem;
  align-self: flex-start;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.footer-cta:hover {
  background: rgba(255, 255, 255, 0.12);
}

.footer-copyright {
  text-align: center;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.benefits-list li::before {
  content: "✓";
  margin-right: 0.5rem;
  color: var(--success);
  font-weight: 700;
}

/* Responsive overrides */
@media (max-width: 1023px) {
  .dashboard-mock {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-visual {
    display: none !important;
  }

  .hero-section {
    padding-top: calc(64px + 1rem);
    padding-bottom: 2.5rem;
  }

  .hero-grid {
    gap: 1.25rem;
  }

  .hero-message {
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    margin-bottom: 1.5rem;
  }

  .btn-start,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .dashboard-mock__metrics {
    grid-template-columns: 1fr;
  }

  .metric-chip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 0.75rem 1rem;
  }

  .metric-chip__label,
  .metric-chip__value {
    display: inline;
  }

  .site-nav__inner {
    height: 64px;
  }

  .site-nav__brand img {
    height: 28px;
    max-width: 120px;
    object-fit: contain;
  }

  .whatsapp-float {
    bottom: max(16px, env(safe-area-inset-bottom));
    right: max(16px, env(safe-area-inset-right));
  }

  .whatsapp-button {
    padding: 12px 16px;
    gap: 10px;
  }

  .whatsapp-content {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-value {
    font-size: 0.98rem;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats .stat-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .whatsapp-float {
    left: max(30px, env(safe-area-inset-left));
    right: auto;
    bottom: max(30px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.5rem, 7vw, 1.85rem);
  }

  .hero-message {
    padding: 1rem;
  }

  .hero-message p {
    font-size: 0.92rem;
  }

  .compare-card,
  .pillar-card {
    padding: 1.25rem 1.1rem;
  }

  .cta-band__inner .btn-start {
    width: 100%;
  }

  .site-nav__cta {
    display: none;
  }
}

.options-grid--challenge {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .options-grid--challenge {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.option-card--compact {
  padding: 1.35rem 1.15rem;
  text-align: left;
}

.option-card--compact .option-icon {
  width: 52px;
  height: 52px;
  margin: 0 0 0.85rem;
  font-size: 0;
}

.option-card--compact .option-title {
  font-size: 1rem;
  text-align: left;
}

.option-card--compact .option-description {
  font-size: 0.85rem;
  text-align: left;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .step-section {
    padding: 2.5rem 1rem 3.5rem;
    overflow-x: hidden;
  }

  .step-content,
  .form-container,
  .form-group,
  .select-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .select-custom {
    font-size: 16px;
    padding: 14px 40px 14px 14px;
  }

  .form-grid .form-group {
    width: 100%;
  }
}

/* ==========================================
   LOBO APONTANDO NO TOPO DA JANELA DE VÍDEO
   ========================================== */

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding-top: 0;
}

.dashboard-mock {
  position: relative;
  z-index: 5;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 40px rgba(22, 114, 208, 0.25);
}

.video-container {
  position: relative;
  width: 100%;
  min-height: 340px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  z-index: 1;
}



/* ==========================================
   SEÇÃO GRANDES MARCAS (MAZUKIM)
   ========================================== */

.marcas-section {
  background: #030712;
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marcas-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

@media (min-width: 992px) {
  .marcas-container {
    flex-direction: row;
    gap: 60px;
  }
}

.marcas-col-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (min-width: 992px) {
  .marcas-col-image {
    width: 50%;
    justify-content: flex-start;
  }
}

.marcas-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
}

.marcas-embaixadoras-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.7));
  display: block;
}

.marcas-col-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 992px) {
  .marcas-col-content {
    width: 50%;
  }
}

.marcas-header {
  text-align: center;
}

@media (min-width: 992px) {
  .marcas-header {
    text-align: left;
  }
}

.marcas-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 16px;
}

.marcas-title .text-blue,
.marcas-desc .text-blue {
  color: #1672d0;
}

.marcas-desc {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.5;
  color: #f3f4f6;
}

.marcas-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.marcas-grid-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  filter: brightness(1.1);
}

/* ==========================================
   LOBO BRAÇOS CRUZADOS SOBRE O BOTÃO (CTA)
   ========================================== */

.cta-band {
  padding: 60px 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
  position: relative;
  overflow: hidden;
}

.cta-band__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 991px) {
  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }
}

.cta-band__copy {
  max-width: 540px;
}

.cta-band__copy h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-band__copy p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cta-band__visual {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-top: 15px;
}

.cta-wolf-wrapper {
  position: relative;
  width: 250px;
  height: 220px;
  margin-bottom: -32px; /* O botão cobre a parte inferior do peito do lobo */
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}

.cta-wolf-img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35));
}

.cta-band__visual .btn-start {
  position: relative;
  z-index: 5;
  margin: 0;
  box-shadow: 0 12px 36px rgba(245, 158, 11, 0.5);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .trust-strip__track,
  .dashboard-mock,
  .logo-header,
  .stat-item {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===========================
 PÁGINA DE OBRIGADO
 =========================== */

body.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: #030712;
}

.thank-you {
  position: relative;
  width: 100%;
  max-width: 640px;
  z-index: 1;
}

.thank-you__bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.thank-you__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.thank-you__orb--1 {
  width: 320px;
  height: 320px;
  background: #1672d0;
  top: -80px;
  right: -60px;
}

.thank-you__orb--2 {
  width: 280px;
  height: 280px;
  background: #7c3aed;
  bottom: -60px;
  left: -40px;
}

.thank-you__card {
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.thank-you__brand {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.thank-you__brand img {
  display: block;
  height: auto;
  max-width: 160px;
  margin: 0 auto;
}

.thank-you__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.35);
}

.thank-you__icon svg {
  width: 36px;
  height: 36px;
}

.thank-you__title {
  font-family: "Plus Jakarta Sans", "DM Sans", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.thank-you__lead {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.thank-you__steps {
  list-style: none;
  text-align: left;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.thank-you__steps li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.thank-you__steps li span {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(22, 114, 208, 0.2);
  color: #5b9de8;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.thank-you__actions {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.thank-you__btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.thank-you__note {
  color: #64748b;
  font-size: 0.8rem;
  margin: 0;
}

 
