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

        :root {
            --bg: #0a0a0f;
            --card: #121218;
            --accent: #c89a6e;
            --accent2: #e08db8;
            --text: #f0e0e8;
            --text-muted: #7a6a72;
            --success: #7dd3a8;
            --footer-bg: #0f0f15;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', system-ui, sans-serif;
        }

        body {
            background: var(--bg);
            color: var(--text);
            min-height: 100vh;
            padding-bottom: 80px; /* Espaço para o footer fixo */
        }

        /* ===== NAV ===== */
        .nav {
            position: sticky;
            top: 0;
            background: rgba(10, 10, 15, 0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid #222228;
            z-index: 1000;
            padding: 18px 0;
        }

        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 2px;
        }

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

        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0e0e8;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 8px;
            line-height: 1;
        }

        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* ===== HERO ===== */
        .hero {
            text-align: center;
            padding: 80px 20px 60px;
        }

        .hero h1 {
            font-size: 3.6rem;
            line-height: 1.05;
            font-weight: 700;
            margin-bottom: 28px;
            letter-spacing: -1.5px;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 680px;
            margin: 0 auto 40px;
            line-height: 1.65;
        }

        .btn-primary {
            background: var(--accent);
            color: #0a0a0f;
            border: none;
            padding: 18px 52px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 8px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(200, 154, 110, 0.25);
        }

        .btn-primary:hover {
            background: #d4af7a;
            transform: translateY(-2px);
        }

        .section {
            padding: 60px 0;
        }

        .section-title {
            font-size: 2.3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text);
        }

        .section-subtitle {
            color: var(--text-muted);
            font-size: 1.2rem;
            max-width: 720px;
            margin-bottom: 55px;
            line-height: 1.7;
        }

        .roadmap-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 24px;
        }

        .roadmap-card {
            background: var(--card);
            border: 1px solid #222228;
            border-radius: 16px;
            padding: 32px 28px;
            transition: all 0.3s ease;
            position: relative;
        }

        .roadmap-card:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
            background: #1A1817;
        }

        .roadmap-card .icon {
            font-size: 2.8rem;
            margin-bottom: 24px;
            display: block;
        }

        .roadmap-card h3 {
            font-size: 1.45rem;
            margin-bottom: 14px;
            color: var(--text);
            font-weight: 600;
            line-height: 1.3;
        }

        .roadmap-card p {
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .status {
            display: inline-block;
            font-size: 0.75rem;
            padding: 6px 13px;
            border-radius: 6px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .status.disponivel {
            background: rgba(125, 211, 168, 0.12);
            color: var(--success);
        }

        .status.em-breve {
            background: rgba(200, 154, 110, 0.12);
            color: var(--accent);
        }

        .status.planejado {
            background: rgba(120, 120, 140, 0.12);
            color: #a8a8b8;
        }

        .status.premium {
            background: rgba(254, 0, 0, 0.12);
            color: #FFFFFF;
        }

        .category-header {
            color: var(--accent);
            font-size: 1.6rem;
            font-weight: 700;
            margin: 70px 0 26px;
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
            scroll-margin-top: 100px;
        }

        .category-header::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }

        .category-header .number {
            font-size: 1.1rem;
            background: #1f1f28;
            color: var(--accent);
            padding: 6px 15px;
            border-radius: 8px;
            font-weight: 800;
            border: 1px solid #33333a;
        }

        .categoria-menu {
            color: var(--accent);
            font-size: 1.6rem;
            font-weight: 700;
            margin: 70px 0 26px;
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
            scroll-margin-top: 100px;
        }

        .categoria-menu .mobilemenu {
            font-size: 1.5rem;
            background: #1f1f28;
            color: var(--accent);
            padding: 6px 20px;
            border-radius: 8px;
            font-weight: 800;
            border: 1px solid #33333a;
        }

        .privacy-note {
            background: #121218;
            border: 1px solid #222228;
            border-radius: 16px;
            padding: 45px;
            text-align: center;
            max-width: 820px;
            margin: 80px auto 0;
        }

        .footer {
            text-align: center;
            padding: 40px 20px 30px;
            color: #5a4a52;
            font-size: 0.95rem;
        }

        .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 40px;
        }

        .logo-img {
            width: 290px;
            height: auto;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease;
            border: 1px solid #2a2a35;
            padding: 12px;
            background: #121218;
        }

        .logo-img:hover {
            transform: scale(1.03);
        }

        .versions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
            margin-top: 20px;
        }

        .version-card {
            background: var(--card);
            border: 1px solid #222228;
            border-radius: 20px;
            padding: 40px 32px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .version-card:hover {
            border-color: var(--accent);
            transform: translateY(-6px);
        }

        .version-card.iniciante {
            border-color: #4ade80;
        }

        .version-card.essencial {
            border-color: #c89a6e;
        }

        .version-card.avancado {
            border-color: #a78bfa;
        }

        .version-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 24px;
        }

        .version-icon {
            font-size: 2.4rem;
        }

        .version-title {
            font-size: 1.65rem;
            font-weight: 700;
        }

        .version-subtitle {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 24px;
            line-height: 1.5;
        }

        .version-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .version-features li {
            padding: 8px 0;
            color: #d0c4cc;
            font-size: 0.97rem;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .version-features li::before {
            content: "→";
            color: var(--accent);
            font-weight: bold;
        }

        .btn-version {
            display: block;
            width: 100%;
            padding: 16px;
            text-align: center;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.05rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-iniciante {
            background: #4ade80;
            color: #0a0a0f;
        }

        .btn-essencial {
            background: #c89a6e;
            color: #0a0a0f;
        }

        .btn-avancado {
            background: #a78bfa;
            color: #0a0a0f;
        }

        .version-card:hover .btn-version {
            transform: scale(1.02);
        }

        .footer-note {
            text-align: center;
            margin-top: 60px;
            color: #5a4a52;
            font-size: 0.9rem;
        }

        .hamburger {
            display: block;
        }

        .nav-links {
            display: none;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #121218;
            border-bottom: 1px solid #222228;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            z-index: 999;
            max-height: 90vh;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 40px;
        }

        .mobile-menu a {
            display: block;
            color: #f0e0e8;
            text-decoration: none;
            padding: 14px 0;
            font-size: 1rem;
            border-bottom: 1px solid #222228;
            transition: color 0.2s ease;
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        .mobile-menu a:hover {
            color: var(--accent);
        }

        .mobile-menu .menu-header {
            font-size: 0.85rem;
            color: var(--accent);
            font-weight: 700;
            padding: 8px 0 12px;
            letter-spacing: 1px;
        }

        /* ===== FOOTER FIXO ESTILO APP ===== */
        .app-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(15, 15, 21, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-top: 1px solid #2a2a35;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 8px 0 env(safe-area-inset-bottom, 8px) 0;
            z-index: 1100;
            height: 72px;
            box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.6);
        }

        .footer-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #7a6a72;
            font-size: 0.65rem;
            font-weight: 500;
            transition: color 0.2s ease;
            padding: 4px 12px;
            border-radius: 12px;
            gap: 2px;
            min-width: 56px;
        }

        .footer-item .footer-icon {
            font-size: 1.7rem;
            line-height: 1.2;
            transition: transform 0.2s ease;
        }

        .footer-item span {
            font-size: 0.6rem;
            letter-spacing: 0.3px;
            text-transform: uppercase;
            opacity: 0.8;
        }

        .footer-item:hover {
            color: var(--accent);
        }

        .footer-item:hover .footer-icon {
            transform: translateY(-2px);
        }

        .footer-item.active {
            color: var(--accent);
        }

        .footer-item.active .footer-icon {
            transform: scale(1.05);
        }

        /* ===== RESPONSIVO ===== */
        @media (max-width: 768px) {
            .roadmap-card {
                width: 92% !important;
                margin: 0 auto;
            }
            .roadmap-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .desktop-nav {
                display: none !important;
            }
            .hamburger {
                display: block !important;
            }
            .nav-content {
                padding: 0 20px;
            }
            .container {
                padding: 0 20px;
            }
            .app-footer {
                height: 64px;
                padding: 4px 0 env(safe-area-inset-bottom, 4px) 0;
            }
            .footer-item .footer-icon {
                font-size: 1.5rem;
            }
            .footer-item span {
                font-size: 0.5rem;
            }
            .footer-item {
                min-width: 48px;
                padding: 2px 8px;
            }
            .logo-img {
                width: 220px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            body {
                padding-bottom: 70px;
            }
            .app-footer {
                height: 58px;
            }
            .footer-item .footer-icon {
                font-size: 1.3rem;
            }
            .footer-item span {
                font-size: 0.45rem;
            }
            .logo-img {
                width: 180px;
            }
        }

        /* Ajuste para iPhone com notch */
        @supports (padding-bottom: env(safe-area-inset-bottom)) {
            .app-footer {
                padding-bottom: calc(8px + env(safe-area-inset-bottom));
            }
        }
