@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    /* Colors */
    --bg-dark: #070913;
    --bg-darker: #04050a;
    --bg-surface: rgba(13, 17, 33, 0.7);
    --bg-surface-hover: rgba(22, 28, 54, 0.8);
    
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --primary-dark: #5b21b6;
    --primary-glow: rgba(124, 58, 237, 0.15);
    
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    --whatsapp-glow: rgba(37, 211, 102, 0.15);
    
    --cyan: #06b6d4;
    --cyan-glow: rgba(6, 182, 212, 0.15);
    
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #1f2937;
    
    --border-light: rgba(255, 255, 255, 0.08);
    --border-focus: rgba(124, 58, 237, 0.5);
    
    /* Gradients */
    --gradient-text: linear-gradient(135deg, #ffffff 30%, #a78bfa 100%);
    --gradient-accent: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    --gradient-wa: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    --gradient-dark: linear-gradient(180deg, #0b0f19 0%, #070913 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.25);
    
    /* Layout */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   BASE & RESET
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    background-image: var(--gradient-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: #1f293d;
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================
   LAYOUT & UTILITIES
   ========================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-bg-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.badge-whatsapp {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.2);
    color: var(--whatsapp);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5), 0 0 15px rgba(6, 182, 212, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--gradient-wa);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(7, 9, 19, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--whatsapp);
    border-radius: var(--radius-full);
    display: inline-block;
    box-shadow: 0 0 10px var(--whatsapp);
}

.logo-img {
    height: 36px;
    width: auto;
    transition: var(--transition);
    display: block;
}

.logo-img:hover {
    opacity: 0.85;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: var(--primary-light);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    overflow: hidden;
    position: relative;
}

.hero-glow-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    color: var(--whatsapp);
    font-size: 1.25rem;
}

.trust-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 8px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3) 0%, rgba(6, 182, 212, 0.1) 100%);
    box-shadow: var(--shadow-glow), 0 30px 60px rgba(0, 0, 0, 0.6);
    animation: float 6s ease-in-out infinite;
}

.hero-image-wrapper img {
    border-radius: calc(var(--radius-lg) - 6px);
    display: block;
    width: 100%;
}

/* Floating badges for Hero */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(13, 17, 33, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 20;
}

.fb-1 {
    top: 15%;
    left: -15%;
    animation: float-reverse 7s ease-in-out infinite;
}

.fb-2 {
    bottom: 15%;
    right: -10%;
    animation: float 8s ease-in-out infinite;
}

.fb-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1rem;
}

.fb-icon.wa {
    background: rgba(37, 211, 102, 0.2);
    color: var(--whatsapp);
}

.fb-text h4 {
    font-size: 0.85rem;
    font-weight: 700;
}

.fb-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats {
    padding: 60px 0;
    background: rgba(4, 5, 10, 0.4);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-card h3 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================
   INTEGRATIONS / OMNICHANNEL
   ========================================== */
.integrations {
    text-align: center;
    padding-bottom: 80px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.channel-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.channel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 36px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    cursor: pointer;
    min-width: 150px;
}

.channel-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.1);
}

.channel-icon {
    font-size: 2.2rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.channel-card:hover .channel-icon {
    color: #ffffff;
}

.channel-card.active-wa:hover {
    border-color: var(--whatsapp);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.1);
}
.channel-card.active-wa:hover .channel-icon {
    color: var(--whatsapp);
}

.channel-card.active-ig:hover {
    border-color: #d62976;
    box-shadow: 0 10px 25px rgba(214, 41, 118, 0.1);
}
.channel-card.active-ig:hover .channel-icon {
    color: #d62976;
}

.channel-card.active-ms:hover {
    border-color: #0084ff;
    box-shadow: 0 10px 25px rgba(0, 132, 255, 0.1);
}
.channel-card.active-ms:hover .channel-icon {
    color: #0084ff;
}

.channel-card.active-tg:hover {
    border-color: #229ed9;
    box-shadow: 0 10px 25px rgba(34, 158, 217, 0.1);
}
.channel-card.active-tg:hover .channel-icon {
    color: #229ed9;
}

.channel-name {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

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

.feature-icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(124, 58, 237, 0.07);
    border: 1px solid rgba(124, 58, 237, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.5rem;
    margin-bottom: 28px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-box {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 0 15px var(--primary);
    border-color: transparent;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.6;
}

/* ==========================================
   INTERACTIVE DEMO SECTION (THE HERO FEATURE)
   ========================================== */
.demo-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 40px;
}

.demo-title-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.02);
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

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

.demo-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #ffffff;
}

.demo-avatar.wa {
    background: var(--whatsapp-dark);
}

.demo-status {
    font-size: 0.85rem;
    font-weight: 600;
}

.demo-status span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    font-weight: 400;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--whatsapp);
}

/* Simulated WhatsApp Interface (Left) */
.whatsapp-sim {
    display: flex;
    flex-direction: column;
    height: 520px;
}

.chat-window {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
}

.chat-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    position: relative;
    line-height: 1.4;
    animation: slideUp 0.3s ease forwards;
}

.bubble-received {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border-bottom-left-radius: 4px;
    color: var(--text-main);
}

.bubble-sent {
    align-self: flex-end;
    background: #056162;
    border-bottom-right-radius: 4px;
    color: #ffffff;
}

.bubble-time {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.typing-indicator {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    border-bottom-left-radius: 4px;
    display: none;
    gap: 4px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

.chat-options {
    padding: 12px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid var(--border-light);
    background: rgba(0, 0, 0, 0.1);
}

.option-btn {
    padding: 8px 16px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.option-btn:hover {
    background: var(--primary);
    color: #ffffff;
}

.chat-input-area {
    padding: 16px 20px;
    display: flex;
    gap: 12px;
    align-items: center;
    border-top: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.01);
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    padding: 12px 16px;
    border-radius: var(--radius-full);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.chat-input:focus {
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.08);
}

.chat-send-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--whatsapp-dark);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.chat-send-btn:hover {
    background: var(--whatsapp);
    transform: scale(1.05);
}

/* Simulated CRM Panel (Right) */
.crm-sim {
    display: flex;
    flex-direction: column;
    height: 520px;
}

.crm-workspace {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}

.crm-header-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.crm-lead-title h4 {
    font-size: 1.05rem;
    font-weight: 700;
}

.crm-lead-title p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.crm-badge {
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.crm-badge-active {
    background: rgba(6, 182, 212, 0.15);
    color: var(--cyan);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.crm-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.crm-detail-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 14px;
}

.crm-detail-item label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.crm-detail-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.ai-copilot-box {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: auto;
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.ai-suggested-reply {
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    border-left: 3px solid var(--primary-light);
    margin-bottom: 12px;
    font-style: italic;
}

.ai-actions {
    display: flex;
    gap: 8px;
}

.btn-mini {
    padding: 6px 12px;
    font-size: 0.75rem;
    border-radius: var(--radius-sm);
}

/* Kanban Simulator Sub-component */
.kanban-preview-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 14px;
}

.kanban-preview-box label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.mini-kanban-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.mini-kanban-col {
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-sm);
    padding: 6px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.mini-kanban-col.active-col {
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(124, 58, 237, 0.03);
}

.col-header-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2px;
}

.mini-kanban-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 8px;
    font-size: 0.75rem;
    cursor: grab;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.mini-kanban-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.mini-kanban-card h5 {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.mini-kanban-card span {
    font-size: 0.65rem;
    color: var(--whatsapp);
    font-weight: 600;
}

/* CRM Mockup Panel (Right) */
.crm-mockup-panel {
    display: flex;
    flex-direction: column;
    height: 520px;
    overflow: hidden;
    background: var(--bg-surface);
}

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

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red {
    background-color: #ff5f56;
}

.dot-yellow {
    background-color: #ffbd2e;
}

.dot-green {
    background-color: #27c93f;
}

.crm-mockup-content {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #090a0f; /* Matches the dark aesthetic of the Kanban board */
    padding: 12px;
    position: relative;
    user-select: none;
}

/* Kanban Statistics Row */
.kanban-stats-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-bottom: 12px;
}

.kanban-stat-box {
    background: #14151b;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    padding: 6px 4px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.kanban-stat-box .stat-value {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.kanban-stat-box .stat-value .stat-sub {
    font-size: 0.6rem;
    font-weight: normal;
    opacity: 0.8;
}

.kanban-stat-box .stat-label {
    font-size: 0.52rem;
    color: #64748b;
    font-weight: 700;
    margin-top: 2px;
    letter-spacing: 0.02em;
}

/* Columns Scroll Wrapper */
.kanban-columns-scroll {
    flex: 1;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
}

/* Scrollbar Customization for Columns */
.kanban-columns-scroll::-webkit-scrollbar {
    height: 6px;
}

.kanban-columns-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.kanban-columns-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.kanban-columns-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Kanban Board Column */
.kanban-board-column {
    min-width: 156px;
    width: 156px;
    flex-shrink: 0;
    background: #0f1015;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    border-top: 3px solid #ccc;
    border-left: 1px solid rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 8px;
}

.kanban-board-column .column-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 8px;
    padding: 2px;
}

.kanban-board-column .column-title i {
    color: #64748b;
    cursor: pointer;
    font-size: 0.65rem;
    transition: var(--transition);
}

.kanban-board-column .column-title i:hover {
    color: #ffffff;
}

.kanban-board-column .column-cards {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 2px;
}

/* Scrollbar for Column Cards */
.kanban-board-column .column-cards::-webkit-scrollbar {
    width: 4px;
}

.kanban-board-column .column-cards::-webkit-scrollbar-track {
    background: transparent;
}

.kanban-board-column .column-cards::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.kanban-board-column .column-cards::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Kanban Deal Card */
.kanban-deal-card {
    background: #15161c;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.25s ease-in-out;
}

.kanban-deal-card:hover {
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.kanban-deal-card .deal-title {
    font-size: 0.68rem;
    font-weight: bold;
    color: #e2e8f0;
    line-height: 1.3;
}

.kanban-deal-card .deal-value {
    font-size: 0.68rem;
    font-weight: 700;
    color: #fbbf24; /* Gold price tag style */
    margin-top: 2px;
}

.kanban-deal-card .deal-user {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.6rem;
    color: #94a3b8;
    margin-top: 2px;
}

.kanban-deal-card .user-avatar {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: bold;
}

.kanban-deal-card .deal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-top: 2px;
}

.kanban-deal-card .tag-badge {
    font-size: 0.5rem;
    padding: 1px 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.04);
    color: #94a3b8;
    font-weight: bold;
}

.kanban-deal-card .tag-badge.badge-purple {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.kanban-deal-card .alert-date {
    font-size: 0.55rem;
    color: #f87171;
    background: rgba(248, 113, 113, 0.08);
    padding: 2px 4px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 2px;
}

.kanban-deal-card .deal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 4px;
}

.kanban-deal-card .owner {
    font-size: 0.6rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 3px;
}

.kanban-deal-card .card-icons {
    display: flex;
    gap: 5px;
    font-size: 0.58rem;
    color: #64748b;
}

/* ==========================================
   SOLUTIONS BY SEGMENT
   ========================================== */
.solutions-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.solutions-content {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    animation: fadeIn 0.5s ease forwards;
}

.solution-details h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.solution-details p {
    color: var(--text-muted);
    margin-bottom: 28px;
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solution-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.solution-list-item i {
    color: var(--whatsapp);
}

.solution-visual {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.solution-mock-chat {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solution-mock-header {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.toggle-label {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    cursor: pointer;
}

.toggle-label.active {
    color: #ffffff;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid var(--border-light);
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(28px);
}

.discount-badge {
    background: var(--whatsapp-dark);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
}

.pricing-card.popular {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(6, 182, 212, 0.02) 100%);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
}

.pricing-card.popular::after {
    content: 'MAIS VENDIDO';
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.pricing-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 28px;
}

.pricing-price {
    margin-bottom: 36px;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    vertical-align: super;
}

.price-val {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    flex: 1;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.pricing-feature-item i {
    font-size: 1rem;
}

.pricing-feature-item.included i {
    color: var(--whatsapp);
}

.pricing-feature-item.excluded {
    color: var(--text-muted);
    opacity: 0.5;
}

.pricing-feature-item.excluded i {
    color: var(--text-muted);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
    border-color: var(--primary-light);
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    transition: var(--transition);
}

.faq-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-muted);
}

.faq-item.active .faq-icon-box {
    background: var(--primary);
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content-inner {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta {
    position: relative;
    overflow: hidden;
}

.cta-banner {
    padding: 80px 60px;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 100% 100%, rgba(6, 182, 212, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 0% 0%, rgba(124, 58, 237, 0.2) 0%, transparent 60%),
                var(--bg-surface);
    border: 1px solid var(--border-light);
    text-align: center;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-light);
    padding: 80px 0 40px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-col p {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.social-link:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--text-muted);
}

.footer-link:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-contact-item i {
    color: var(--whatsapp);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes float-reverse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(15px); }
}

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

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

@keyframes typing {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-6px); opacity: 1; }
}

/* ==========================================
   RESPONSIVENESS / MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .floating-badge {
        display: none; /* Hide floating badges on mobile/tablet to avoid overflow issues */
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .demo-showcase {
        grid-template-columns: 1fr;
    }
    
    .solution-panel {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .header {
        padding: 16px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-darker);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 60px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav.open {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner {
        padding: 40px 20px;
    }
    
    .cta-banner h2 {
        font-size: 2.2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ==========================================
   PARTNERSHIP PAGE STYLES
   ========================================== */

.partner-hero {
    padding-top: 180px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.partner-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.commission-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.com-badge {
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--primary-light);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.1);
}

.com-badge.setup {
    background: rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
    color: var(--cyan);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    padding: 30px;
    border-radius: var(--radius-md);
    background: rgba(13, 17, 33, 0.4);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
    background: rgba(13, 17, 33, 0.6);
}

.benefit-card i {
    font-size: 2rem;
    margin-bottom: 20px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Simulator styling */
.simulator-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 40px;
}

.simulator-controls {
    padding: 40px;
}

.simulator-results {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-left: 2px solid rgba(124, 58, 237, 0.1);
}

.sim-input-wrapper {
    margin-bottom: 30px;
}

.sim-input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
}

.sim-input-header label {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #ffffff;
}

.sim-val-display {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-light);
    font-weight: 700;
    background: rgba(124, 58, 237, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.sim-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: var(--radius-full);
    background: #1e293b;
    outline: none;
    transition: var(--transition);
}

.sim-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-light);
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
    transition: var(--transition);
}

.sim-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: #ffffff;
    box-shadow: 0 0 15px var(--primary-light);
}

.sim-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-light);
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
    transition: var(--transition);
}

.sim-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: #ffffff;
    box-shadow: 0 0 15px var(--primary-light);
}

.result-card-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.res-box {
    padding: 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
}

.res-box.highlight {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.1);
}

.res-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.res-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
}

.res-box.highlight .res-value {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.res-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Form Styles */
.registration-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 40px;
}

.partner-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
}

.form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--border-focus);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px var(--primary-glow);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-select option {
    background: var(--bg-dark);
    color: #ffffff;
}

/* Success Modal / Box */
.success-box {
    display: none;
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease;
}

.success-box i {
    font-size: 4rem;
    color: var(--whatsapp);
    margin-bottom: 20px;
}

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

/* Media Queries for Parceria */
@media (max-width: 992px) {
    .partner-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .simulator-layout {
        grid-template-columns: 1fr;
    }
    
    .simulator-results {
        border-left: none;
        border-top: 2px solid rgba(124, 58, 237, 0.1);
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
