* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #a855f7;
            --primary-dark: #9333ea;
            --bg-dark: #1a1a2e;
            --bg-darker: #0f0f1e;
            --card-bg: #2d2d44;
            --text-light: #f0f0f0;
            --text-muted: #a0a0b0;
            --border-color: #3d3d54;
            --accent-glow: rgba(168, 85, 247, 0.4);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
            color: var(--text-light);
            line-height: 1.6;
            min-height: 100vh;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(15, 15, 30, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.25rem;
            font-weight: bold;
        }

        .logo-circle {
            width: 2rem;
            height: 2rem;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 0.875rem;
        }

        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--primary);
        }

        /* Buttons */
        .btn {
            padding: 0.75rem 2rem;
            border-radius: 9999px;
            border: none;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.4), 0 0 40px rgba(168, 85, 247, 0.2);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            box-shadow: 0 0 30px rgba(168, 85, 247, 0.6), 0 0 60px rgba(168, 85, 247, 0.3);
            transform: translateY(-2px);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background: rgba(168, 85, 247, 0.1);
            box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
        }

        /* Hero Section */
        .hero {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 70vh;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(168, 85, 247, 0.05) 0%, transparent 100%);
            pointer-events: none;
        }

        .hero-content {
            text-align: center;
            max-width: 56rem;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 4rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero h1 .accent {
            color: var(--primary);
        }

        .hero p {
            font-size: 1.125rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            margin-bottom: 2rem;
        }

        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
            }
        }

        .hero-info {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .hero-badge {
            width: 2rem;
            height: 2rem;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.875rem;
            flex-shrink: 0;
            object-fit: cover; /* Para garantir que a imagem preencha o círculo */
        }

        .hero-cta {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .hero-cta a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .hero-cta a:hover {
            text-decoration: underline;
        }

        /* Why Us Section */
        .why-us {
            padding: 5rem 0;
            background: linear-gradient(to bottom, transparent, rgba(168, 85, 247, 0.05));
        }

        .why-us h2 {
            font-size: 2.25rem;
            text-align: center;
            margin-bottom: 4rem;
            font-weight: 700;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .card {
            padding: 1.5rem;
            border-radius: 0.5rem;
            border: 1px solid rgba(168, 85, 247, 0.3);
            background: rgba(45, 45, 68, 0.5);
            transition: all 0.3s ease;
        }

        .card:hover {
            border-color: rgba(168, 85, 247, 0.6);
            background: rgba(45, 45, 68, 0.8);
            box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
        }

        .card-icon {
            font-family: "Font Awesome 5 Free", "Font Awesome 5 Pro"; /* Adicionado fallback para Font Awesome 5 */
            font-weight: 900; /* Força o peso para ícones sólidos */
            color: white; /* Adicionado para garantir que o ícone seja branco */
            width: 3rem;
            height: 3rem;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .card h3 {
            font-size: 1.125rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .card-icon i {
            display: none; /* Esconde o ícone Font Awesome, pois agora é uma imagem */
        }

        .card-icon .card-img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Garante que a imagem preencha o círculo */
            border-radius: 50%; /* Garante que a imagem seja circular */
        }

        .card-icon svg {
            width: 1.5rem; /* Garante o tamanho correto do ícone SVG */
            height: 1.5rem;
        }

        .card p {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        /* Platforms Section */
        .platforms {
            padding: 5rem 0;
        }

        .platforms h2 {
            font-size: 1.875rem;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .platforms-list {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            margin-bottom: 3rem;
        }

        .platform-item {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .platform-youtube { color: #ff0000; }
        .platform-instagram { color: #e4405f; }
        .platform-facebook { color: #1877f2; }
        .platform-twitter { color: #1da1f2; }
        .platform-tiktok { color: #000000; }
        .platform-kwai { color: #ff6b00; }

        .platforms-question {
            text-align: center;
            margin-bottom: 2rem;
        }

        .platforms-question h3 {
            font-size: 1.875rem;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .platforms-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            align-items: center;
        }

        @media (min-width: 640px) {
            .platforms-buttons {
                flex-direction: row;
            }
        }

        /* Panel Section */
        .panel {
            padding: 5rem 0;
            background: rgba(45, 45, 68, 0.3);
        }

        .panel-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }



        /* Ajuste das imagens para desktop */
.panel-img {
    width: 60%; /* ou 50%, se quiser menor */
    max-width: 400px;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
}

        @media (max-width: 768px) {
            .panel-content {
                grid-template-columns: 1fr;
            }
        }

        .panel h2 {
            font-size: 2.25rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .panel-accent {
            width: 0.25rem;
            height: 3rem;
            background: var(--primary);
            border-radius: 9999px;
            margin-bottom: 1.5rem;
        }

        .panel p {
            font-size: 1.125rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        .panel-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        @media (min-width: 640px) {
            .panel-buttons {
                flex-direction: row;
            }
        }

        .panel-image {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0.05) 100%);
            border-radius: 0.5rem;
            height: 16rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .panel-image-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        /* Privileges Section */
        .privileges {
            padding: 5rem 0;
        }

        .privileges-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        @media (max-width: 768px) {
            .privileges-grid {
                grid-template-columns: 1fr;
            }
        }

        .privileges h2 {
            font-size: 2.25rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .privileges-box {
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 0.5rem;
            padding: 3rem;
            text-align: center;
            background: rgba(45, 45, 68, 0.5);
            margin-top: 3rem;
        }

        .privileges-box p {
            font-size: 1.125rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .privileges-box-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            align-items: center;
        }

        @media (min-width: 640px) {
            .privileges-box-buttons {
                flex-direction: row;
            }
        }

        /* Footer */
        footer {
            background: rgba(45, 45, 68, 0.5);
            border-top: 1px solid var(--border-color);
            padding: 3rem 0;
            margin-top: auto;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .footer-top {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .footer-top {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-nav {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        @media (min-width: 768px) {
            .footer-nav {
                justify-content: flex-end;
            }
        }

        .footer-nav a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 2rem;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            width: 3.5rem;
            height: 3.5rem;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            z-index: 40;
            border: none;
            font-size: 1.5rem;
        }

        /* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 5rem; /* Ajuste para não colidir com a nav-mobile */
    right: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    color: white;
    font-size: 1.9rem;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 5rem; /* Mantém a posição acima da nav-mobile */
    }
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}



        /* Responsive */
        @media (max-width: 768px) {
            nav {
                display: none;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero {
                min-height: 50vh;
                padding: 3rem 0;
            }

            .why-us,
            .platforms,
            .panel,
            .privileges {
                padding: 3rem 0;
            }

            .panel-img {
    width: 80%;
    max-width: 300px;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
}


.logo-img {
    width: 200px;
    height: 80px;
    object-fit: contain; /* Garante que a imagem se adapte, mantendo a proporção */
    display: block;
}


        }
