:root {
            --primary: #764ba2;
            --primary-light: #667eea;
            --bg-light-1: #f3f4f6;
            --bg-light-2: #f8fafc;
            --text-dark: #1f2937;
            --text-secondary: #6b7280;
            --text-muted: #9ca3af;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* NAVBAR */
        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }

        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-logo i {
            font-size: 1.8rem;
        }

        .navbar-menu {
            display: flex;
            align-items: center;
            gap: 35px;
            list-style: none;
            margin: 0;
        }

        .navbar-menu a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .navbar-menu a:hover {
            color: var(--primary);
        }

        .navbar-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .navbar-menu a:hover::after {
            width: 100%;
        }

        .navbar-cta {
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: white !important;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
        }

        .navbar-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(118, 75, 162, 0.4);
            color: white !important;
        }

        .navbar-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary);
            cursor: pointer;
        }

        @media (max-width: 968px) {
            .navbar-container {
                position: relative;
                display: grid;
                grid-template-columns: 60px 1fr 60px;
                align-items: center;
                padding: 0 0;
            }

            .navbar-toggle {
                display: block;
                grid-column: 1;
                justify-self: start;
                margin-left: 0;
                padding-left: 0;
            }

            .navbar-logo {
                grid-column: 2;
                justify-self: center;
                margin: 0;
            }

            .navbar-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                gap: 25px;
                transition: left 0.3s ease;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
                grid-column: 1 / -1;
            }

            .navbar-menu.active {
                left: 0;
            }

            .navbar-cta {
                margin-top: 20px;
            }
        }

        /* HERO SECTION */
        .hero {
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: white;
            padding: 80px 0px 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }

        .hero-container {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            text-align: left;
            padding: 0 20px;
        }

        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: -56px;
        }

        .hero-image img {
            width: 100%;
            height: auto;
        }

        @keyframes floatImage {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @media (max-width: 968px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-content {
                text-align: center;
            }

            .hero-image {
                order: -1;
            }


        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease;
        }

        .hero-content p {
            font-size: clamp(1.1rem, 3vw, 1.3rem);
            margin-bottom: 2rem;
            opacity: 0.95;
            font-weight: 400;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero-cta {
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .btn-hero {
            background: white;
            color: var(--primary);
            padding: 18px 48px;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 50px;
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            color: var(--primary);
        }

        .hero-badge {
            margin-top: 2rem;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 12px 28px;
            border-radius: 50px;
            font-size: 1rem;
            animation: fadeInUp 0.8s ease 0.6s backwards;
        }

        .hero-badge .stars {
            color: #fbbf24;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* TRUST SECTION */
        .trust-section {
            background: var(--bg-light-2);
            padding: 20px 20px;
            text-align: center;
            border-bottom: 1px solid #e5e7eb;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .trust-item i {
            font-size: 1.8rem;
            color: var(--primary);
        }

        .trust-item strong {
            font-size: 1.5rem;
            color: var(--text-dark);
            font-weight: 700;
        }

        .trust-item span {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* SECTIONS */
        section {
            padding: 80px 20px;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-dark);
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: -2rem auto 3rem;
        }

        /* HOW IT WORKS */
        .steps-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .step-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(118, 75, 162, 0.08);
            transition: all 0.3s ease;
            position: relative;
            border: 2px solid transparent;
        }

        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(118, 75, 162, 0.15);
            border-color: var(--primary-light);
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.3rem;
            box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
        }

        .step-icon {
            font-size: 3.5rem;
            margin: 20px 0 20px;
        }

        .step-card h5 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .step-card p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* BENEFITS */
        .benefits-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
        }

        .benefit-card {
            background: white;
            border-radius: 20px;
            padding: 45px 35px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary);
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(118, 75, 162, 0.12);
        }

        .benefit-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: block;
        }

        .benefit-card h5 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .benefit-card p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        /* ECOSYSTEM SECTION */
        /* AJUDA SECTION — mobile-first */
        .ajuda-section {
            background: var(--bg-light-1);
            padding: 60px 20px;
            text-align: center;
        }

        .ajuda-cards {
            max-width: 760px;
            margin: 40px auto 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
            text-align: left;
        }

        .ajuda-card {
            background: white;
            border-radius: 20px;
            padding: 28px 24px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .ajuda-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(118, 75, 162, 0.14);
            border-color: var(--primary-light);
        }

        .ajuda-card-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 14px;
        }

        .ajuda-card-icon {
            width: 46px;
            height: 46px;
            min-width: 46px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.15rem;
        }

        .ajuda-card-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0;
            line-height: 1.4;
        }

        .ajuda-card-problem {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0 0 16px;
        }

        .ajuda-card-solution {
            border-left: 4px solid var(--primary);
            padding: 12px 16px;
            border-radius: 0 12px 12px 0;
            background: rgba(118, 75, 162, 0.05);
            font-size: 0.95rem;
            color: var(--text-dark);
            line-height: 1.7;
            margin: 0;
        }

        .ajuda-footer {
            max-width: 600px;
            margin: 48px auto 0;
        }

        .ajuda-footer-highlight {
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: white;
            padding: 36px 28px;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(118, 75, 162, 0.28);
        }

        .ajuda-footer-highlight p {
            font-size: 1rem;
            line-height: 1.75;
            margin: 0 0 24px;
            opacity: 0.97;
        }

        @media (min-width: 480px) {
            .ajuda-card-title {
                font-size: 1.1rem;
            }

            .ajuda-card-problem,
            .ajuda-card-solution {
                font-size: 1rem;
            }
        }

        @media (min-width: 768px) {
            .ajuda-section {
                padding: 80px 40px;
            }

            .ajuda-card {
                padding: 36px 32px;
            }

            .ajuda-card-title {
                font-size: 1.2rem;
            }

            .ajuda-footer-highlight {
                padding: 44px 40px;
            }

            .ajuda-footer-highlight p {
                font-size: 1.15rem;
            }
        }

        /* TESTIMONIALS */
        .testimonials-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(118, 75, 162, 0.12);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 30px;
            font-size: 6rem;
            color: var(--primary-light);
            opacity: 0.2;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-content {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--text-dark);
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 20px;
            border-top: 2px solid var(--bg-light-1);
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.3rem;
        }

        .author-info strong {
            display: block;
            color: var(--text-dark);
            font-weight: 700;
        }

        .author-info span {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .testimonial-stars {
            color: #fbbf24;
            margin-top: 5px;
        }

        /* BLOG SECTION */
        .blog-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(118, 75, 162, 0.15);
        }

        .blog-image {
            width: 100%;
            height: 240px;
            object-fit: cover;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
        }

        .blog-content {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .blog-category {
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .blog-date {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .blog-date i {
            font-size: 0.9rem;
        }

        .blog-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
            line-height: 1.4;
            flex: 1;
        }

        .blog-card h3:hover {
            color: var(--primary);
        }

        .blog-excerpt {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .blog-read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .blog-read-more:hover {
            gap: 12px;
            color: var(--primary-light);
        }

        .blog-read-more i {
            transition: transform 0.3s ease;
        }

        .blog-read-more:hover i {
            transform: translateX(4px);
        }

        .blog-cta {
            text-align: center;
            margin-top: 50px;
        }

        .btn-blog {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            color: var(--primary);
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            border: 2px solid var(--primary);
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .btn-blog:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(118, 75, 162, 0.3);
        }

        /* EARLY ACCESS */
        .early-access-section {
            background: var(--bg-light-2);
        }

        .early-access-intro {
            max-width: 700px;
            margin: 0 auto 50px;
            text-align: center;
        }

        .early-access-intro p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .early-access-container {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 35px;
        }

        @media (min-width: 769px) {
            .early-access-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .access-card {
            background: white;
            border-radius: 25px;
            padding: 45px 35px;
            box-shadow: 0 10px 40px rgba(118, 75, 162, 0.12);
            border: 2px solid #e5e7eb;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .access-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(118, 75, 162, 0.2);
            border-color: var(--primary-light);
        }

        .access-card.featured {
            border: 3px solid var(--primary);
            background: white;
            max-width: 600px;
        }

        .access-badge {
            position: absolute;
            top: 20px;
            right: -10px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: white;
            padding: 6px 20px;
            border-radius: 20px 0 0 20px;
            font-weight: 700;
            font-size: 0.8rem;
            box-shadow: 0 4px 10px rgba(118, 75, 162, 0.3);
        }

        .access-card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 25px;
        }

        .access-card h3 {
            font-size: 1.8rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .access-card-description {
            text-align: center;
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 30px;
            flex: 1;
        }

        .access-requirements {
            background: var(--bg-light-1);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
        }

        .access-requirements h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
            text-align: center;
        }

        .access-requirements ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .access-requirements li {
            padding: 10px 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.6;
        }

        .access-requirements li i {
            color: var(--primary);
            margin-top: 3px;
            flex-shrink: 0;
        }

        .btn-access {
            width: 100%;
            padding: 18px 30px;
            font-size: 1.2rem;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-access.primary {
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: white;
            box-shadow: 0 6px 20px rgba(118, 75, 162, 0.3);
        }

        .btn-access.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(118, 75, 162, 0.4);
            color: white;
        }

        .btn-access.secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-access.secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(118, 75, 162, 0.3);
        }

        .access-note {
            text-align: center;
            margin-top: 20px;
            padding: 15px;
            background: rgba(118, 75, 162, 0.05);
            border-radius: 12px;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .access-note i {
            color: var(--primary);
            margin-right: 5px;
        }

        .access-note strong {
            color: var(--text-dark);
        }

        @media (max-width: 768px) {
            .early-access-container {
                grid-template-columns: 1fr;
            }

            .access-card {
                padding: 35px 25px;
            }
        }

        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: var(--bg-light-2);
        }

        .faq-question i {
            color: var(--primary);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 30px 25px;
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* CTA FINAL */
        .cta-final {
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: white;
            text-align: center;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .cta-final::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.2;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-final h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .cta-final p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .btn-cta-final {
            background: white;
            color: var(--primary);
            padding: 20px 60px;
            font-size: 1.3rem;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            display: inline-block;
            text-decoration: none;
        }

        .btn-cta-final:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            color: var(--primary);
        }

        .cta-features {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cta-feature i {
            font-size: 1.5rem;
        }

        /* FOOTER */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 50px 20px 30px;
        }

        @media (max-width: 768px) {
            footer {
                padding-bottom: 100px;
            }
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255,255,255,0.6);
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        /* MOBILE OPTIMIZATIONS */
        @media (max-width: 768px) {
            section {
                padding: 60px 20px;
            }

            .hero {
                padding: 60px 0px 80px;
            }

            .comparison-row {
                grid-template-columns: 1fr 60px 60px;
                padding: 20px 15px;
                gap: 10px;
                font-size: 0.9rem;
            }

            .comparison-feature {
                font-size: 0.9rem;
            }

            .trust-badges {
                gap: 25px;
            }

            .trust-item {
                min-width: 120px;
            }

            .steps-container,
            .benefits-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card {
                padding: 40px 25px;
            }

            .cta-features {
                gap: 20px;
                font-size: 0.9rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        /* SOBRE NÓS SECTION */
        .sobre-section {
            background: white;
            padding: 80px 20px;
        }

        .sobre-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .sobre-content h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 2rem;
            line-height: 1.3;
        }

        .sobre-content .highlight-intro {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .sobre-content p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .sobre-content .signature {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-top: 2rem;
            font-style: italic;
        }

        .sobre-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .sobre-image img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(118, 75, 162, 0.2);
            transition: transform 0.3s ease;
        }

        .sobre-image img:hover {
            transform: scale(1.02);
        }

        .sobre-image-placeholder {
            width: 100%;
            max-width: 500px;
            height: 400px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed var(--primary-light);
        }

        .sobre-image-placeholder i {
            font-size: 4rem;
            color: var(--primary-light);
            opacity: 0.5;
        }

        @media (max-width: 968px) {
            .sobre-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .sobre-image {
                order: -1;
            }
        }

        /* SMOOTH SCROLL */
        html {
            scroll-behavior: smooth;
        }

        /* STICKY CTA MOBILE */
        .sticky-cta-mobile {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 12px 20px;
            background: white;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 9999;
            display: none;
            transition: transform 0.3s ease;
        }

        .sticky-cta-mobile.hidden {
            transform: translateY(100%);
        }

        .sticky-cta-mobile .btn-sticky {
            display: block;
            width: 100%;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: white;
            padding: 16px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            text-align: center;
            box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
            transition: all 0.3s ease;
        }

        .sticky-cta-mobile .btn-sticky:hover {
            box-shadow: 0 6px 20px rgba(118, 75, 162, 0.5);
            transform: translateY(-2px);
            color: white;
        }

        @media (max-width: 768px) {
            .sticky-cta-mobile {
                display: block;
            }
        }

        /* INTERMEDIATE CTAs */
        .intermediate-cta {
            text-align: center;
            margin-top: 40px;
        }

        .intermediate-cta h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .intermediate-cta .btn-access {
            display: inline-block;
            padding: 15px 35px;
            font-size: 1.1rem;
            text-decoration: none;
        }

        /* FAQ INTERMEDIATE CTA */
        .faq-cta-block {
            background: rgba(118, 75, 162, 0.05);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            margin: 20px 0;
        }

        .faq-cta-block p {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .faq-cta-block .btn-faq-cta {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
        }

        .faq-cta-block .btn-faq-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(118, 75, 162, 0.4);
            color: white;
        }

        .selo-container {
            text-align: center;
            margin-top: 10px;
        }

        .selo-container img {
            max-width: 200px;
            height: auto;
        }