 :root {
        --p-color: #a855f7;
        --p-glow: rgba(168, 85, 247, 0.4);
        --s-color: #06b6d4;
        --bg-dark: #050505;
        --glass: rgba(255, 255, 255, 0.03);
        --glass-border: rgba(255, 255, 255, 0.08);
        --input-bg: rgba(0, 0, 0, 0.4);
        --text-main: #f8fafc;
        --text-dim: #94a3b8;
        --accent-gradient: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    body.back-color {
        background-color: var(--bg-dark);
        color: var(--text-main);
        overflow-x: hidden;
        background-image:
        radial-gradient(circle at 10% 20%, rgba(168, 85, 247, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 40%);
    }

    .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        padding: 20px 0;
        backdrop-filter: blur(10px);
        background: rgba(5, 5, 5, 0.7);
        border-bottom: 1px solid var(--glass-border);
    }

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

    .logo {
        font-size: 24px;
        font-weight: 800;
        text-decoration: none;
        color: white !important;
        letter-spacing: -1px;
    }

    .logo span {
        color: var(--p-color);
    }

    .hero {
        padding: 160px 0 60px;
        text-align: center;
    }

    .badge-premium {
        background: var(--glass);
        border: 1px solid var(--glass-border);
        padding: 8px 18px;
        border-radius: 100px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 30px;
        font-size: 13px;
        font-weight: 600;
        color: var(--p-color);
    }

    .hero h1 {
        font-size: clamp(32px, 8vw, 72px);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 25px;
        letter-spacing: -2px;
    }

    .hero h1 span {
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .carousel-container {
        max-width: 900px;
        margin: 0 auto 60px;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid var(--glass-border);
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    }

    .feature-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        margin: 60px 0;
    }

    .feature-card {
        background: var(--glass);
        border: 1px solid var(--glass-border);
        padding: 30px;
        border-radius: 24px;
        transition: 0.4s;
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        width: calc(33.333% - 25px);
        min-width: 280px;
    }

    .feature-card:hover {
        border-color: var(--p-color);
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.05);
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        background: var(--accent-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #fff;
        margin-bottom: 18px;
    }

    .feature-card h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #fff;
    }

    .feature-card p {
        font-size: 14px;
        color: var(--text-dim);
        line-height: 1.6;
        margin-bottom: 0;
    }

    .pricing-card {
        background: var(--glass);
        border: 1px solid var(--glass-border);
        backdrop-filter: blur(15px);
        border-radius: 32px;
        padding: 45px 35px;
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        height: 100%;
        position: relative;
    }

    .pricing-card:hover {
        border-color: var(--p-color);
        transform: scale(1.02);
    }

    .price {
        font-size: 48px;
        font-weight: 800;
        margin: 20px 0;
        color: #fff;
        letter-spacing: -2px;
    }

    .btn-select-plan {
        background: var(--glass);
        border: 1px solid var(--glass-border);
        color: #fff;
        padding: 15px;
        border-radius: 16px;
        width: 100%;
        font-weight: 700;
        transition: 0.3s;
    }

    .pricing-card.active {
        border-color: var(--p-color);
        box-shadow: 0 0 40px var(--p-glow);
    }

    .pricing-card.active .btn-select-plan {
        background: var(--p-color);
        border-color: var(--p-color);
    }

    #form-compra-wrapper {
        display: none;
        padding: 80px 0;
    }

    .form-glass {
        background: var(--glass);
        border: 1px solid var(--glass-border);
        backdrop-filter: blur(20px);
        border-radius: 40px;
        padding: 60px;
    }

    .premium-input {
        background: var(--input-bg) !important;
        border: 1px solid var(--glass-border) !important;
        border-radius: 16px !important;
        padding: 16px 20px !important;
        color: #fff !important;
    }

    .status-msg {
        font-size: 11px;
        margin-top: 5px;
        display: block;
        font-weight: 600;
    }

    .btn-pay {
        background: var(--accent-gradient);
        color: #fff;
        border: none;
        padding: 22px;
        border-radius: 18px;
        font-weight: 800;
        width: 100%;
        text-transform: uppercase;
        box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
        transition: 0.4s;

    }

    .whatsapp-float {

        position: fixed;
        bottom: 40px;
        right: 40px;
        background: #25d366;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        color: #fff;
        z-index: 9999;

    }

    .btn-custom-plan-full {
        background: #25d366;
        color: #fff;
        border: none;
        padding: 22px;
        border-radius: 18px;
        font-weight: 800;
        width: 100%;
        text-transform: uppercase;
        text-decoration: none;
        display: block;
        transition: 0.4s;
        margin-top: 30px;
        text-align: center;
    }

    .btn-custom-plan-full:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
        color: #fff;
    }

    /* LGPD Banner */
    #lgpd-banner {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: rgba(10, 10, 12, 0.95);
        border: 1px solid var(--glass-border);
        padding: 20px;
        border-radius: 20px;
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 15px;
    }

    /* FAQ Style */
    .faq-section {
        max-width: 800px;
        margin: 80px auto;
    }

    .accordion-item {
        background: var(--glass) !important;
        border: 1px solid var(--glass-border) !important;
        border-radius: 16px !important;
        margin-bottom: 12px;
        overflow: hidden;
    }

    .accordion-button {
        background: transparent !important;
        color: #fff !important;
        font-weight: 600;
        box-shadow: none !important;
    }

    .accordion-body {
        color: var(--text-dim);
        font-size: 14px;
        line-height: 1.6;
    }

    p.button-teste {
        text-align: center;

    }

    button.testar-sistema a {
        color: white;
        text-decoration: none;
    }