/* Landing Page Zap2B - Estilos Responsivos */

/* Reset específico para landing page */
.landing-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.landing-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

/* Garantir que o body não tenha estilos conflitantes */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
}

/* Garantir que a fonte Inter seja aplicada em todos os elementos da landing */
.landing-page,
.landing-page * {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Reset e variáveis - Tema Neural AI */
:root {
    /* Cores principais - Tema Neural/Cérebro Digital */
    --primary-color: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --secondary-color: #06b6d4;
    --secondary-dark: #0891b2;
    --accent-color: #f59e0b;
    --neural-purple: #6366f1;
    --neural-cyan: #22d3ee;
    --neural-pink: #ec4899;
    
    /* Cores de texto */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    /* Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    
    /* Gradientes neurais */
    --bg-neural: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #8b5cf6 100%);
    --bg-brain: linear-gradient(135deg, #1e1b4b 0%, #312e81 25%, #3730a3 50%, #4338ca 75%, #6366f1 100%);
    --bg-synapses: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
                   radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.2) 0%, transparent 50%),
                   radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    
    /* Cores de borda e sombra */
    --border-color: #e2e8f0;
    --border-neural: rgba(139, 92, 246, 0.2);
    --shadow-neural: 0 4px 6px -1px rgba(139, 92, 246, 0.1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.3);
    
    /* Outros */
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Estilos globais aplicados apenas dentro da landing page */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - Tema Neural */
.hero-section {
    background: var(--bg-brain);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-synapses);
    pointer-events: none;
    animation: neuralPulse 8s ease-in-out infinite alternate;
}

/* Animação que simula sinapses neurais */
@keyframes neuralPulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
}

/* Logo no hero */
.hero-logo {
    margin-bottom: 32px;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.hero-logo .logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5)); }
    100% { filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.8)); }
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-highlight {
    color: #ffffff !important;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}



.hero-subheadline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge:hover {
    background: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

/* Badges clicáveis */
.badge-link {
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.badge-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.badge-link:hover::before {
    left: 100%;
}

.badge-link:hover {
    background: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
    transform: translateY(-3px) scale(1.02);
}

.badge-link:active {
    transform: translateY(-1px) scale(0.98);
}

.badge-icon {
    width: 16px;
    height: 16px;
}

/* Mockup Avançado */
.mockup-container {
    perspective: 1000px;
}

.mockup-screen {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-xl), 0 0 40px rgba(139, 92, 246, 0.2);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: all 0.3s ease;
    border: 1px solid var(--border-neural);
    min-height: 600px;
}

.mockup-screen:hover {
    transform: rotateY(-2deg) rotateX(2deg);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(139, 92, 246, 0.4);
}

.mockup-header {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }

.mockup-title {
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.mockup-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.mockup-content {
    padding: 0;
    background: #f8fafc;
    height: 550px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Neural Network Visualization */
.neural-network {
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.network-nodes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.node-pulse {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--neural-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: nodePulse 3s ease-in-out infinite;
}

.node-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    animation: nodeRipple 3s ease-in-out infinite;
}

.node span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.network-connections {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 60px;
    z-index: 1;
}

.connection {
    stroke: var(--primary-color);
    stroke-width: 2;
    fill: none;
    opacity: 0.6;
}

/* Chat Simulation */
.chat-simulation {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.chat-header {
    padding: 16px 20px;
    background: white;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--neural-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.customer-details {
    display: flex;
    flex-direction: column;
}

.customer-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.customer-status {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.ai-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(139, 92, 246, 0.1);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
}

.ai-badge svg {
    width: 14px;
    height: 14px;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 350px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.3) transparent;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 2px;
}

.message {
    display: flex;
    gap: 12px;
    animation: messageSlideIn 0.5s ease-out;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-content {
    background: var(--primary-color);
    color: white;
    border-radius: 18px 18px 4px 18px;
}

.ai-message .message-content {
    background: #f1f5f9;
    color: var(--text-primary);
    border-radius: 18px 18px 18px 4px;
}

.message-content {
    max-width: 70%;
    padding: 12px 16px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.ai-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--neural-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.ai-avatar svg {
    width: 16px;
    height: 16px;
}

.ai-analysis {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.analysis-tag {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    align-self: flex-start;
}

.ai-analysis ul {
    margin: 8px 0;
    padding-left: 16px;
}

.ai-analysis li {
    margin: 4px 0;
    font-size: 0.8rem;
}

.schedule-options {
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.schedule-option {
    background: rgba(34, 211, 238, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    border-left: 3px solid var(--neural-cyan);
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-light);
    align-self: flex-end;
    margin-top: 4px;
}

.ai-thinking {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.thinking-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
}

.thinking-dots {
    display: flex;
    gap: 4px;
}

.thinking-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: thinkingDots 1.5s ease-in-out infinite;
}

.thinking-dots span:nth-child(2) { animation-delay: 0.2s; }
.thinking-dots span:nth-child(3) { animation-delay: 0.4s; }

.thinking-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Analytics Panel */
.analytics-panel {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    padding: 16px 20px;
    color: white;
}

.analytics-header h4 {
    margin: 0 0 12px 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neural-cyan);
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Animações */
@keyframes nodePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes nodeRipple {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes messageSlideIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes thinkingDots {
    0%, 60%, 100% { transform: scale(1); }
    30% { transform: scale(1.3); }
}

/* Video Section */
.video-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-synapses);
    opacity: 0.3;
    pointer-events: none;
}

.video-content {
    position: relative;
    z-index: 2;
}

.video-header {
    text-align: center;
    margin-bottom: 60px;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 40px rgba(139, 92, 246, 0.15);
    background: white;
    border: 1px solid var(--border-neural);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    box-shadow: var(--shadow-xl), 0 0 60px rgba(139, 92, 246, 0.25);
    transform: translateY(-4px);
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(139, 92, 246, 0.4));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(3px);
    opacity: 1;
    z-index: 10;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
}

.video-overlay:hover {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(139, 92, 246, 0.5));
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--neural-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    transition: all 0.3s ease;
    animation: playButtonPulse 2s ease-in-out infinite;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.7);
}

.play-button svg {
    width: 32px;
    height: 32px;
    margin-left: 4px; /* Centralizar visualmente o ícone play */
}

@keyframes playButtonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.video-preview-content {
    text-align: center;
    max-width: 400px;
}

.video-preview-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.video-preview-content p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 16px;
}

.video-sound-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-sound-indicator svg {
    width: 16px;
    height: 16px;
}

.video-cta {
    text-align: center;
    margin-top: 40px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.video-cta-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 500;
}

.video-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-neural);
    position: relative;
    overflow: hidden;
}

.video-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.video-cta-button:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--neural-purple));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.video-cta-button:hover::before {
    left: 100%;
}

.video-cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

.cta-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 64px;
    color: var(--text-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--neural-cyan), var(--neural-pink));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--border-neural);
}

.benefit-card:hover::before {
    opacity: 1;
}

/* Removi os estilos especiais para padronizar todos os cards */

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--neural-cyan));
    border-radius: 16px;
    color: white;
    box-shadow: var(--shadow-neural);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cta-info p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.scarcity-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.pulse-icon {
    width: 16px;
    height: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Form */
.form-container {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: all 0.6s ease;
    position: relative;
}

/* Efeito de destaque quando acessado via badge */
.form-container.form-highlight {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(139, 92, 246, 0.3);
    transform: scale(1.02);
}

.form-container.form-highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--neural-cyan), var(--neural-pink), var(--primary-color));
    background-size: 400% 400%;
    border-radius: var(--border-radius);
    z-index: -1;
    animation: gradientBorder 2s ease infinite;
}

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

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--neural-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    box-shadow: var(--shadow-neural);
}

.form-header-icon svg {
    width: 24px;
    height: 24px;
}

.form-header h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.field-group {
    position: relative;
}

.field-group input {
    width: 100%;
    padding: 16px 48px 16px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.field-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.field-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.field-icon svg {
    width: 18px;
    height: 18px;
}

.cta-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 18px 24px;
    border-radius: var(--border-radius-sm);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-neural);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--neural-purple));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(0);
}

.button-arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(4px);
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 16px;
}

.security-icon {
    width: 16px;
    height: 16px;
}

/* Success Section */
.success-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--secondary-color), var(--neural-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-glow);
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

.success-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.success-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.checkmark svg {
    width: 100%;
    height: 100%;
    stroke: var(--secondary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.checkmark circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark path {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

/* Footer */
.landing-footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.landing-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(34, 211, 238, 0.05) 100%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 12px;
    filter: brightness(1.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-bubble:nth-child(1) { animation-delay: 0.2s; }
.chat-bubble:nth-child(2) { animation-delay: 0.4s; }
.chat-bubble:nth-child(3) { animation-delay: 0.6s; }

/* Efeitos neurais adicionais */
@keyframes neuralNetwork {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(2px) translateY(-2px); }
    50% { transform: translateX(-1px) translateY(1px); }
    75% { transform: translateX(1px) translateY(2px); }
    100% { transform: translateX(0) translateY(0); }
}

.benefit-icon {
    animation: neuralNetwork 6s ease-in-out infinite;
}

.benefit-icon:nth-child(even) {
    animation-delay: 2s;
}

/* Efeito de conexões neurais */
.hero-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(139, 92, 246, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(34, 211, 238, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(236, 72, 153, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(139, 92, 246, 0.3), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: neuralConnections 20s linear infinite;
    opacity: 0.4;
    pointer-events: none;
}

@keyframes neuralConnections {
    0% { transform: translateX(0); }
    100% { transform: translateX(150px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .video-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-section,
    .cta-section,
    .video-section {
        padding: 80px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 24px;
    }
    
    .form-container {
        padding: 32px 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .mockup-screen {
        transform: none;
    }
    
    .mockup-screen:hover {
        transform: none;
    }
    
    /* Video responsivo */
    .video-title {
        font-size: 1.75rem;
    }
    
    .video-subtitle {
        font-size: 1rem;
    }
    
    .video-header {
        margin-bottom: 40px;
    }
    
    .video-overlay {
        /* Melhorar touch no mobile */
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        user-select: none;
        -webkit-user-select: none;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
        /* Melhorar área de toque */
        min-height: 70px;
        min-width: 70px;
    }
    
    .play-button svg {
        width: 28px;
        height: 28px;
    }
    
    .video-preview-content {
        padding: 0 16px;
        max-width: 300px;
    }
    
    .video-preview-content h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .video-preview-content p {
        font-size: 0.85rem;
        margin-bottom: 16px;
        /* Esconder o texto explicativo no tablet */
        display: none;
    }
    
    .video-sound-indicator {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .video-cta {
        padding: 24px 16px;
        margin-top: 24px;
    }
    
    .video-cta-text {
        font-size: 1rem;
    }
    
    .video-cta-button {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .video-wrapper:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-info h2 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 24px 16px;
    }
    
    .field-group input {
        padding: 14px 40px 14px 14px;
    }
    
    .cta-button {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Video limpo para mobile - apenas botão play */
    .video-overlay {
        padding: 0;
        /* Simplificar background no mobile */
        background: rgba(15, 23, 42, 0.7);
        backdrop-filter: blur(2px);
    }
    
    .play-button {
        width: 90px;
        height: 90px;
        margin-bottom: 0;
        /* Área de toque maior e mais destaque */
        min-height: 90px;
        min-width: 90px;
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.8);
    }
    
    .play-button svg {
        width: 36px;
        height: 36px;
    }
    
    /* Esconder todo o texto no mobile pequeno */
    .video-preview-content {
        display: none;
    }
}

/* Para telas muito pequenas - apenas botão play */
@media (max-width: 375px) {
    .video-overlay {
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(1px);
        /* Melhorar touch e feedback visual */
        -webkit-tap-highlight-color: rgba(139, 92, 246, 0.3);
        touch-action: manipulation;
        user-select: none;
        -webkit-user-select: none;
    }
    
    .play-button {
        width: 100px;
        height: 100px;
        /* Botão ainda maior para facilitar o toque */
        min-height: 100px;
        min-width: 100px;
        box-shadow: 0 0 50px rgba(139, 92, 246, 0.9);
        /* Animação mais suave */
        animation: playButtonPulse 3s ease-in-out infinite;
        /* Melhorar responsividade ao toque */
        -webkit-tap-highlight-color: rgba(139, 92, 246, 0.5);
        touch-action: manipulation;
        user-select: none;
        -webkit-user-select: none;
        position: relative;
        z-index: 1000;
        cursor: pointer;
    }
    
    .play-button:active {
        transform: scale(0.9);
        box-shadow: 0 0 30px rgba(139, 92, 246, 1);
    }
    
    .play-button svg {
        width: 40px;
        height: 40px;
        pointer-events: none;
    }
    
    /* Adicionar indicador visual de que é interativo */
    .play-button::before {
        content: '';
        position: absolute;
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        border: 2px solid rgba(139, 92, 246, 0.4);
        border-radius: 50%;
        animation: buttonPulse 2s infinite ease-in-out;
    }
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}
