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

        body {
            font-family: 'Philosopher', sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: #e8e8e8;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Efeito de partículas místicas */
        .mystic-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(34, 139, 34, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(75, 0, 130, 0.05) 0%, transparent 50%);
            animation: mysticFloat 20s ease-in-out infinite;
        }

        @keyframes mysticFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* Header */
        header {
            text-align: center;
            padding: 2rem 1rem;
            position: relative;
        }

        .logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            border-radius: 50%;
            border: 3px solid #8A2BE2;
            box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
            overflow: hidden;
            background: linear-gradient(45deg, #228B22, #8A2BE2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        h1 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 600;
            background: linear-gradient(45deg, #228B22, #8A2BE2, #40E0D0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .subtitle {
            font-size: 1.2rem;
            color: #b8860b;
            font-style: italic;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .breadcrumb {
            text-align: center;
            margin-bottom: 2rem;
            color: #888;
        }

        .breadcrumb a {
            color: #8A2BE2;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: #40E0D0;
        }

        /* Container principal */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        /* Filtros */
        .filters {
            background: rgba(138, 43, 226, 0.1);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 3rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(138, 43, 226, 0.2);
        }

        .filters h3 {
            font-family: 'Cinzel', serif;
            color: #228B22;
            margin-bottom: 1rem;
            text-align: center;
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.5rem 1rem;
            border: 2px solid #8A2BE2;
            background: transparent;
            color: #8A2BE2;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Philosopher', sans-serif;
        }

        .filter-btn:hover, .filter-btn.active {
            background: #8A2BE2;
            color: white;
            box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
        }

        /* Grid de cursos */
        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        /* Card do curso */
        .course-card {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(138, 43, 226, 0.2);
            position: relative;
        }

        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
            border-color: #8A2BE2;
        }

        .course-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
            transition: left 0.5s ease;
            z-index: 1;
        }

        .course-card:hover::before {
            left: 100%;
        }

        /* Header do card com imagem */
        .card-header {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .card-header img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .course-card:hover .card-header img {
            transform: scale(1.1);
        }

        .course-status {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
        }

        .status-ativo {
            background: rgba(34, 139, 34, 0.9);
            color: white;
        }

        .status-esgotado {
            background: rgba(220, 20, 60, 0.9);
            color: white;
        }

        .status-cancelado {
            background: rgba(128, 128, 128, 0.9);
            color: white;
        }

        .course-type {
            position: absolute;
            top: 1rem;
            left: 1rem;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
            background: rgba(138, 43, 226, 0.9);
            color: white;
        }

        /* Body do card */
        .card-body {
            padding: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .course-title {
            font-family: 'Cinzel', serif;
            font-size: 1.3rem;
            color: #228B22;
            margin-bottom: 0.5rem;
        }

        .course-facilitator {
            color: #8A2BE2;
            font-style: italic;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .course-description {
            color: #d3d3d3;
            line-height: 1.6;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .course-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .info-icon {
            color: #8A2BE2;
        }

        .course-price {
            font-size: 1.2rem;
            font-weight: bold;
            color: #b8860b;
            text-align: center;
            margin-bottom: 1rem;
        }

        /* Footer do card */
        .card-footer {
            padding: 1rem 1.5rem;
            border-top: 1px solid rgba(138, 43, 226, 0.2);
            background: rgba(138, 43, 226, 0.05);
        }

        .course-actions {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            justify-content: center;
            margin-bottom: 1rem;
        }

        /* Layout para quando há botões de contato junto com o botão principal */
        .course-actions .btn-primary,
        .course-actions .btn-disabled {
            margin-bottom: 0.5rem;
        }

        /* Container para botões de contato */
        .course-actions .btn-whatsapp,
        .course-actions .btn-telegram {
            margin: 0.2rem;
        }

        .btn {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-family: 'Philosopher', sans-serif;
            font-weight: bold;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(45deg, rgba(34, 139, 34, 0.8), rgba(138, 43, 226, 0.8));
            backdrop-filter: blur(10px);
            border: 2px solid rgba(34, 139, 34, 0.6);
            color: white;
            box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
        }

        .btn-primary:hover {
            background: linear-gradient(45deg, rgba(34, 139, 34, 0.9), rgba(138, 43, 226, 0.9));
            border-color: rgba(34, 139, 34, 0.8);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(34, 139, 34, 0.5);
        }

        .btn-secondary {
            background: rgba(138, 43, 226, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(138, 43, 226, 0.5);
            color: #8A2BE2;
        }

        .btn-secondary:hover {
            background: rgba(138, 43, 226, 0.4);
            border-color: rgba(138, 43, 226, 0.8);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
        }

        .btn-disabled {
            background: rgba(100, 100, 100, 0.3);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(100, 100, 100, 0.4);
            color: #999;
            cursor: not-allowed;
        }

        .btn-disabled:hover {
            transform: none;
            box-shadow: none;
        }

        /* Botões de contato específicos */
        .btn-whatsapp {
            background: linear-gradient(45deg, rgba(37, 211, 102, 0.8), rgba(37, 211, 102, 0.6));
            backdrop-filter: blur(10px);
            border: 2px solid rgba(37, 211, 102, 0.6);
            color: white;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            font-size: 0.8rem;
            padding: 0.6rem 1rem;
        }

        .btn-whatsapp:hover {
            background: linear-gradient(45deg, rgba(37, 211, 102, 0.9), rgba(37, 211, 102, 0.8));
            border-color: rgba(37, 211, 102, 0.8);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
        }

        .btn-telegram {
            background: linear-gradient(45deg, rgba(0, 136, 204, 0.8), rgba(0, 136, 204, 0.6));
            backdrop-filter: blur(10px);
            border: 2px solid rgba(0, 136, 204, 0.6);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
            font-size: 0.8rem;
            padding: 0.6rem 1rem;
        }

        .btn-telegram:hover {
            background: linear-gradient(45deg, rgba(0, 136, 204, 0.9), rgba(0, 136, 204, 0.8));
            border-color: rgba(0, 136, 204, 0.8);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
        }

        .course-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
        }

        .tag {
            padding: 0.2rem 0.6rem;
            background: rgba(34, 139, 34, 0.2);
            border: 1px solid rgba(34, 139, 34, 0.5);
            border-radius: 12px;
            font-size: 0.8rem;
            color: #228B22;
        }

        /* Loading e estados */
        .loading {
            text-align: center;
            padding: 3rem;
            color: #8A2BE2;
            font-size: 1.2rem;
        }

        .no-courses {
            text-align: center;
            padding: 3rem;
            color: #888;
            font-style: italic;
        }

        /* Elementos decorativos */
        .mystical-symbol {
            font-size: 2rem;
            color: #8A2BE2;
            margin: 1rem 0;
            opacity: 0.6;
            animation: glow 3s ease-in-out infinite alternate;
            text-align: center;
        }

        @keyframes glow {
            from { text-shadow: 0 0 5px #8A2BE2; }
            to { text-shadow: 0 0 20px #8A2BE2, 0 0 30px #8A2BE2; }
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .courses-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .filter-buttons {
                flex-direction: column;
                align-items: center;
            }

            .course-actions {
                flex-direction: column;
                gap: 0.8rem;
            }

            .course-info {
                grid-template-columns: 1fr;
            }

            h1 {
                font-size: 2rem;
            }

            .container {
                padding: 1rem;
            }

            .btn {
                padding: 0.7rem 1.2rem;
                font-size: 0.85rem;
            }
        }

        /* Animações de entrada */
        .fade-in {
            animation: fadeIn 0.6s ease-in;
        }

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