        /* ----- PALETA NEON ----- */
        :root {
            --lilac: #8300fc;
            --lilac-soft: #a64dff;
            --orange: #fe807f;
            --orange-soft: #ffb3b2;
            --white: #ffffff;
            --dark: #0b001a;
            --shadow-neon: 0 8px 32px rgba(131, 0, 252, 0.35);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--dark);
            color: var(--white);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* textos e links */
        a, a:hover {
            color: var(--white);
            text-decoration: none;
        }

        .text-lilac { color: var(--lilac); }
        .text-orange { color: var(--orange); }
        .bg-lilac { background: var(--lilac); }
        .bg-orange { background: var(--orange); }
        .border-orange { border-color: var(--orange); }
		
		/* Estilo base (para todos os tamanhos) */
		.logo-img {
		  max-width: 100%;
		  height: auto;
		  display: block;
		  margin: 0 auto;
		}

        /* ----- HERO / HEADER (sem menu) ----- */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 1.5rem;
            background: radial-gradient(circle at 20% 30%, #2a0047 0%, #0b001a 90%);
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(131,0,252,0.15) 0%, transparent 70%);
            top: -100px;
            right: -100px;
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-logo {
            font-size: 4.5rem;
            font-weight: 800;
            letter-spacing: -1px;
            background: linear-gradient(135deg, var(--lilac), var(--orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px rgba(131,0,252,0.3);
            display: inline-block;
        }

        .hero-slogan {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero-slogan span {
            background: linear-gradient(135deg, var(--orange), #ffb07c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .btn-neon {
            background: var(--orange);
            color: #0b001a;
            font-weight: 700;
            padding: 1rem 2.8rem;
            border-radius: 60px;
            font-size: 1.3rem;
            border: none;
            box-shadow: 0 0 30px rgba(254, 128, 127, 0.5);
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .btn-neon:hover {
            background: #ff6f6e;
            transform: scale(1.02) translateY(-3px);
            box-shadow: 0 0 50px rgba(254, 128, 127, 0.8);
            color: #0b001a;
        }

        .btn-neon i {
            font-size: 1.8rem;
        }

        /* ----- BLOCOS DE SESSÃO (cards modernos) ----- */
        .section-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(131, 0, 252, 0.25);
            border-radius: 48px;
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow-neon);
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
        }

        .section-title .highlight {
            background: linear-gradient(135deg, var(--orange), #ffb07c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ----- FAQ (collapse/expand com ícones) ----- */
        .faq-item {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 20px;
            border: 1px solid rgba(131, 0, 252, 0.2);
            margin-bottom: 1.2rem;
            transition: 0.2s;
        }

        .faq-item:hover {
            border-color: var(--orange);
        }

        .faq-question {
            font-weight: 600;
            font-size: 1.2rem;
            padding: 1.2rem 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--white);
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
            transition: 0.2s;
        }

        .faq-question i {
            font-size: 1.6rem;
            color: var(--orange);
            transition: 0.3s;
        }

        .faq-question[aria-expanded="true"] i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem 1.5rem;
            color: #d9d0e6;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* ----- PROVA SOCIAL (imagem placeholder) ----- */
        .prova-placeholder {
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.04);
            border: 2px dashed rgba(254, 128, 127, 0.3);
            padding: 3rem 1rem;
            text-align: center;
            color: #b8a8cc;
            font-weight: 500;
            transition: 0.3s;
            min-height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .prova-placeholder i {
            font-size: 3.2rem;
            color: var(--orange);
            margin-bottom: 0.5rem;
        }

        /* ----- FOOTER (roxo neon, sem menu) ----- */
        .footer-neon {
            background: var(--lilac);
            padding: 1.8rem 0;
            margin-top: 2rem;
            box-shadow: 0 -8px 30px rgba(131, 0, 252, 0.3);
        }

        .footer-neon p {
            margin: 0;
            font-weight: 500;
            letter-spacing: 0.3px;
            color: var(--white);
        }

        /* responsividade */
        @media (max-width: 768px) {
            .hero-logo { font-size: 3.2rem; }
            .hero-slogan { font-size: 2rem; }
            .btn-neon { padding: 0.8rem 2rem; font-size: 1.1rem; }
            .section-title { font-size: 1.8rem; }
            .section-card { padding: 1.8rem 1.2rem; }
			.logo-img { width: 80%; }
        }

        @media (max-width: 480px) {
            .hero-logo { font-size: 2.5rem; }
            .hero-slogan { font-size: 1.6rem; }
            .btn-neon { width: 100%; justify-content: center; }
			.logo-img { width: 80%; }
        }

        /* acessibilidade / foco */
        .faq-question:focus-visible {
            outline: 2px solid var(--orange);
            outline-offset: -2px;
            border-radius: 20px;
        }
