/* ==========================================================================
   RESET WORLD TECNOLOGIA (RWT) - Premium Design System
   ========================================================================== */

/* --- Variáveis Globais --- */
:root {
    /* Cores Principais */
    --bg-dark: #050505;
    --bg-darker: #020202;
    --bg-surface: rgba(20, 20, 25, 0.6);
    --bg-surface-hover: rgba(30, 30, 40, 0.8);

    --text-primary: #FFFFFF;
    --text-secondary: #A0A0AB;
    --text-muted: #60606A;

    /* Cores de Destaque */
    --neon-cyan: #00F5FF;
    --neon-cyan-dim: rgba(0, 245, 255, 0.2);
    --electric-purple: #7B61FF;
    --electric-purple-dim: rgba(123, 97, 255, 0.2);

    /* Gradientes Corporativos mais suaves */
    --grad-primary: linear-gradient(135deg, #6B5BFF 0%, #00D2FF 100%);
    --grad-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);

    /* Tipografia */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Efeitos */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-glow-cyan: 0 0 20px rgba(0, 245, 255, 0.4), 0 0 40px rgba(0, 245, 255, 0.1);
    --shadow-glow-purple: 0 0 20px rgba(123, 97, 255, 0.4), 0 0 40px rgba(123, 97, 255, 0.1);
    --glass-blur: blur(12px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Reset e Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Cursor Customizado */
@media (pointer: fine) {
    body {
        cursor: none;
    }

    .cursor-dot {
        position: fixed;
        top: 0;
        left: 0;
        width: 8px;
        height: 8px;
        background-color: var(--neon-cyan);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, background-color 0.2s;
    }

    .cursor-outline {
        position: fixed;
        top: 0;
        left: 0;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(0, 245, 255, 0.4);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, border-color 0.2s;
    }

    /* Efeitos de hover no cursor adicionados via JS */
    body.cursor-hover .cursor-dot {
        transform: translate(-50%, -50%) scale(1.5);
        background-color: transparent;
    }

    body.cursor-hover .cursor-outline {
        transform: translate(-50%, -50%) scale(1.5);
        border-color: var(--electric-purple);
        background-color: rgba(123, 97, 255, 0.1);
        backdrop-filter: blur(2px);
    }
}

/* --- Tipografia Global --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.text-glow {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.text-glow::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: blur(12px);
    opacity: 0.6;
    z-index: -1;
}

/* Layout Útil */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

/* --- Botões --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-heading);
    border-radius: 4px;
    /* Mais executivo, menos arredondado */
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--bg-dark);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* O gradiente vai no pseudo-elemento para hover */
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-primary);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow-glow-purple);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid transparent;
}

.btn-secondary:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* --- Header / Navegação --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    padding: 24px 0;
}

.header.scrolled {
    padding: 16px 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: var(--glass-blur);
    border-bottom: var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.brand-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
}

/* Remove fundo preto do logo automaticamente */
.blend-logo {
    mix-blend-mode: screen;
    filter: brightness(1.1) contrast(1.1);
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 16px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    color: #FFF;
    line-height: 1.1;
}

.executive-slogan {
    font-size: 0.6rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-top: 4px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    /* offset para header fixo */
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at 50% 50%, #0a0a0d 0%, var(--bg-darked) 100%);
}

.ambient-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: 1;
    animation: float 20s ease-in-out infinite alternate;
}

.ambient-light.main-light {
    width: 600px;
    height: 600px;
    background: var(--electric-purple);
    top: -100px;
    right: -100px;
}

.ambient-light.accent-light {
    width: 400px;
    height: 400px;
    background: var(--neon-cyan);
    bottom: -50px;
    left: -100px;
    animation-delay: -5s;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 24px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 48px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
}

.trust-bar {
    width: 100%;
    border-top: var(--glass-border);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.trust-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 1.125rem;
    opacity: 0.5;
    transition: var(--transition-smooth);
    filter: grayscale(100%);
}

.brand-item:hover {
    opacity: 1;
    color: var(--text-primary);
    filter: grayscale(0%);
    text-shadow: var(--shadow-glow-cyan);
}

/* --- Tipografia Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -50px) scale(1.1);
    }
}

/* Responsividade Mobile-first ajustada top-down */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(10px);
        padding: 24px;
        gap: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active {
        display: flex;
        animation: fadeInDown 0.3s ease-out;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .menu-toggle {
        display: block;
        color: var(--neon-cyan);
    }

    .nav-actions .btn {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .trust-logos {
        gap: 24px;
    }
}

/* --- Global Elements & Glassmorphism --- */
.glass-panel {
    background: var(--bg-surface);
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    background: var(--bg-surface-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--electric-purple-dim);
    border: 1px solid rgba(123, 97, 255, 0.3);
    color: #e5ccff;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* --- 2. Authority Section --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.3));
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
}

/* --- 3. Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--electric-purple);
    margin-bottom: 24px;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- 4. Differential Section --- */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.align-center {
    align-items: center;
}

.diff-list {
    list-style: none;
    margin-top: 40px;
}

.diff-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.diff-icon {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-top: 4px;
}

.diff-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.diff-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Compare Table */
.diff-visual {
    padding: 0;
    overflow: hidden;
}

.compare-row {
    display: flex;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-row:last-child {
    border-bottom: none;
}

.header-row {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.col {
    flex: 1;
}

.col-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.mercado {
    color: #cf6679;
    text-decoration: line-through;
    opacity: 0.7;
}

.rwt {
    font-weight: 700;
    color: var(--neon-cyan);
}

.highlight {
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

/* --- 5. Showcase --- */
.mockup-container {
    perspective: 1000px;
}

.mockup-screen {
    background: #0d0d12;
    padding: 0;
    border: 1px solid rgba(123, 97, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(123, 97, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transform: rotateX(2deg) rotateY(-2deg);
    transition: transform 0.8s ease;
}

.mockup-screen:hover {
    transform: rotateX(0) rotateY(0);
}

.mockup-header {
    background: #1a1a24;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dots {
    display: flex;
    gap: 8px;
    margin-right: 20px;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
}

.dots span:nth-child(1) {
    background: #ff5f56;
}

.dots span:nth-child(2) {
    background: #ffbd2e;
}

.dots span:nth-child(3) {
    background: #27c93f;
}

.url-bar {
    background: #0a0a0d;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    flex-grow: 1;
    text-align: center;
}

.mockup-body {
    padding: 32px;
    min-height: 400px;
}

.dash-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.dash-chart {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    height: 200px;
    grid-column: 1 / 2;
    position: relative;
    overflow: hidden;
}

.pulse-anim::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, rgba(0, 245, 255, 0.2) 0%, transparent 100%);
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.dash-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.dash-stat-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    flex: 1;
    min-height: 80px;
}

.dash-terminal {
    background: #000;
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 8px;
    padding: 16px;
    font-family: monospace;
    font-size: 0.85rem;
    grid-column: 1 / 2;
}

.term-line {
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.term-line.success {
    color: var(--neon-cyan);
}

/* --- 6. Process Section --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--electric-purple), var(--neon-cyan));
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-left: 72px;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    background: var(--bg-dark);
    border: 2px solid var(--electric-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--neon-cyan);
    font-family: var(--font-heading);
    box-shadow: 0 0 15px rgba(123, 97, 255, 0.4);
    z-index: 2;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- 7. CTA Section --- */
.cta-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: linear-gradient(145deg, rgba(20, 20, 25, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
    border: 1px solid rgba(123, 97, 255, 0.3);
}

.cta-benefits {
    list-style: none;
    margin-top: 32px;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.cta-benefits i {
    color: var(--neon-cyan);
    font-size: 1.25rem;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.1);
}

.full-width {
    width: 100%;
}

/* --- 8. Footer --- */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 32px;
    background: var(--bg-darker);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 80px;
}

.brand-col .footer-desc {
    margin-top: 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 24px;
    color: #fff;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--neon-cyan);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    font-size: 1.5rem;
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 24px;
}

/* Responsividade adicional */
@media (max-width: 992px) {
    .grid-2-col {
        grid-template-columns: 1fr;
    }

    .cta-box {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Grid de serviços forçando 1 coluna no mobile */
    .services-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    /* Processo (Timeline) no mobile - quebra elegante */
    .timeline::before {
        left: 20px;
    }

    .timeline-dot {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        left: 0;
    }

    .timeline-item {
        padding-left: 60px;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Ajustes para o Mockup/Finance System para o mobile não estourar */
    .mockup-window {
        border-radius: 8px;
    }

    .fin-main-content {
        padding: 16px;
    }

    .fin-balance-row {
        grid-template-columns: 1fr;
    }

    .fin-middle-row {
        grid-template-columns: 1fr;
    }

    .fin-sidebar {
        display: none;
    }
}

/* --- Cinematic AI Images & Parallax Effects --- */

.cinematic-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.4;
    animation: cinematicZoom 30s linear infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.7) 0%, rgba(5, 5, 5, 0.9) 100%);
    z-index: 1;
}

.hero-bg-fx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* About Section */
.image-wrapper.cinematic-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    border: 1px solid rgba(123, 97, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cinematic-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-wrapper.cinematic-wrapper:hover .cinematic-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.2) 100%);
    pointer-events: none;
}

.badge-float {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(20, 20, 25, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--neon-cyan);
    animation: float 6s ease-in-out infinite alternate;
}

/* CTA Section Override */
.cinematic-cta {
    position: relative;
    overflow: hidden;
    padding: 160px 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.6) 100%);
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 2;
}

@keyframes cinematicZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* --- Google Ads Style Dashboard --- */
.mockup-body-ads {
    padding: 0;
    background: #121124;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

/* ==========================================================================
   NEXUS DATA CORE DASHBOARD
   ========================================================================== */
.mockup-body-nexus {
    background: #020205; /* Blacker background for the glassmorphism to pop */
    border-radius: 0 0 12px 12px;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

.nexus-dashboard {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: #fff;
    z-index: 2;
}

/* Background Subtle Grid */
.nexus-bg-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: -1;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
}

.nexus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
}

.nexus-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0;
}

.live-pulse {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(37, 211, 102, 0.2);
    font-size: 0.8rem;
    font-weight: 600;
    color: #25d366;
}

.nexus-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex: 1;
}

/* Ring Visualization */
.nexus-ring-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nexus-ring-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.nexus-ring-bg {
    fill: none;
    stroke: rgba(255,255,255,0.05);
    stroke-width: 4;
}

.nexus-ring-fg {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 565; /* 2 * PI * r */
    stroke-dashoffset: 200; /* Animation target */
    animation: ringFill 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.5));
}

@keyframes ringFill {
    from { stroke-dashoffset: 565; }
    to { stroke-dashoffset: 140; /* ~75% filled */ }
}

.nexus-ring-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.nexus-val {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
    line-height: 1;
}

.nexus-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
}

/* Floating Metrics Grid */
.nexus-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 800px;
}

.nexus-card {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.nexus-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.nexus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 20px rgba(0, 245, 255, 0.1);
    border-color: rgba(0, 245, 255, 0.3);
}

.nexus-card:hover::before {
    opacity: 1;
}

.nexus-card i {
    font-size: 28px;
    color: var(--electric-purple);
    background: -webkit-linear-gradient(135deg, var(--electric-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nx-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nx-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.nx-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .nexus-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* --- AI WhatsApp Chat Widget --- */
/* Muted old Dashboard Enhancements */
/*
.dash-chart {
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.chart-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.live-indicator {
    background: rgba(0, 245, 255, 0.1);
    color: var(--neon-cyan);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(0, 245, 255, 0.4);
    animation: blink 2s infinite;
}

@keyframes blink {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    flex-grow: 1;
    z-index: 2;
}

.bar-col {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    background: rgba(255, 255, 255, 0.01);
}

.bar {
    width: 100%;
    background: var(--electric-purple);
    border-radius: 2px 2px 0 0;
    opacity: 0.7;
    transition: height 0.5s ease;
}

.bar.highlight {
    background: var(--neon-cyan);
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.dash-stat-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
}

.stat-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
}
*/
.ai-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: var(--font-body);
}

.ai-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: white;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.ai-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
}

.blob-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    z-index: -1;
    animation: blobPulse 2s infinite;
}

@keyframes blobPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

.ai-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 400px;
    background: rgba(15, 15, 20, 0.95);
    border: 1px solid rgba(123, 97, 255, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(123, 97, 255, 0.15);
    transform-origin: bottom right;
    transform: scale(0);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.ai-chat-box.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
}

.ai-chat-header {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 16px 16px 0 0;
}

.ai-avatar-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--neon-cyan);
}

.ai-avatar-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon-cyan);
    animation: avatarPulse 3s infinite alternate;
}

@keyframes avatarPulse {
    0% {
        box-shadow: 0 0 10px rgba(0, 245, 255, 0.4);
    }

    100% {
        box-shadow: 0 0 25px rgba(0, 245, 255, 0.8);
    }
}

.ai-avatar-icon {
    font-size: 24px;
    color: var(--neon-cyan);
    position: relative;
    z-index: 1;
}

/* Exibir a imagem gerada e esconder o icone caso incluamos um src valendo */
#ai-agent-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    z-index: 2;
}

.ai-header-info h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 2px;
}

.online-status {
    font-size: 0.75rem;
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    gap: 6px;
}

.online-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 5px var(--neon-cyan);
}

.close-chat {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-chat:hover {
    color: #fff;
}

.ai-chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(123, 97, 255, 0.3) transparent;
}

.ai-chat-body::-webkit-scrollbar {
    width: 6px;
}

.ai-chat-body::-webkit-scrollbar-thumb {
    background: rgba(123, 97, 255, 0.3);
    border-radius: 4px;
}

.chat-msg {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    animation: fadeInMsg 0.3s ease-out;
}

@keyframes fadeInMsg {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.msg-ai {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(123, 97, 255, 0.2);
    border-top-left-radius: 2px;
    color: #e4e4eb;
}

.msg-user {
    align-self: flex-end;
    background: linear-gradient(135deg, rgba(123, 97, 255, 0.3) 0%, rgba(0, 245, 255, 0.2) 100%);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-top-right-radius: 2px;
    color: #fff;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 4px 0;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingPulse 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
        background: var(--neon-cyan);
    }
}

.wa-forward-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wa-forward-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.ai-chat-input {
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 12px;
}

.ai-chat-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 10px 16px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border 0.3s;
}

.ai-chat-input input:focus {
    border-color: var(--neon-cyan);
}

.ai-chat-input button {
    background: linear-gradient(135deg, var(--electric-purple) 0%, var(--neon-cyan) 100%);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ai-chat-input button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

@media (max-width: 480px) {
    .ai-chat-box {
        position: fixed;
        bottom: 80px;
        /* space for fab */
        right: 15px;
        width: calc(100vw - 30px);
        max-width: 350px;
        max-height: calc(100dvh - 100px);
        /* 100dvh adapts dynamically when mobile keyboard opens! */
        display: flex;
        /* Use flexbox so chat-body can grow */
        flex-direction: column;
        border-radius: 16px;
        transform-origin: bottom right;
    }

    .ai-chat-body {
        flex: 1;
        /* Make the body take remaining space */
        min-height: 0;
        /* Prevents flex from overflowing */
        height: auto;
    }

    .ai-float-btn {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
    }
}

/* --- AI Inline Widget (Contact Section Replacement) --- */
.ai-inline-widget {
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(123, 97, 255, 0.3);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 245, 255, 0.05);
}

.ai-inline-header {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
}

.ai-inline-header h3 {
    margin: 0 0 4px 0;
    font-size: 1.2rem;
    color: #fff;
}

.ai-inline-bubble {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--neon-cyan);
    padding: 16px;
    border-radius: 0 12px 12px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.ai-inline-bubble strong {
    color: var(--neon-cyan);
}

.ai-inline-input textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    resize: vertical;
    margin-bottom: 16px;
    transition: border-color 0.3s;
}

.ai-inline-input textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.1);
}

#inline-wa-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    font-size: 1.1rem;
}

/* ==========================================================================
   ADS / PERFORMANCE DASHBOARD MOCKUP
   ========================================================================== */
.mockup-no-padding {
    padding: 0 !important;
    background: #0f111a !important; /* Cor de fundo escura azulada */
    border: 1px solid rgba(255,255,255,0.1);
}

.ads-dashboard {
    display: flex;
    flex-direction: column;
    width: 100%;
    color: #cbd5e1;
    font-family: 'Inter', sans-serif;
    background: #0B0E14; /* Fundo base estilo painel financeiro */
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

/* Efeito Global de Hover nos Cards do Dash */
.hover-effect {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.hover-effect:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 245, 255, 0.05);
    background: rgba(255, 255, 255, 0.05);
}

/* Topbar */
.ads-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: #141824;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ads-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #fff;
}

.ads-logo-icon {
    width: 24px;
    height: 24px;
    background: conic-gradient(from 180deg at 50% 50%, #FFBD2E 0deg, #25D366 120deg, #00F5FF 240deg);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.ads-top-metrics {
    display: flex;
    gap: 32px;
    background: rgba(0,0,0,0.2);
    padding: 8px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.top-metric-item {
    display: flex;
    flex-direction: column;
}

.top-metric-item .lbl {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.top-metric-item .val {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.ads-btn-icon {
    background: #00F5FF;
    color: #000;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ads-btn-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
}

/* Layout Grid */
.ads-layout {
    display: grid;
    grid-template-columns: 220px 1fr 240px;
    gap: 20px;
    padding: 24px;
}

/* Sidebar Esquerda */
.ads-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ads-btn-primary {
    background: transparent;
    border: 1px solid #00F5FF;
    color: #00F5FF;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.ads-btn-primary:hover {
    background: rgba(0, 245, 255, 0.1);
}

.ads-date-picker {
    background: #1C2130;
    padding: 12px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #fff;
    cursor: pointer;
}

.ads-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.ads-select {
    background: transparent;
    padding: 12px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #94a3b8;
    cursor: pointer;
}

/* Main Content */
.ads-main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ads-kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ads-kpi-card {
    background: #161A26;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.kpi-title {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 600;
}

.kpi-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 4px 0;
}

.kpi-trend {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.kpi-trend.positive { color: #25D366; }
.kpi-trend.negative { color: #ff5f56; }

.sparkline {
    width: 100%;
    height: 40px;
    margin-top: 12px;
}

/* Chart Area */
.ads-chart-container {
    background: #161A26;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.ads-section-title {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 16px;
}

.ads-chart-area {
    position: relative;
    height: 180px;
    border-left: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-left: 30px;
    margin-bottom: 20px;
}

.main-line-chart {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
}

.chart-grid-lines {
    position: absolute;
    left: -35px;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.65rem;
    color: #64748b;
}

.chart-x-axis {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: #64748b;
}

/* Tabela */
.ads-table-container {
    background: #161A26;
    border-radius: 8px;
    padding: 16px;
    overflow-x: auto;
}

.ads-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.ads-table th {
    text-align: left;
    color: #94a3b8;
    font-weight: 600;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ads-table td {
    padding: 12px 8px;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.hover-row {
    transition: background 0.2s, transform 0.2s;
}

.hover-row:hover {
    background: rgba(0, 245, 255, 0.05);
    transform: scale(1.01);
    box-shadow: inset 2px 0 0 #00F5FF;
    cursor: default;
}

/* Right Sidebar */
.ads-right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ads-side-widget {
    background: #161A26;
    border-radius: 8px;
    padding: 20px;
}

.donut-chart-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.donut-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.donut-bg {
    fill: none;
    stroke: #1C2130;
    stroke-width: 3;
}

.donut-segment {
    fill: none;
    stroke: #00F5FF;
    stroke-width: 3;
    stroke-linecap: round;
    animation: fillDonut 1.5s ease-out forwards;
}

@keyframes fillDonut {
    from { stroke-dasharray: 0, 100; }
}

.donut-inner {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.bar-chart-h {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
}

.bar-row .day {
    width: 25px;
    color: #94a3b8;
}

.bar-fill {
    height: 12px;
    background: linear-gradient(90deg, #00F5FF, #7B61FF);
    border-radius: 2px;
    transition: width 1s ease-out;
}

/* Responsividade Mobile */
@media (max-width: 1024px) {
    .ads-layout {
        grid-template-columns: 1fr;
    }
    .ads-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .ads-kpi-grid {
        grid-template-columns: 1fr;
    }
}