        /* --- CONFIGURAÇÕES GERAIS (DARK UI PREMIUM — PARETO-INSPIRED) --- */
        :root {
            --bg-dark: #050508;
            --bg-card: #0c0c14;
            --border-color: rgba(255, 255, 255, 0.06);

            --primary-color: #6366f1;
            --secondary-color: #d946ef;
            --accent-cyan: #22d3ee;
            --accent-orange: #fb923c;
            --text-main: #f1f5f9;
            --text-light: #94a3b8;
            --success: #25d366;

            /* Cores do CRM */
            --crm-blue: #6366f1;
            --crm-yellow: #eab308;
            --crm-orange: #f97316;
            --crm-red: #ef4444;
            --crm-green: #22c55e;
            --crm-purple: #a855f7;
            --crm-gray: #71717a;
            --crm-bg: #0f0f11;

            --brand-gradient: linear-gradient(135deg, #6366f1, #a855f7);
            --glow-purple: rgba(139, 92, 246, 0.5);
            --glow-pink: rgba(168, 85, 247, 0.45);
            --glow-cyan: rgba(34, 211, 238, 0.4);
        }



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            line-height: 1.6;
            background-color: var(--bg-dark);
            /* Impede scroll horizontal e prioriza scroll vertical em dispositivos touch */
            overflow-x: hidden;
            touch-action: pan-y;
            overscroll-behavior-x: none;
            background-image:
                radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.2), transparent),
                radial-gradient(ellipse 60% 40% at 80% 60%, rgba(168, 85, 247, 0.1), transparent),
                radial-gradient(ellipse 40% 30% at 10% 80%, rgba(34, 211, 238, 0.06), transparent);
        }

        a {
            text-decoration: none;
            transition: 0.3s;
        }

        ul {
            list-style: none;
        }

        .footer-gradient-text {
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

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

        /* --- CABEÇALHO --- */
        header {
            background: rgba(10, 10, 10, 0.95);
            border-bottom: 1px solid var(--border-color);
            padding: 15px 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        /* Logo e ações do header responsivos */
        header .logo {
            flex: 1 1 auto;
            min-width: 0;
            /* permite encolher em layouts restritos */
            display: flex;
            align-items: center;
            gap: 12px;
        }

        header .logo img {
            height: 40px;
            width: auto;
            max-width: none;
            object-fit: contain;
            display: block;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

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

        nav ul {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        nav a {
            color: var(--text-light);
            font-weight: 500;
            font-size: 0.95rem;
        }

        nav a:hover {
            color: var(--text-main);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-shrink: 0;
        }

        .btn-cta {
            background: var(--text-main);
            color: var(--bg-dark);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            display: inline-block;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .btn-cta:hover {
            background: #e2e8f0;
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
        }

        /* Botão Hambúrguer (Mobile) */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-main);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
            flex-shrink: 0;
            min-width: 50px;
            min-height: 50px;
            text-align: center;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            pointer-events: auto;
            width: auto;
            height: auto;
        }



        /* --- SEÇÕES GERAIS --- */
        .section {
            padding: 100px 5%;
            position: relative;
        }

        /* .bg-light section styles are defined in the visual effects block */

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

        .section-header h1,
        .section-header h2 {
            font-size: 2.8rem;
            color: var(--text-main);
            margin-bottom: 15px;
            letter-spacing: -1px;
            line-height: 1.2;
            font-weight: 800;
        }

        .section-header p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        /* --- HERO SECTION --- */
        /* (moved to VISUAL EFFECTS SYSTEM block) */
        .showcase-container>.section-header,
        .showcase-container>.showcase-grid {
            position: relative;
            z-index: 2;
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto;
            align-items: start;
        }

        /* Feature Grid fix for subpages — 4 items in a row or 2x2 */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 60px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 1024px) {
            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .feature-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 1100px) {
            .showcase-grid {
                grid-template-columns: 1fr;
                justify-items: center;
                max-width: 900px;
            }
        }

        /* WhatsApp Mockup */
        .phone-mockup {
            background: #0b141a;
            border-radius: 30px;
            border: 8px solid #2a2a2a;
            height: 620px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            margin: 0 auto;
            width: 100%;
            max-width: 350px;
            position: relative;
        }

        .phone-header {
            background: #202c33;
            color: #e9edef;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid #2a3942;
        }

        .phone-header img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .user-info strong {
            display: block;
            font-size: 0.95rem;
            line-height: 1.2;
        }

        .user-info span {
            font-size: 0.75rem;
            color: #8696a0;
        }

        .chat-window {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
            scrollbar-width: none;
            background: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
            background-color: #0b141a;
            background-blend-mode: overlay;
        }

        .msg {
            max-width: 85%;
            padding: 10px 14px;
            border-radius: 12px;
            font-size: 0.88rem;
            line-height: 1.4;
            animation: msgPop 0.4s forwards;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            color: #e9edef;
        }

        .msg.sent {
            background: #005c4b;
            align-self: flex-end;
            border-top-right-radius: 2px;
        }

        .msg.received {
            background: #202c33;
            align-self: flex-start;
            border-top-left-radius: 2px;
        }

        @keyframes msgPop {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* CRM Mockup */
        .crm-mockup {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid var(--border-color);
            min-height: 620px;
            width: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
        }

        .fake-data-alert {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(20, 15, 0, 0.8);
            border: 1px solid #b45309;
            color: #fcd34d;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            z-index: 100;
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            gap: 8px;
            pointer-events: none;
            white-space: nowrap;
            animation: slideUp 0.5s ease-out;
        }

        @keyframes slideUp {
            from {
                transform: translate(-50%, 20px);
                opacity: 0;
            }

            to {
                transform: translate(-50%, 0);
                opacity: 1;
            }
        }

        .crm-top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            background: #1a1a1a;
            padding: 12px 20px;
            border-radius: 10px;
            border: 1px solid var(--border-color);
            flex-shrink: 0;
        }

        .crm-brand {
            font-weight: 800;
            color: var(--text-main);
            font-size: 1.1rem;
        }

        .crm-actions {
            display: flex;
            gap: 10px;
        }

        .btn-crm {
            padding: 8px 15px;
            background: #27272a;
            border-radius: 6px;
            font-size: 0.85rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            border: 1px solid transparent;
            cursor: pointer;
            transition: 0.2s;
        }

        .btn-crm:hover {
            background: #3f3f46;
            color: white;
        }

        .btn-crm.active {
            background: rgba(59, 130, 246, 0.1);
            border-color: var(--crm-blue);
            color: var(--crm-blue);
        }

        .view-section {
            display: none;
            height: 100%;
            flex-direction: column;
            animation: fadeIn 0.3s ease;
        }

        .view-section.active {
            display: flex;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(5px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* CRM Dashboard & Kanban */
        .crm-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 20px;
            flex-shrink: 0;
        }

        .stat-card-print {
            background: #1a1a1a;
            border: 1px solid var(--border-color);
            border-top-width: 4px;
            padding: 10px 5px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s;
            cursor: default;
        }

        .stat-card-print:hover {
            transform: translateY(-5px);
            background: #27272a;
            border-top-width: 6px;
        }

        .stat-card-print.updated {
            animation: pulseDarkGreen 1s;
            border-color: var(--crm-green);
        }

        @keyframes pulseDarkGreen {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
                background: rgba(34, 197, 94, 0.2);
            }

            100% {
                transform: scale(1);
                background: #1a1a1a;
            }
        }

        .stat-card-print span {
            display: block;
            font-size: 0.6rem;
            color: var(--text-light);
            font-weight: 700;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .stat-card-print strong {
            font-size: 1.4rem;
            color: var(--text-main);
            font-weight: 800;
            display: block;
            line-height: 1;
        }

        .crm-chart-area {
            background: #1a1a1a;
            padding: 20px;
            border-radius: 10px;
            border: 1px solid var(--border-color);
            flex: 1;
            display: flex;
            flex-direction: column;
            min-height: 0;
        }

        .chart-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 15px;
            border-left: 4px solid var(--crm-blue);
            padding-left: 10px;
        }

        .bar-chart-container {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            height: 280px;
            width: 100%;
            padding: 0 10px;
            position: relative;
            background-image: linear-gradient(to bottom, #27272a 1px, transparent 1px);
            background-size: 100% 40px;
            border-bottom: 1px solid #3f3f46;
        }

        .bar-group-print {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            gap: 8px;
            width: 11%;
            height: 100%;
            z-index: 2;
            cursor: pointer;
        }

        .bar-print {
            width: 100%;
            border-radius: 4px 4px 0 0;
            transition: all 0.8s ease-out;
            min-height: 4px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }

        .bar-group-print:hover .bar-print {
            filter: brightness(1.2);
            transform: scaleX(1.1);
        }

        .bar-group-print span {
            font-size: 0.6rem;
            color: var(--text-light);
            font-weight: 600;
            white-space: nowrap;
            text-align: center;
            margin-bottom: -20px;
            padding-top: 10px;
        }

        .kanban-container {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding-bottom: 20px;
            height: 100%;
            align-items: flex-start;
            scrollbar-width: thin;
            scrollbar-color: #3f3f46 #1a1a1a;
        }

        .kanban-column {
            min-width: 260px;
            width: 260px;
            background: #121212;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid #27272a;
            flex-shrink: 0;
        }

        .column-header {
            padding: 12px 15px;
            font-weight: 700;
            color: var(--text-main);
            font-size: 0.85rem;
            text-transform: uppercase;
            border-bottom: 1px solid #27272a;
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #1a1a1a;
            border-radius: 10px 10px 0 0;
        }

        .badge-count {
            background: #27272a;
            color: var(--text-light);
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 800;
            border: 1px solid #3f3f46;
        }

        .column-body {
            padding: 0 10px 10px;
            overflow-y: hidden;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .k-card {
            background: #1a1a1a;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #27272a;
            border-left-width: 4px;
            cursor: pointer;
            transition: transform 0.2s, background 0.2s;
        }

        .k-card:hover {
            transform: translateY(-3px);
            background: #222;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            border-color: #3f3f46;
        }

        .k-card h4 {
            font-size: 0.85rem;
            margin-bottom: 4px;
            color: var(--text-main);
            font-weight: 600;
        }

        .k-info {
            font-size: 0.7rem;
            color: var(--text-light);
            margin-bottom: 3px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .k-footer {
            margin-top: 6px;
            padding-top: 6px;
            border-top: 1px solid #27272a;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.65rem;
            color: #71717a;
            font-weight: 500;
        }

        .border-blue {
            border-top-color: var(--crm-blue);
        }

        .border-yellow {
            border-top-color: var(--crm-yellow);
        }

        .border-orange {
            border-top-color: var(--crm-orange);
        }

        .border-red {
            border-top-color: var(--crm-red);
        }

        .border-green {
            border-top-color: var(--crm-green);
        }

        .border-purple {
            border-top-color: var(--crm-purple);
        }

        .bg-blue {
            background: var(--crm-blue);
        }

        .bg-yellow {
            background: var(--crm-yellow);
        }

        .bg-orange {
            background: var(--crm-orange);
        }

        .bg-red {
            background: var(--crm-red);
        }

        .bg-green {
            background: var(--crm-green);
        }

        .bg-purple {
            background: var(--crm-purple);
        }

        .bg-gray {
            background: var(--crm-gray);
        }

        .bc-blue {
            border-left-color: var(--crm-blue);
        }

        .bc-yellow {
            border-left-color: var(--crm-yellow);
        }

        .bc-orange {
            border-left-color: var(--crm-orange);
        }

        .bc-red {
            border-left-color: var(--crm-red);
        }

        .bc-green {
            border-left-color: var(--crm-green);
        }

        /* --- DIAGNÓSTICO --- */
        .diagnostico-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 80px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .diag-text {
            flex: 1;
        }

        .diag-text h2 {
            font-size: 2.2rem;
            color: var(--text-main);
            margin-bottom: 20px;
            line-height: 1.2;
            font-weight: 800;
        }

        .diag-card {
            flex: 1;
            background: var(--bg-card);
            padding: 50px;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--border-color);
            position: relative;
        }

        .diag-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--brand-gradient);
            border-radius: 24px 0 0;
        }

        /* --- FAIXA DE IMPACTO --- */
        /* (moved to VISUAL EFFECTS SYSTEM block) */

        /* --- CARDS PREMIUM (EFEITO GLOW FIXO + HOVER) --- */
        .operia-grid,
        .cards-grid {
            display: grid;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .card {
            background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.03) 0%, #121212 60%);
            padding: 35px;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        /* AQUI ESTÁ O SEGREDO DO GLOW (opacity: 0.15 no estado base) */
        .card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.15;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .card:hover::before {
            opacity: 0.7;
            /* Reduced luminosity for better readability */
        }

        #operia .card::before {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.95), rgba(217, 70, 239, 0.8));
        }

        #solucoes .card::before {
            background: linear-gradient(135deg, rgba(34, 211, 238, 0.9), rgba(99, 102, 241, 0.8));
        }

        .card-icon {
            width: 55px;
            height: 55px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--primary-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 25px;
            transition: 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .card h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
            color: var(--text-main);
            font-weight: 700;
            transition: color 0.3s;
        }

        .card p {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.5;
            transition: color 0.3s;
        }

        .card:hover h3,
        .card:hover p {
            color: #ffffff;
        }

        .card:hover .card-icon {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            border-color: transparent;
        }

        /* --- SOBRE (ESTATÍSTICAS COM GLOW) --- */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1100px;
            margin: 0 auto;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: var(--text-main);
            margin-bottom: 20px;
            font-weight: 800;
        }

        .about-text h4 {
            color: var(--text-main);
            margin-top: 20px;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .about-text blockquote {
            border-left: 4px solid var(--primary-color);
            padding-left: 15px;
            font-style: italic;
            color: var(--text-light);
            margin: 20px 0;
            background: rgba(255, 255, 255, 0.02);
            padding: 15px;
            border-radius: 0 8px 8px 0;
        }

        .about-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .stat-box {
            background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.03) 0%, #121212 60%);
            padding: 30px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: transform 0.3s;
        }

        .stat-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(37, 99, 235, 0.9));
            opacity: 0.15;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .stat-box:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .stat-box:hover::before {
            opacity: 1;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: transparent;
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            display: block;
            margin-bottom: 5px;
            transition: 0.3s;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 600;
            transition: 0.3s;
        }

        .stat-box:hover .stat-number {
            background: none;
            -webkit-text-fill-color: #ffffff;
            color: #ffffff;
        }

        .stat-box:hover .stat-label {
            color: #e2e8f0;
        }

        /* --- RODAPÉ --- */
        /* (moved to VISUAL EFFECTS SYSTEM block) */
        .footer-container,
        .footer-bottom {
            position: relative;
            z-index: 1;
        }

        footer#contato .logo img {
            height: 50px;
            opacity: 0.9;
            display: block;
        }

        /* --- WHATSAPP FLUTUANTE --- */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            z-index: 2000;
            perspective: 1000px;
        }

        .whatsapp-coin {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
            border-radius: 50%;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        }

        @media (min-width: 769px) {
            .whatsapp-float:hover .whatsapp-coin {
                animation: spin-pause 4s ease-in-out infinite;
            }
        }

        @keyframes spin-pause {

            0%,
            40% {
                transform: rotateY(0deg);
            }

            50%,
            90% {
                transform: rotateY(180deg);
            }

            100% {
                transform: rotateY(360deg);
            }
        }

        .face {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            top: 0;
            left: 0;
        }

        .face-front {
            background-color: var(--success);
            color: white;
            font-size: 32px;
            font-weight: 900;
            line-height: 1;
        }

        .face-front i {
            display: block;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .face-back {
            background-color: #fff;
            transform: rotateY(180deg);
            overflow: hidden;
        }

        .face-back img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: 3px solid var(--success);
            border-radius: 50%;
            box-sizing: border-box;
        }

        .whatsapp-tooltip {
            position: fixed;
            bottom: 38px;
            right: 105px;
            background: var(--bg-card);
            padding: 8px 16px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            box-shadow: 0 10x 25px rgba(0, 0, 0, 0.5);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-main);
            z-index: 1999;
        }

        /* =========================================
           RESPONSIVIDADE (FOCO MOBILE PREMIUM)
           ========================================= */

        @media (max-width: 992px) {
            .showcase-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .crm-mockup {
                min-height: auto;
                width: 100%;
                height: auto;
            }

            .crm-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .bar-group-print span {
                font-size: 0.5rem;
                transform: rotate(-45deg);
                margin-bottom: 0;
            }

            .menu-toggle {
                display: block !important;
                z-index: 1100;
                flex-shrink: 0;
                min-width: 50px;
                min-height: 50px;
                visibility: visible !important;
                opacity: 1 !important;
                pointer-events: auto !important;
            }

            .header-actions {
                display: flex !important;
                gap: 8px !important;
            }

            nav {
                position: absolute;
                top: calc(100% - 1px);
                left: 0;
                width: 100%;
                background: rgba(5, 5, 8, 0.99);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border-top: none;
                border-bottom: 1px solid rgba(99, 102, 241, 0.25);
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease-in-out;
                margin-top: 0;
                z-index: 1000;
            }

            nav.nav-active {
                max-height: 300px;
                padding: 20px 0;
            }

            nav ul {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            nav a {
                font-size: 1.1rem;
                display: block;
                width: 100%;
                padding: 10px 0;
            }

            header .btn-cta {
                display: none;
            }

            header .logo img {
                height: 32px;
                width: 100%;
                max-width: none;
            }
        }

        @media (max-width: 480px) {
            header .logo img {
                height: 28px;
                width: 100%;
                max-width: none;
            }

            /* Garantir que o botão do menu fique visível em todos os navegadores móveis */
            .menu-toggle {
                display: block !important;
                font-size: 1.4rem;
                padding: 6px;
                flex-shrink: 0 !important;
                min-width: 50px !important;
                min-height: 50px !important;
                visibility: visible !important;
                opacity: 1 !important;
                pointer-events: auto !important;
                -webkit-appearance: none !important;
            }

            .header-actions {
                display: flex !important;
                gap: 8px !important;
            }
        }

        /* Ajustes finos para Android: permitir que o logo cresça até preencher espaço disponível
           entre a margem esquerda e o botão de menu. Usa um cálculo aproximado do botão (56px). */
        @media (max-width: 420px) {
            header {
                padding-left: 10px;
                padding-right: 10px;
                gap: 0;
            }

            .header-actions {
                display: flex;
                align-items: center;
                gap: 0;
                flex: 0 0 auto;
            }

            header .logo {
                flex: 1 1 auto;
                min-width: 0;
            }

            /* Remover TODOS os max-width - deixar crescer apenas com base na altura */
            header .logo img {
                width: 100%;
                height: 32px;
                max-width: none;
                object-fit: contain;
            }

            .menu-toggle {
                display: block !important;
                flex-shrink: 0 !important;
                min-width: 50px !important;
                min-height: 50px !important;
                margin-left: auto !important;
                visibility: visible !important;
                opacity: 1 !important;
                pointer-events: auto !important;
                -webkit-appearance: none !important;
            }

            .header-actions {
                display: flex !important;
                gap: 8px !important;
            }

            /* Forçar visibilidade do ícone no topo (fallback absoluto quando necessário) */
            .menu-toggle.force-visible {
                position: relative;
                display: block !important;
                z-index: 1200;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 70px 5%;
            }

            .showcase-container {
                padding-top: 120px;
                padding-bottom: 50px;
            }

            .section-header h1 {
                font-size: 2rem;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .impact-strip h2 {
                font-size: 1.5rem;
                line-height: 1.3;
            }

            .section-header p {
                font-size: 1rem;
            }

            .phone-mockup {
                width: 100%;
                max-width: 320px;
                height: 500px;
                border-width: 5px;
                border-radius: 20px;
            }

            .crm-mockup {
                padding: 15px;
                border-radius: 12px;
            }

            .crm-top-bar {
                flex-direction: column;
                gap: 15px;
                text-align: center;
                align-items: center;
                padding: 10px;
            }

            .crm-actions {
                width: 100%;
                justify-content: center;
            }

            .kanban-column {
                min-width: 240px;
                width: 240px;
            }

            .about-stats {
                /* Em mobile, exibir 2 cards por linha (2x2) para aproveitar largura */
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }

            .stat-box {
                padding: 12px;
                font-size: 0.92rem;
            }

            .diagnostico-content {
                display: flex;
                flex-direction: column;
                gap: 40px;
            }

            .about-grid {
                /* Forçar texto em linha única acima dos cards */
                display: grid;
                grid-template-columns: 1fr;
                gap: 20px;
            }

            /* Garantir que o texto apareça antes dos cards */
            .about-text {
                order: 1;
            }

            .about-stats {
                order: 2;
            }

            /* Reduzir título para caber em telas pequenas */
            .about-text h2 {
                font-size: 1.6rem;
                line-height: 1.15;
            }

            .diag-card {
                padding: 30px 20px;
            }

            .whatsapp-tooltip {
                display: none;
            }

            .whatsapp-coin {
                animation: spin-pause 4s ease-in-out infinite;
            }

            .fake-data-alert {
                width: 90%;
                justify-content: center;
                bottom: 10px;
                font-size: 0.7rem;
                padding: 5px 10px;
            }
        }

        /* =========================================
           NOVOS TRABALHOS ADICIONADOS (CARDS MOBILE + TOQUE)
        ========================================= */
        @media (max-width: 768px) {
            .card {
                background:
                    radial-gradient(circle at 15% 15%, rgba(59, 130, 246, 0.12), transparent 40%),
                    radial-gradient(circle at 85% 85%, rgba(139, 92, 246, 0.12), transparent 40%),
                    #121212;
                border-color: rgba(99, 102, 241, 0.35);
                box-shadow:
                    0 12px 28px rgba(59, 130, 246, 0.18),
                    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
            }

            .card::before {
                opacity: 0.35;
            }
        }

        /* feedback visual ao tocar (mobile) */
        .card.card-touch-active {
            transform: translateY(-6px) scale(1.015);
            border-color: rgba(129, 140, 248, 0.8);
            box-shadow:
                0 20px 45px rgba(99, 102, 241, 0.35),
                0 0 0 1px rgba(129, 140, 248, 0.25);
        }

        .card.card-touch-active::before {
            opacity: 1 !important;
        }

        .card.card-touch-active h3,
        .card.card-touch-active p {
            color: #ffffff;
        }

        .card.card-touch-active .card-icon {
            background: rgba(255, 255, 255, 0.18);
            color: #ffffff;
            border-color: transparent;
        }

        /* =========================================
           VISUAL EFFECTS SYSTEM (PARETO-INSPIRED)
           ========================================= */

        /* --- NOISE TEXTURE OVERLAY (PNG OPTIMIZED) --- */
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.015;
            /* PNG data-URI representativo de ruído digital sutil - Ultra leve */
            background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXl9fX2BgYGBgYGEhISFhYWRkZGZmZmYmZmZmZmZmZmxsbGzs7O2tra6urq5ubm8vLy/v7+/v7+/v7+91BbsAAAAAnRSTlP/AOW3MEoAAAAzSURBVHgB7MixCQAgDMCw0+7++8skNREKzCQVpMIsUgGT0NInov9D6X9S+p+U/ie19AnuOToFtwX37O8AAAAASUVORK5CYII=");
        }

        /* --- FLOATING ORBS (HERO) — INTENSIFIED --- */
        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(70px);
            pointer-events: none;
            z-index: 0;
            will-change: transform, opacity;
        }

        .orb-1 {
            width: 650px;
            height: 650px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.65), rgba(168, 85, 247, 0.3), transparent 70%);
            top: -15%;
            left: -12%;
            animation: orbFloat1 10s ease-in-out infinite;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.55), rgba(99, 102, 241, 0.2), transparent 70%);
            top: 15%;
            right: -10%;
            animation: orbFloat2 13s ease-in-out infinite;
        }

        .orb-3 {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(34, 211, 238, 0.35), rgba(99, 102, 241, 0.15), transparent 70%);
            bottom: 5%;
            left: 25%;
            animation: orbFloat3 16s ease-in-out infinite;
        }

        /* Novo orb extra para profundidade */
        .orb-4 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(34, 211, 238, 0.25), transparent 70%);
            top: 50%;
            right: 20%;
            animation: orbFloat2 20s ease-in-out infinite reverse;
        }

        @keyframes orbFloat1 {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.7;
            }

            33% {
                transform: translate(70px, 50px) scale(1.2);
                opacity: 1;
            }

            66% {
                transform: translate(-40px, 80px) scale(0.9);
                opacity: 0.6;
            }
        }

        @keyframes orbFloat2 {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.65;
            }

            50% {
                transform: translate(-100px, 60px) scale(1.25);
                opacity: 0.9;
            }
        }

        @keyframes orbFloat3 {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.5;
            }

            40% {
                transform: translate(50px, -70px) scale(1.15);
                opacity: 0.75;
            }

            70% {
                transform: translate(-60px, 40px) scale(0.9);
                opacity: 0.4;
            }
        }





        /* --- DOT GRID PATTERN — INTENSIFIED --- */
        .dot-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.55;
            background-image: radial-gradient(circle, rgba(168, 85, 247, 0.2) 1px, transparent 1px);
            background-size: 36px 36px;
            mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
            -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
        }

        /* --- SCAN LINES (EFEITO HOLOGRÁFICO) --- */
        .scan-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            background: repeating-linear-gradient(0deg,
                    transparent,
                    transparent 3px,
                    rgba(99, 102, 241, 0.015) 3px,
                    rgba(99, 102, 241, 0.015) 4px);
            animation: scanMove 8s linear infinite;
        }

        @keyframes scanMove {
            0% {
                background-position: 0 0;
            }

            100% {
                background-position: 0 80px;
            }
        }

        /* --- SECTION GLOW DECORATORS — AMPLIFIED --- */
        .section-glow {
            position: absolute;
            pointer-events: none;
            z-index: 0;
            border-radius: 50%;
            filter: blur(90px);
        }

        .glow-left {
            width: 550px;
            height: 550px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.55), rgba(168, 85, 247, 0.3), transparent 70%);
            top: -150px;
            left: -200px;
            opacity: 0.7;
            animation: glowPulse 8s ease-in-out infinite;
        }

        .glow-right {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.5), rgba(34, 211, 238, 0.2), transparent 70%);
            bottom: -100px;
            right: -150px;
            opacity: 0.6;
            animation: glowPulse 10s ease-in-out infinite 2s;
        }

        .glow-center {
            width: 700px;
            height: 400px;
            background: radial-gradient(ellipse, rgba(34, 211, 238, 0.2), rgba(99, 102, 241, 0.15), transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.6;
            border-radius: 50%;
            animation: glowPulse 12s ease-in-out infinite 4s;
        }

        @keyframes glowPulse {

            0%,
            100% {
                opacity: 0.5;
                transform: scale(1);
            }

            50% {
                opacity: 0.9;
                transform: scale(1.1);
            }
        }

        .glow-center {
            transform: translate(-50%, -50%) scale(1);
        }

        .glow-center:is(:root *) {
            animation: glowPulseCenter 12s ease-in-out infinite 4s;
        }

        @keyframes glowPulseCenter {

            0%,
            100% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1);
            }

            50% {
                opacity: 0.9;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        /* --- AURORA EFFECT (IMPACT STRIP) — INTENSIFIED --- */
        .aurora-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
        }

        .aurora {
            position: absolute;
            width: 220%;
            height: 220%;
            top: -60%;
            left: -60%;
            background:
                conic-gradient(from 180deg at 50% 50%,
                    rgba(99, 102, 241, 0.55) 0deg,
                    transparent 50deg,
                    rgba(168, 85, 247, 0.45) 100deg,
                    transparent 160deg,
                    rgba(34, 211, 238, 0.35) 200deg,
                    transparent 260deg,
                    rgba(99, 102, 241, 0.4) 310deg,
                    transparent 360deg);
            animation: auroraRotate 14s linear infinite;
            opacity: 0.85;
            filter: blur(50px);
        }

        /* Segundo layer de aurora para mais profundidade */
        .aurora-2 {
            position: absolute;
            width: 180%;
            height: 180%;
            top: -40%;
            left: -40%;
            background:
                conic-gradient(from 0deg at 50% 50%,
                    rgba(168, 85, 247, 0.3) 0deg,
                    transparent 70deg,
                    rgba(34, 211, 238, 0.25) 140deg,
                    transparent 200deg,
                    rgba(99, 102, 241, 0.35) 280deg,
                    transparent 360deg);
            animation: auroraRotate 22s linear infinite reverse;
            opacity: 0.7;
            filter: blur(70px);
        }

        @keyframes auroraRotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* --- ENHANCED HERO SECTION — INTENSIFIED --- */
        .showcase-container {
            position: relative;
            padding: 160px 5% 100px;
            overflow: hidden;
            background:
                radial-gradient(ellipse 90% 70% at 50% 0%, rgba(99, 102, 241, 0.25) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 80% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse 50% 40% at 10% 70%, rgba(34, 211, 238, 0.1) 0%, transparent 50%);
        }

        .showcase-container::before {
            content: "";
            position: absolute;
            top: 35%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.3), rgba(168, 85, 247, 0.2), rgba(34, 211, 238, 0.05), transparent 70%);
            opacity: 1;
            filter: blur(100px);
            border-radius: 50%;
            z-index: 0;
            animation: heroPulse 5s ease-in-out infinite;
        }

        /* Neon glow nos títulos principais */
        .showcase-container h1 {
            text-shadow: 0 0 60px rgba(99, 102, 241, 0.4), 0 0 120px rgba(168, 85, 247, 0.2);
        }

        @keyframes heroPulse {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.75;
            }

            50% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 1;
            }
        }

        /* --- ENHANCED IMPACT STRIP — INTENSIFIED --- */
        .impact-strip {
            background-color: #04040e;
            color: white;
            padding: 130px 5%;
            text-align: center;
            border-top: 1px solid rgba(99, 102, 241, 0.4);
            border-bottom: 1px solid rgba(168, 85, 247, 0.4);
            position: relative;
            overflow: hidden;
        }

        .impact-strip::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            max-width: 1400px;
            height: 300%;
            background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.35) 0%, rgba(168, 85, 247, 0.2) 30%, transparent 60%);
            z-index: 0;
            pointer-events: none;
        }

        /* Neon text-shadow no quote da impact strip */
        .impact-strip h2 {
            text-shadow: 0 0 40px rgba(99, 102, 241, 0.5), 0 0 80px rgba(168, 85, 247, 0.3);
        }

        /* --- ENHANCED CARDS (NEON GLOW + BORDER) --- */
        #operia .card::before {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.95), rgba(168, 85, 247, 0.8));
        }

        #solucoes .card::before {
            background: linear-gradient(135deg, rgba(34, 211, 238, 0.9), rgba(99, 102, 241, 0.8));
        }

        .card::after {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.35), transparent 40%, rgba(168, 85, 247, 0.25));
            z-index: -2;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .card:hover::after {
            opacity: 1;
        }

        /* Neon border animado no hover dos cards */
        .card:hover {
            box-shadow:
                0 0 20px rgba(99, 102, 241, 0.5),
                0 0 40px rgba(99, 102, 241, 0.25),
                0 20px 40px rgba(0, 0, 0, 0.6);
            border-color: rgba(99, 102, 241, 0.6);
        }

        /* --- BG-LIGHT SECTIONS ENHANCED --- */
        .bg-light {
            background-color: #060616;
            border-top: 1px solid rgba(99, 102, 241, 0.2);
            border-bottom: 1px solid rgba(99, 102, 241, 0.2);
            position: relative;
            background-image:
                radial-gradient(ellipse 60% 40% at 0% 50%, rgba(99, 102, 241, 0.06), transparent),
                radial-gradient(ellipse 60% 40% at 100% 50%, rgba(168, 85, 247, 0.05), transparent);
        }

        /* --- ENHANCED STAT BOXES --- */
        .stat-box::before {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(168, 85, 247, 0.8));
        }

        .stat-box:hover {
            box-shadow: 0 0 25px rgba(99, 102, 241, 0.4), 0 0 50px rgba(99, 102, 241, 0.2);
        }

        /* --- ENHANCED FOOTER --- */
        footer#contato {
            position: relative;
            background-color: #020208;
            background-image:
                radial-gradient(circle at 0% 100%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 100% 0%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.06) 0%, transparent 60%);
            color: var(--text-light);
            padding: 80px 5% 30px;
            border-top: 1px solid rgba(99, 102, 241, 0.3);
        }

        /* --- ANIMATED GRADIENT LINE (SECTION SEPARATOR) --- */
        .gradient-line {
            height: 2px;
            background: linear-gradient(90deg, transparent, #6366f1, #d946ef, #fb923c, transparent);
            background-size: 200% 100%;
            animation: gradientSlide 4s linear infinite;
            margin: 0 auto;
            max-width: 600px;
        }

        @keyframes gradientSlide {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        /* --- CIRCUIT BOARD PATTERN (BG-LIGHT SECTIONS) --- */
        .circuit-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.04;
            background-image:
                linear-gradient(rgba(99, 102, 241, 1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(99, 102, 241, 1) 1px, transparent 1px),
                linear-gradient(rgba(168, 85, 247, 0.5) 1px, transparent 1px),
                linear-gradient(90deg, rgba(168, 85, 247, 0.5) 1px, transparent 1px);
            background-size: 60px 60px, 60px 60px, 12px 12px, 12px 12px;
            background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
        }

        /* --- RESPONSIVE EFFECTS --- */
        @media (max-width: 768px) {
            .orb {
                filter: blur(50px);
            }

            .orb-1 {
                width: 350px;
                height: 350px;
            }

            .orb-2 {
                width: 280px;
                height: 280px;
            }

            .orb-3 {
                width: 220px;
                height: 220px;
            }

            .orb-4 {
                display: none;
            }

            .beam-4 {
                display: none;
            }

            .beam {
                opacity: 0.5;
            }

            .dot-grid {
                opacity: 0.25;
            }

            .scan-lines {
                display: none;
            }
        }

        /* --- TIERED PERFORMANCE OVERRIDES --- */

        /* TIER BAIXO (perf-low): Foco em funcionalidade pura */
        html.perf-low .orb,
        html.perf-low .beam-container,
        html.perf-low .aurora,
        html.perf-low .aurora-2,
        html.perf-low .scan-lines,
        html.perf-low .dot-grid,
        html.perf-low .section-glow {
            display: none !important;
        }

        html.perf-low * {
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            box-shadow: none !important;
            text-shadow: none !important;
            filter: none !important;
        }

        /* TIER MÉDIO (perf-mid): Equilíbrio visual/performance */
        html.perf-mid .orb {
            filter: blur(25px);
            /* Redução drástica do blur */
            opacity: 0.4;
        }

        html.perf-mid .orb-4,
        html.perf-mid .beam-4 {
            display: none !important;
            /* Remove elementos extras */
        }

        html.perf-mid .aurora,
        html.perf-mid .aurora-2 {
            filter: blur(30px);
            opacity: 0.3;
        }

        html.perf-mid .section-glow {
            filter: blur(40px);
            opacity: 0.3;
        }

        html.perf-mid .card:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
            /* Sombra simples */
        }