/* ═══════════════════════════════════════════════
           CODER TERMINAL — Tech Fernandes
           Escuro + roxo + cinzas
           ═══════════════════════════════════════════════ */

        :root {
            --bg: #000000;
            --primary: #667eea;
            --primary-dim: #764ba2;
            --primary-glow: rgba(102, 126, 234, 0.15);
            --text: #E5E7EB;
            --text-dim: #9CA3AF;
            --text-muted: #6B7280;
            --line-num: #1F2937;
            --card-bg: #0A0A0A;
            --border: #1F2937;
            --border-hover: #667eea;
            --green: #667eea; /* redirect green to primary for monochrome */
            --whatsapp: #667eea;
        }

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

        body {
            font-family: 'Fira Code', 'Inter', 'Consolas', monospace;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            scroll-behavior: smooth;
            position: relative;
        }

        /* Scanlines overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 9999;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 0, 0, 0.03) 2px,
                rgba(0, 0, 0, 0.03) 4px
            );
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ═══════════════════════════════════════
           HEADER / NAV
           ═══════════════════════════════════════ */

        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.2rem 0;
            transition: all 0.3s ease;
            background: transparent;
        }

        header.scrolled {
            background: rgba(0, 0, 0, 0.95);
            border-bottom: 1px solid var(--border);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Inter', 'Fira Code', monospace;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: -0.5px;
        }
        /* Logo prefix removed for cleaner look */

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: color 0.2s ease;
            position: relative;
        }
        .nav-links a:hover { color: var(--primary); }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--primary);
            transition: width 0.2s ease;
        }
        .nav-links a:hover::after { width: 100%; }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: 1px solid var(--border);
            color: var(--text-dim);
            font-family: inherit;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            transition: border-color 0.2s;
        }
        .mobile-menu-toggle:hover { border-color: var(--primary); color: var(--primary); }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100vh;
            background: rgba(0, 0, 0, 0.98);
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2.5rem;
        }
        .mobile-menu.active { display: flex; }
        .mobile-menu a {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 1.3rem;
            font-family: 'Inter', monospace;
            transition: color 0.2s;
        }
        .mobile-menu a:hover { color: var(--primary); }

        /* ═══════════════════════════════════════
           LINE NUMBERS (decorative)
           ═══════════════════════════════════════ */

        .line-nums {
            position: absolute;
            left: 0; top: 0;
            width: 48px;
            color: var(--line-num);
            font-size: 0.75rem;
            line-height: 1.7;
            text-align: right;
            padding-right: 1rem;
            user-select: none;
            pointer-events: none;
            opacity: 0.6;
        }

        /* ═══════════════════════════════════════
           TERMINAL BORDER CARDS
           ═══════════════════════════════════════ */

        .term-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            position: relative;
            transition: border-color 0.2s ease;
        }
        .term-card:hover {
            border-color: var(--primary);
        }

        .term-card::before {
            content: '┌─';
            position: absolute;
            top: -0.65rem;
            left: 0.5rem;
            color: var(--primary);
            font-size: 0.7rem;
            font-family: 'Inter', monospace;
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        .term-card::after {
            content: '─┘';
            position: absolute;
            bottom: -0.65rem;
            right: 0.5rem;
            color: var(--primary);
            font-size: 0.7rem;
            font-family: 'Inter', monospace;
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        .term-card:hover::before,
        .term-card:hover::after { opacity: 1; }

        .term-card-top {
            background: var(--card-bg);
            border: 1px solid var(--border);
            position: relative;
            transition: border-color 0.2s ease;
        }
        .term-card-top:hover { border-color: var(--primary); }
        .term-card-top::before {
            content: '─┐';
            position: absolute;
            top: -0.65rem;
            right: 0.5rem;
            color: var(--primary);
            font-size: 0.7rem;
            font-family: 'Inter', monospace;
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        .term-card-top:hover::before { opacity: 1; }
        .term-card-top::after {
            content: '└─';
            position: absolute;
            bottom: -0.65rem;
            left: 0.5rem;
            color: var(--primary);
            font-size: 0.7rem;
            font-family: 'Inter', monospace;
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        .term-card-top:hover::after { opacity: 1; }

        /* ═══════════════════════════════════════
           SECTION HEADERS (terminal style)
           ═══════════════════════════════════════ */

        .section-header {
            margin-bottom: 3rem;
        }
        .section-path {
            color: var(--text-muted);
            font-size: 0.8rem;
            margin-bottom: 0.3rem;
            font-family: 'Fira Code', monospace;
        }
        .section-path::before { content: '~$ '; color: var(--primary); }
        .section-title {
            font-family: 'Inter', monospace;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: -0.5px;
        }
        .section-divider {
            height: 1px;
            background: linear-gradient(to right, var(--primary), transparent);
            margin: 1rem 0 2rem 0;
        }

        /* ═══════════════════════════════════════
           HERO — Typewriter + cursor blink
           ═══════════════════════════════════════ */

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding-top: 5rem;
            isolation: isolate;
        }

        .hero-content {
            max-width: 800px;
            width: 100%;
            text-align: left;
        }

        .hero-prompt {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            color: var(--text-dim);
            font-family: 'Fira Code', monospace;
            font-size: 0.9rem;
        }
        .hero-prompt-symbol { color: var(--primary); font-weight: 700; }
        .hero-prompt-cmd { color: var(--text-dim); }

        .hero h1 {
            font-family: 'Inter', monospace;
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--text);
            letter-spacing: -1px;
            position: relative;
            display: inline-block;
        }

        /* Typewriter blink cursor after h1 - removed for clean hero */

        .hero-subtitle {
            font-family: 'Fira Code', monospace;
            font-size: 1.1rem;
            color: var(--text-dim);
            margin-bottom: 2.5rem;
            line-height: 1.6;
            max-width: 600px;
        }

        .stats-row {
            display: flex;
            gap: 3rem;
            margin: 2.5rem 0;
            flex-wrap: wrap;
        }

        .stat-item {
            font-family: 'Inter', monospace;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
            line-height: 1;
        }
        .stat-label {
            color: var(--text-muted);
            font-size: 0.8rem;
            margin-top: 0.3rem;
        }

        /* CTA buttons */
        .cta-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cta-primary {
            display: inline-block;
            padding: 0.85rem 1.8rem;
            background: var(--primary);
            color: #000;
            text-decoration: none;
            font-family: 'Inter', monospace;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            transition: all 0.2s ease;
            border: 1px solid var(--primary);
        }
        .cta-primary:hover {
            background: transparent;
            color: var(--primary);
        }

        .cta-secondary {
            display: inline-block;
            padding: 0.85rem 1.8rem;
            background: transparent;
            color: var(--text-dim);
            text-decoration: none;
            font-family: 'Inter', monospace;
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            border: 1px solid var(--border);
            transition: all 0.2s ease;
        }
        .cta-secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* ═══════════════════════════════════════
           HOW IT WORKS — Steps
           ═══════════════════════════════════════ */

        .how-it-works {
            padding: 6rem 0;
            position: relative;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            counter-reset: step;
        }

        .step-card {
            padding: 2rem;
            position: relative;
        }
        .step-card::before {
            counter-increment: step;
            content: "0" counter(step);
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-family: 'Inter', monospace;
            font-size: 2rem;
            font-weight: 800;
            color: var(--line-num);
        }
        .step-card h3 {
            font-family: 'Inter', monospace;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--text);
        }
        .step-card h3::before { content: '> '; color: var(--primary); }
        .step-card p {
            color: var(--text-dim);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        /* ═══════════════════════════════════════
           SERVICES — Command output cards
           ═══════════════════════════════════════ */

        .services {
            padding: 6rem 0;
            position: relative;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .service-card {
            padding: 2rem;
            cursor: default;
        }
        .service-card .svc-header {
            font-family: 'Inter', monospace;
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .service-card .svc-header .svc-dot {
            color: var(--primary);
            font-weight: 700;
        }
        .service-card .svc-name {
            font-family: 'Inter', monospace;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
            color: var(--text);
        }
        .service-card .svc-name::before {
            content: '{ ';
            color: var(--primary);
        }
        .service-card .svc-name::after {
            content: ' }';
            color: var(--primary);
        }
        .service-card .svc-desc {
            color: var(--text-dim);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        /* ═══════════════════════════════════════
           TECH TOOLS — ls -la style
           ═══════════════════════════════════════ */

        .tech-tools {
            padding: 6rem 0;
            position: relative;
        }

        .tools-ls {
            font-family: 'Fira Code', monospace;
        }

        .tools-ls-header {
            color: var(--text-muted);
            font-size: 0.8rem;
            padding-bottom: 0.8rem;
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--border);
        }
        .tools-ls-header span { color: var(--primary); }

        .tool-row {
            display: grid;
            grid-template-columns: 180px 1fr auto;
            gap: 1.5rem;
            padding: 0.6rem 0.5rem;
            border-bottom: 1px solid rgba(31, 41, 55, 0.4);
            transition: background 0.15s ease;
            align-items: center;
        }
        .tool-row:hover {
            background: rgba(102, 126, 234, 0.03);
        }
        .tool-perms {
            color: var(--primary);
            font-size: 0.75rem;
        }
        .tool-name {
            color: var(--text);
            font-weight: 600;
            font-size: 0.9rem;
        }
        .tool-desc {
            color: var(--text-muted);
            font-size: 0.8rem;
            text-align: right;
        }

        /* ═══════════════════════════════════════
           BADGES
           ═══════════════════════════════════════ */

        .badges {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }
        .badge {
            font-family: 'Inter', monospace;
            font-size: 0.75rem;
            padding: 0.5rem 1rem;
            border: 1px solid var(--border);
            color: var(--text-dim);
            letter-spacing: 0.5px;
        }
        .badge:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* ═══════════════════════════════════════
           PLANS
           ═══════════════════════════════════════ */

        .plans {
            padding: 6rem 0;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .plan-card {
            padding: 2.5rem;
            text-align: left;
        }
        .plan-card.featured {
            border-color: var(--primary);
        }
        .plan-name {
            font-family: 'Inter', monospace;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text);
        }
        .plan-name::before {
            content: './';
            color: var(--primary);
        }
        .plan-price {
            font-family: 'Inter', monospace;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.3rem;
        }
        .plan-period {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }
        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }
        .plan-features li {
            padding: 0.55rem 0;
            color: var(--text-dim);
            font-size: 0.85rem;
            font-family: 'Fira Code', monospace;
        }
        .plan-features li::before {
            content: '[x] ';
            color: var(--primary);
            font-size: 0.75rem;
        }
        .plan-card .cta-primary {
            width: 100%;
            text-align: center;
            display: block;
        }

        /* ═══════════════════════════════════════
           CASES — Execution log style
           ═══════════════════════════════════════ */

        .cases {
            padding: 6rem 0;
        }

        .cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
        }

        .case-card {
            padding: 2rem;
            position: relative;
        }
        .case-card .case-tag {
            display: inline-block;
            font-family: 'Inter', monospace;
            font-size: 0.7rem;
            color: var(--primary);
            margin-bottom: 1rem;
            padding: 0.2rem 0.6rem;
            border: 1px solid var(--primary);
        }
        .case-card .case-result {
            font-family: 'Inter', monospace;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .case-card h3 {
            font-family: 'Inter', monospace;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--text);
        }
        .case-card .case-desc {
            color: var(--text-dim);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        /* ═══════════════════════════════════════
           PORTFOLIO
           ═══════════════════════════════════════ */

        .portfolio {
            padding: 6rem 0;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1.5rem;
        }
        .portfolio-item {
            padding: 2rem 1.2rem;
            text-align: center;
        }
        .portfolio-icon {
            font-size: 2rem;
            margin-bottom: 0.8rem;
            display: block;
        }
        .portfolio-title {
            font-family: 'Inter', monospace;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text);
            margin-bottom: 0.3rem;
        }
        .portfolio-desc {
            color: var(--text-muted);
            font-size: 0.75rem;
        }



        /* ═══════════════════════════════════════
           FAQ — man page style
           ═══════════════════════════════════════ */

        .faq {
            padding: 6rem 0;
        }
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid var(--border);
        }
        .faq-question {
            width: 100%;
            padding: 1.2rem 0;
            background: none;
            border: none;
            color: var(--text);
            font-family: 'Inter', monospace;
            font-size: 0.95rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.2s ease;
        }
        .faq-question:hover { color: var(--primary); }
        .faq-question::before {
            content: 'Q: ';
            color: var(--primary);
            font-weight: 700;
        }
        .faq-question::after {
            content: '[+]';
            font-size: 0.8rem;
            color: var(--text-muted);
            font-family: 'Fira Code', monospace;
            transition: color 0.2s;
        }
        .faq-question.active::after {
            content: '[-]';
            color: var(--primary);
        }
        .faq-answer {
            padding: 0 0 1.2rem 1.5rem;
            color: var(--text-dim);
            font-size: 0.85rem;
            line-height: 1.7;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }
        .faq-answer.active {
            max-height: 400px;
            padding-bottom: 1.2rem;
        }

        /* TESTIMONIALS section removed — CSS retained for potential future use */

        /* ═══════════════════════════════════════
           BLOG HOME SECTION — Last posts cards
           ═══════════════════════════════════════ */

        .blog-section {
            padding: 6rem 0;
            position: relative;
        }
        .blog-home-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .blog-home-card {
            padding: 2rem;
            display: flex;
            flex-direction: column;
        }
        .blog-home-cat {
            display: inline-block;
            font-family: 'Inter', monospace;
            font-size: 0.7rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
            padding: 0.2rem 0.5rem;
            border: 1px solid var(--primary);
            align-self: flex-start;
        }
        .blog-home-date {
            font-family: 'Fira Code', monospace;
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-bottom: 0.8rem;
        }
        .blog-home-title {
            font-family: 'Inter', monospace;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }
        .blog-home-title::before {
            content: '# ';
            color: var(--primary);
        }
        .blog-home-excerpt {
            color: var(--text-dim);
            font-size: 0.85rem;
            line-height: 1.6;
            flex-grow: 1;
            margin-bottom: 1.2rem;
        }
        .blog-home-link {
            font-family: 'Fira Code', monospace;
            font-size: 0.8rem;
            color: var(--primary);
            text-decoration: none;
            align-self: flex-start;
            transition: opacity 0.2s;
        }
        .blog-home-link:hover {
            opacity: 0.7;
        }
        .blog-cta-row {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            padding-top: 1rem;
        }

        /* ═══════════════════════════════════════
           FINAL CTA — ./start.sh style
           ═══════════════════════════════════════ */

        .final-cta {
            padding: 6rem 0;
            text-align: center;
        }
        .final-cta .cta-prompt {
            font-family: 'Fira Code', monospace;
            font-size: 0.85rem;
            color: var(--text-dim);
            margin-bottom: 1.5rem;
        }
        .final-cta .cta-prompt .prompt-sym { color: var(--primary); }
        .final-cta .cta-command {
            font-family: 'Inter', monospace;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1rem;
            display: inline-block;
            padding: 1rem 2rem;
            border: 1px dashed var(--primary);
        }
        .final-cta .cta-command .clr { color: var(--primary); }
        .final-cta p {
            color: var(--text-dim);
            font-size: 1rem;
            margin-bottom: 2rem;
        }
        .final-cta .cta-whatsapp {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--primary);
            color: #000;
            text-decoration: none;
            font-family: 'Inter', monospace;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.5px;
            border: 1px solid var(--primary);
            transition: all 0.2s ease;
        }
        .final-cta .cta-whatsapp:hover {
            background: transparent;
            color: var(--primary);
        }

        /* ═══════════════════════════════════════
           SHORTCUT HINTS
           ═══════════════════════════════════════ */

        .kbd {
            display: inline-block;
            font-family: 'Inter', monospace;
            font-size: 0.7rem;
            padding: 0.15rem 0.4rem;
            border: 1px solid var(--border);
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }

        .footer-shortcuts {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin: 2rem 0 1rem 0;
            flex-wrap: wrap;
        }

        /* ═══════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════ */

        footer {
            padding: 3rem 0;
            border-top: 1px solid var(--border);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            font-family: 'Inter', monospace;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        .footer-section p, .footer-section a {
            color: var(--text-dim);
            text-decoration: none;
            line-height: 2;
            font-size: 0.85rem;
            display: block;
            transition: color 0.2s;
        }
        .footer-section a:hover { color: var(--primary); }
        .social-links {
            display: flex;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .social-link {
            width: 36px;
            height: 36px;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 0.9rem;
            transition: border-color 0.2s;
        }
        .social-link:hover { border-color: var(--primary); }
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        /* ═══════════════════════════════════════
           WHATSAPP FLOAT
           ═══════════════════════════════════════ */

        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 52px;
            height: 52px;
            background: var(--primary);
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            z-index: 1000;
            font-family: 'Inter', monospace;
            font-weight: 700;
            font-size: 0.75rem;
            border: 1px solid var(--primary);
            transition: all 0.2s ease;
        }
        .whatsapp-float:hover {
            background: transparent;
            color: var(--primary);
            transform: scale(1.05);
        }

        /* ═══════════════════════════════════════
           BLINKING CORNER CURSOR
           ═══════════════════════════════════════ */

        .blink-cursor {
            position: fixed;
            bottom: 1.5rem;
            left: 1.5rem;
            color: var(--primary);
            font-family: 'Inter', monospace;
            font-weight: 300;
            font-size: 1.2rem;
            animation: blink 1s step-end infinite;
            z-index: 900;
            pointer-events: none;
            opacity: 0.5;
        }

        /* ═══════════════════════════════════════
           REVEAL ANIMATIONS
           ═══════════════════════════════════════ */

        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }
        .reveal.in-view {
            opacity: 1;
            transform: translateY(0);
        }

        /* ═══════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════ */

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-menu-toggle { display: block; }
            .container { padding: 0 1rem; }

            .hero { padding-top: 4rem; min-height: auto; padding-bottom: 3rem; }
            .hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
            .hero-subtitle { font-size: 0.95rem; }

            .stats-row { gap: 1.5rem; }
            .stat-number { font-size: 1.8rem; }

            .services-grid,
            .blog-home-grid,
            .cases-grid,
            .steps-grid,
            .plans-grid { grid-template-columns: 1fr; }

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

            .tool-row {
                grid-template-columns: 100px 1fr;
                gap: 0.5rem;
            }
            .tool-desc { display: none; }

            .section-title { font-size: 1.5rem; }

            .blink-cursor { display: none; }
            .whatsapp-float { bottom: 1rem; right: 1rem; }

            .cta-group { flex-direction: column; }
            .cta-primary, .cta-secondary { text-align: center; }

            .final-cta .cta-command {
                font-size: 1.3rem;
                padding: 0.8rem 1.2rem;
            }
        }
