:root {
            --brand-dark: #1a0b2e;
            --brand-purple: #3b0b45;
            --brand-purple-light: #5e1a6b;
            --brand-gray: #333333;
            --brand-light-gray: #f5f5f5;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #ffffff;
            color: var(--brand-dark);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 900;
        }

        .container-custom {
            max-width: 1230px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .purple-gradient {
            background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-dark) 100%);
        }

        .vibrant-gradient {
            background: linear-gradient(90deg, var(--brand-purple-light) 0%, var(--brand-purple) 50%, var(--brand-dark) 100%);
        }

        .accent-gradient {
            background: linear-gradient(90deg, #ec4899 0%, var(--brand-purple-light) 50%, var(--brand-purple) 100%);
        }

        .light-gradient {
            background: linear-gradient(45deg, rgba(59, 11, 69, 0.03) 0%, #ffffff 50%, rgba(59, 11, 69, 0.03) 100%);
        }

        .modern-shadow {
            box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
        }

        .transition-smooth {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Sticky Header Logic */
        .header-scrolled {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            padding-top: 0.25rem !important;
            padding-bottom: 0.25rem !important;
            z-index: 50;
            background: white;
        }

        .header-scrolled img {
            height: 30px !important;
        }

        /* AOS Simulation */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Fix for Icons visibility */
        .fa-solid, .fa-brands {
            display: inline-block;
        }

        .pagination ul {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 6px 12px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    text-decoration: none;
}

.pagination li .current {
    background: #7c3aed; /* roxo */
    color: #fff;
    border-color: #7c3aed;
}


