/* ===================================
   AUTOMATIZAI LANDING PAGE STYLES
   Dark Tech Corporate Design
   =================================== */

/* ===================================
   RESET & BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-black: #000000;
    --color-dark: #050505;
    --color-dark-gray: #0A0A0A;
    --color-purple: #A855F7;
    --color-purple-dark: #7C3AED;
    --color-green: #10B981;
    --color-white: #FFFFFF;
    --color-gray-light: #E0E0E0;
    --color-gray-medium: #9CA3AF;
    --color-gray-dark: #4B5563;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 64px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-purple: 0 8px 24px rgba(168, 85, 247, 0.3);
    --shadow-purple-lg: 0 20px 40px rgba(168, 85, 247, 0.4);
    --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.4);
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--color-black);

    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   BACKGROUND ELEMENTS
   =================================== */
.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-purple {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-purple) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-green {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-green) 0%, transparent 70%);
    bottom: 10%;
    right: 15%;
    animation-delay: -10s;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(var(--color-dark-gray) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-dark-gray) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
    transition: background var(--transition-normal);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

.logo-accent {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--color-gray-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-menu a:hover {
    color: var(--color-white);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-purple);
    transition: width var(--transition-normal);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-dark) 100%);
    padding: 10px 24px !important;
    border-radius: 6px;
    color: var(--color-white) !important;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-fast);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 10;
    padding-top: 80px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ===================================
   HERO CONTENT
   =================================== */
.hero-content {
    max-width: 650px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-gray-light);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--color-white);
    font-weight: 600;
}

/* ===================================
   CTA BUTTON
   =================================== */
.hero-cta {
    margin-bottom: 40px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-dark) 100%);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-purple);
    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::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-purple-lg);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary svg {
    position: relative;
    z-index: 1;
    transition: transform var(--transition-fast);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.cta-microcopy {
    margin-top: 12px;
    font-size: 14px;
    color: var(--color-gray-medium);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-microcopy .dot {
    color: var(--color-gray-dark);
}

/* ===================================
   TRUST BADGES
   =================================== */
.trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 13px;
    color: var(--color-gray-light);
    transition: all var(--transition-fast);
}

.badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-purple);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 16px;
}

/* ===================================
   HERO VISUAL
   =================================== */
.hero-visual {
    position: relative;
    height: 600px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Dashboard Mockup */
.dashboard-mockup {
    position: relative;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mockup-header {
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-dots {
    display: flex;
    gap: 6px;
}

.header-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gray-dark);
}

.header-dots span:nth-child(1) {
    background: #EF4444;
}

.header-dots span:nth-child(2) {
    background: #F59E0B;
}

.header-dots span:nth-child(3) {
    background: var(--color-green);
}

.header-title {
    font-size: 14px;
    color: var(--color-gray-medium);
    font-weight: 500;
}

.mockup-content {
    padding: 24px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.stat-card {
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    background: rgba(168, 85, 247, 0.1);
    transform: translateY(-4px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-icon.purple {
    background: rgba(168, 85, 247, 0.2);
}

.stat-icon.green {
    background: rgba(16, 185, 129, 0.2);
}

.stat-info {
    flex: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--color-gray-medium);
    margin-bottom: 4px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
}

.stat-trend {
    font-size: 14px;
    font-weight: 600;
}

.stat-trend.positive {
    color: var(--color-green);
}

/* Chat Preview */
.chat-preview {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.chat-message {
    margin-bottom: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 80%;
}

.chat-message.user {
    background: rgba(168, 85, 247, 0.15);
    margin-left: auto;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.chat-message.bot {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-purple);
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    60%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    30% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Activity Feed */
.activity-feed {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
}

.activity-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.activity-text p {
    font-size: 14px;
    margin-bottom: 4px;
}

.activity-text span {
    font-size: 12px;
    color: var(--color-gray-medium);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    animation: float-gentle 6s ease-in-out infinite;
}

.float-1 {
    top: -20px;
    right: -40px;
    animation-delay: 0s;
}

.float-2 {
    bottom: 40px;
    left: -120px;
    animation-delay: -3s;
}

@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

.notification-card {
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid var(--color-purple);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(10px);
    min-width: 220px;
}

.notif-icon {
    font-size: 24px;
}

.notif-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.notif-desc {
    font-size: 12px;
    color: var(--color-gray-light);
}

.metric-card {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--color-green);
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
}

.metric-label {
    font-size: 12px;
    color: var(--color-gray-light);
    margin-bottom: 8px;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-green);
}

/* Neural Network */
.neural-network {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: -1;
}

.node {
    fill: var(--color-purple);
    animation: pulse-node 3s ease-in-out infinite;
}

.node:nth-child(even) {
    animation-delay: -1.5s;
}

.connection {
    stroke: var(--color-purple);
    stroke-width: 1;
    opacity: 0.3;
}

@keyframes pulse-node {

    0%,
    100% {
        r: 4;
        opacity: 0.5;
    }

    50% {
        r: 6;
        opacity: 1;
    }
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ===================================
   SECTION COMMONS
   =================================== */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.text-red {
    color: #EF4444;
}

.section-subtitle {
    font-size: 20px;
    color: var(--color-gray-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===================================
   PAIN SECTION - CALCULADORA DE PREJUÍZO
   =================================== */
.pain-section {
    position: relative;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-dark) 50%, var(--color-black) 100%);
    z-index: 10;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.pain-card {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #EF4444, transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.pain-card:hover::before {
    opacity: 1;
}

.pain-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
}

.pain-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.pain-icon svg {
    animation: pulse-warning 2s ease-in-out infinite;
}

@keyframes pulse-warning {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.pain-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-white);
}

.pain-description {
    font-size: 16px;
    color: var(--color-gray-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.pain-description strong {
    color: #EF4444;
    font-weight: 600;
}

.pain-stat {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-display);
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: var(--color-gray-medium);
}

/* Pain Footer - Calculator */
.pain-footer {
    display: flex;
    justify-content: center;
}

.calculator-box {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 32px 48px;
    text-align: center;
    max-width: 600px;
}

.calculator-label {
    font-size: 16px;
    color: var(--color-gray-light);
    margin-bottom: 20px;
}

.calculator-label strong {
    color: var(--color-white);
    font-weight: 600;
}

.calculator-result {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.loss-amount {
    font-size: 56px;
    font-weight: 900;
    font-family: var(--font-display);
    color: #EF4444;
    text-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
}

.loss-period {
    font-size: 18px;
    color: var(--color-gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   SOLUTION SECTION - AGENTES ESPECIALISTAS
   =================================== */
.solution-section {
    position: relative;
    background: var(--color-black);
    z-index: 10;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.agent-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.agent-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-green) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.agent-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(168, 85, 247, 0.3);
}

.agent-card:hover::before {
    opacity: 1;
}

/* Featured Card */
.agent-card.featured {
    border-color: var(--color-purple);
    background: rgba(168, 85, 247, 0.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 32px;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-dark) 100%);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

.agent-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 16px;
    margin-bottom: 24px;
    width: fit-content;
}

.badge-emoji {
    font-size: 20px;
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-light);
}

.agent-name {
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-display);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agent-tagline {
    font-size: 15px;
    color: var(--color-gray-medium);
    margin-bottom: 32px;
    font-style: italic;
}

.agent-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.agent-features li {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.agent-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.agent-features li span {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-gray-light);
}

.agent-features li strong {
    color: var(--color-white);
    font-weight: 600;
}

.agent-result {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-metric {
    text-align: center;
}

.result-metric .metric-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.result-metric .metric-label {
    font-size: 12px;
    color: var(--color-gray-medium);
}

.agent-cta {
    width: 100%;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-dark) 100%);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
}

.agent-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.5);
}

.agent-cta svg {
    transition: transform var(--transition-fast);
}

.agent-cta:hover svg {
    transform: translateX(4px);
}

.solution-footer {
    text-align: center;
}

.footer-note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    padding: 20px 32px;
    font-size: 15px;
    color: var(--color-gray-light);
}

.footer-note svg {
    flex-shrink: 0;
}

/* ===================================
   SHOWROOM SECTION - O DESAFIO
   =================================== */
.showroom-section {
    position: relative;
    background: linear-gradient(180deg, var(--color-black) 0%, #0A0520 100%);
    overflow: hidden;
    z-index: 10;
}

.showroom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showroom-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid var(--color-purple);
    border-radius: 20px;
    padding: 8px 20px;
    margin-bottom: 32px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-icon {
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.showroom-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.challenge-text {
    display: block;
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

.showroom-description {
    font-size: 18px;
    color: var(--color-gray-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.showroom-description strong {
    color: var(--color-purple);
    font-weight: 700;
}

.challenge-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.challenge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.challenge-item:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--color-purple);
    transform: translateX(8px);
}

.challenge-emoji {
    font-size: 24px;
}

.challenge-item p {
    font-size: 14px;
    color: var(--color-gray-light);
    font-weight: 500;
}

/* WhatsApp CTA Button */
.showroom-cta-wrapper {
    text-align: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--color-white);
    text-decoration: none;
    padding: 24px 48px;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 700;
    transition: all var(--transition-normal);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #25D366, #128C7E, #25D366);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
    transition: opacity var(--transition-normal);
}

.btn-whatsapp:hover::before {
    opacity: 1;
}

.btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp svg {
    flex-shrink: 0;
    animation: bounce 2s ease-in-out infinite;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.btn-main {
    font-size: 20px;
    font-weight: 700;
}

.btn-sub {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

.showroom-disclaimer {
    margin-top: 16px;
    font-size: 14px;
    color: var(--color-gray-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Phone Mockup */
.showroom-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    filter: drop-shadow(0 20px 60px rgba(168, 85, 247, 0.3));
}

.phone-frame {
    width: 300px;
    height: 520px;
    background: #1E1E1E;
    border-radius: 40px;
    padding: 12px;
    border: 8px solid #0A0A0A;
    position: relative;
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.3);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: #0A0A0A;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0D1418;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

/* WhatsApp Interface */
.whatsapp-header {
    background: #1F2C34;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.contact-details {
    flex: 1;
}

.contact-name {
    font-size: 15px;
    font-weight: 600;
    color: #E9EDEF;
    margin-bottom: 2px;
}

.contact-status {
    font-size: 12px;
    color: #8696A0;
}

.whatsapp-chat {
    padding: 16px;
    background: #0D1418;
    height: calc(100% - 76px);
    overflow-y: auto;
}

.message {
    max-width: 75%;
    margin-bottom: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
    position: relative;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.received {
    background: #1F2C34;
    color: #E9EDEF;
    border-radius: 0 8px 8px 8px;
    margin-right: auto;
}

.message.sent {
    background: #005C4B;
    color: #E9EDEF;
    border-radius: 8px 0 8px 8px;
    margin-left: auto;
}

.message .time {
    font-size: 10px;
    color: #8696A0;
    margin-top: 4px;
    display: block;
    text-align: right;
}

.typing-indicator-whatsapp {
    display: flex;
    gap: 4px;
    padding: 12px;
    background: #1F2C34;
    border-radius: 8px;
    width: fit-content;
}

.typing-indicator-whatsapp span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8696A0;
    animation: typing 1.4s infinite;
}

.typing-indicator-whatsapp span:nth-child(1) {
    animation-delay: 0s;
}

.typing-indicator-whatsapp span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator-whatsapp span:nth-child(3) {
    animation-delay: 0.4s;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--color-black);
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--color-gray-medium);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--color-gray-light);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-purple);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), transparent);
    margin-bottom: 32px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 13px;
    color: var(--color-gray-medium);
}

.footer-tech {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-label {
    font-size: 12px;
    color: var(--color-gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-badges {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-gray-light);
    font-weight: 600;
}

.tech-badge svg {
    flex-shrink: 0;
}

.tech-divider {
    color: var(--color-gray-dark);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-visual {
        height: 500px;
    }

    .section-container {
        padding: 80px 32px;
    }

    .section-title {
        font-size: 40px;
    }

    .pain-grid,
    .agents-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .calculator-box {
        padding: 24px 32px;
    }

    .loss-amount {
        font-size: 48px;
    }

    .showroom-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .phone-mockup {
        transform: scale(0.9);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 24px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-container {
        padding: 0 24px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 16px 32px;
    }

    .trust-badges {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .float-1,
    .float-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .mockup-content {
        padding: 16px;
    }

    .stat-value {
        font-size: 20px;
    }

    .section-container {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .pain-card,
    .agent-card {
        padding: 32px 24px;
    }

    .calculator-box {
        padding: 20px 24px;
    }

    .loss-amount {
        font-size: 36px;
    }

    .showroom-container {
        padding: 40px 24px;
    }

    .showroom-title {
        font-size: 28px;
    }

    .challenge-box {
        grid-template-columns: 1fr;
    }

    .btn-whatsapp {
        flex-direction: column;
        gap: 12px;
        padding: 20px 32px;
        font-size: 16px;
    }

    .btn-text {
        align-items: center;
        text-align: center;
    }

    .btn-main {
        font-size: 18px;
    }

    .phone-mockup {
        transform: scale(0.65);
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}