
        /* Reset e configurações gerais */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Garamond', 'Times New Roman', serif;
        }

        body {
            background-color: #0a0a0a;
            color: #c9c9c9;
            line-height: 1.6;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(20, 0, 30, 0.3) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(40, 0, 20, 0.3) 0%, transparent 20%);
            min-height: 100vh;
        }

        /* Cabeçalho */
        header {
            background-color: rgba(10, 5, 15, 0.9);
            padding: 20px 0;
            border-bottom: 1px solid #2a0a2a;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            text-align: center;
            margin-bottom: 15px;
        }

        .logo h1 {
            font-size: 3.5rem;
            color: #8a2a8a;
            text-shadow: 0 0 10px rgba(138, 42, 138, 0.5);
            letter-spacing: 3px;
            font-weight: normal;
            margin-bottom: 5px;
        }

        .logo p {
            font-size: 1rem;
            color: #7a7a7a;
            letter-spacing: 5px;
            text-transform: uppercase;
        }

        nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
        }

        nav li {
            margin: 0 15px;
        }

        nav a {
            color: #b0b0b0;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 5px 10px;
            transition: all 0.3s ease;
            border-bottom: 1px solid transparent;
        }

        nav a:hover {
            color: #c56ac5;
            border-bottom: 1px solid #8a2a8a;
        }

        /* Conteúdo Principal */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%232a0a2a" stroke-width="1"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="%232a0a2a" stroke-width="0.5"/></svg>');
            background-size: cover;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 50px;
            border-bottom: 1px solid #2a0a2a;
        }

        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #d8d8d8;
            text-shadow: 0 0 10px rgba(138, 42, 138, 0.3);
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #a8a8a8;
        }

        .cta-button {
            display: inline-block;
            background-color: transparent;
            color: #c56ac5;
            padding: 12px 30px;
            border: 1px solid #8a2a8a;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .cta-button:hover {
            background-color: rgba(138, 42, 138, 0.2);
            box-shadow: 0 0 15px rgba(138, 42, 138, 0.4);
        }

        .content-section {
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2rem;
            color: #c56ac5;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(to right, transparent, #8a2a8a, transparent);
        }

        .topics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .topic-card {
            background-color: rgba(20, 15, 25, 0.7);
            border: 1px solid #2a0a2a;
            padding: 25px;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .topic-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, transparent, #8a2a8a, transparent);
        }

        .topic-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            border-color: #8a2a8a;
        }

        .topic-card h3 {
            font-size: 1.5rem;
            color: #d8d8d8;
            margin-bottom: 15px;
            border-left: 3px solid #8a2a8a;
            padding-left: 10px;
        }

        .topic-card p {
            color: #a8a8a8;
            margin-bottom: 15px;
        }

        .read-more {
            color: #c56ac5;
            text-decoration: none;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
        }

        .read-more::after {
            content: '→';
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .read-more:hover::after {
            transform: translateX(3px);
        }

        footer {
            background-color: rgba(10, 5, 15, 0.95);
            padding: 40px 0 20px;
            border-top: 1px solid #2a0a2a;
            margin-top: 50px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            color: #c56ac5;
            margin-bottom: 20px;
            border-bottom: 1px solid #2a0a2a;
            padding-bottom: 10px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: #a8a8a8;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #c56ac5;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a0a2a;
            color: #7a7a7a;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .logo h1 {
                font-size: 2.5rem;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav li {
                margin: 5px 0;
            }
            
            .hero {
                padding: 50px 0;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .topics-grid {
                grid-template-columns: 1fr;
            }
        }
   