    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
        min-height: 100vh;
        color: #2d3748;
    }

    .page-wrapper {
        position: relative;
        overflow: hidden;
    }

    /* Elementos decorativos */
    .bg-decoration {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
    }

    .circle-1 {
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(109, 40, 217, 0.1) 0%, rgba(109, 40, 217, 0.05) 100%);
        animation: float 20s infinite ease-in-out;
    }

    .circle-2 {
        position: absolute;
        bottom: -150px;
        left: -150px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: linear-gradient(225deg, rgba(109, 40, 217, 0.08) 0%, rgba(109, 40, 217, 0.03) 100%);
        animation: float 25s infinite ease-in-out reverse;
    }

    @keyframes float {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        33% { transform: translate(30px, -30px) rotate(120deg); }
        66% { transform: translate(-20px, 20px) rotate(240deg); }
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        position: relative;
        z-index: 1;
    }

    /* Header da página */
    .page-header {
        text-align: center;
        margin-bottom: 50px;
        padding: 40px 20px;
        background: white;
        border-radius: 30px 30px 30px 30px;
        box-shadow: 0 20px 40px rgba(109, 40, 217, 0.1);
        position: relative;
        overflow: hidden;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #6d28d9, #9f7aea, #6d28d9);
        background-size: 200% 100%;
        animation: gradientMove 3s infinite linear;
    }

    @keyframes gradientMove {
        0% { background-position: 0% 0%; }
        100% { background-position: 200% 0%; }
    }

    .page-header h1 {
        font-size: 3.5em;
        color: #6d28d9;
        margin-bottom: 15px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 3px 3px 0 rgba(109, 40, 217, 0.1);
    }

    .page-header .subtitle {
        font-size: 1.2em;
        color: #718096;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Card principal */
    .main-card {
        background: white;
        border-radius: 40px;
        padding: 60px;
        box-shadow: 0 30px 60px rgba(109, 40, 217, 0.15);
        margin-bottom: 40px;
        position: relative;
        overflow: hidden;
    }

    .main-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 200px;
        height: 200px;
        background: linear-gradient(135deg, transparent 50%, rgba(109, 40, 217, 0.03) 100%);
        border-radius: 50%;
    }

    /* Seções */
    .section {
        margin-bottom: 40px;
        position: relative;
        z-index: 2;
    }

    .section:last-child {
        margin-bottom: 0;
    }

    .section-title {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
        position: relative;
    }

    .section-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #6d28d9, #9f7aea);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        box-shadow: 0 10px 20px rgba(109, 40, 217, 0.3);
    }

    .section-icon i {
        color: white;
        font-size: 24px;
    }

    .section-title h2 {
        font-size: 2em;
        color: #2d3748;
        font-weight: 700;
        position: relative;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #6d28d9, #9f7aea);
        border-radius: 2px;
    }

    .section-content {
        padding-left: 70px;
    }

    .section-content p {
        font-size: 1.1em;
        line-height: 1.8;
        color: #4a5568;
        margin-bottom: 20px;
    }

    .section-content p:last-child {
        margin-bottom: 0;
    }

    .section-content p b {
        color: #6d28d9;
        font-weight: 700;
    }

    /* Cards de recursos */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .feature-card {
        background: linear-gradient(135deg, #f8fafc, #f1f5f9);
        padding: 25px;
        border-radius: 20px;
        transition: all 0.3s ease;
        border: 1px solid rgba(109, 40, 217, 0.1);
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px rgba(109, 40, 217, 0.15);
        border-color: #6d28d9;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        background: #6d28d9;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 24px;
        color: white;
    }

    .feature-card h3 {
        font-size: 1.3em;
        color: #2d3748;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .feature-card p {
        color: #718096;
        line-height: 1.6;
        font-size: 0.95em;
    }

    /* Data de atualização */
    .update-date {
        margin-top: 50px;
        padding: 20px;
        background: linear-gradient(135deg, #f3f0ff, #e9e2ff);
        border-radius: 15px;
        text-align: center;
        border: 1px solid #6d28d9;
    }

    .update-date p {
        color: #6d28d9;
        font-weight: 600;
        font-size: 1.1em;
        margin: 0;
    }

    .update-date p b {
        background: #6d28d9;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        margin-left: 10px;
        font-weight: 500;
    }

    /* Responsividade */
    @media (max-width: 768px) {
        .page-header h1 {
            font-size: 2.5em;
        }

        .main-card {
            padding: 30px;
        }

        .section-content {
            padding-left: 0;
        }

        .section-title {
            flex-direction: column;
            text-align: center;
        }

        .section-icon {
            margin-right: 0;
            margin-bottom: 15px;
        }

        .section-title h2::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .features-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Loader (mantendo o original) */
    .fh5co-loader {
        display: none;
    }

    /* Animações */
    .animate-box {
        animation: fadeInUp 1s ease forwards;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }