import React, { useState, useEffect, useRef } from 'react'; import { Star, Check, ChevronDown, ChevronUp, ShieldCheck, Play, Menu, X, ArrowRight } from 'lucide-react'; // --- CONFIGURATION & ASSETS --- const CHECKOUT_URL = "https://pay.hotmart.com/W103028095S?checkoutMode=10&bid=1763726439368"; const ASSETS = { logo: "https://raw.githubusercontent.com/marinho-hub/oratoria-magnetica-assets/b630ae542ede95cc2766244be79638504eb31d0d/LOGO_METODO_ORATORIA_MAGNETICA.png", hero: "https://raw.githubusercontent.com/marinho-hub/oratoria-magnetica-assets/main/foto-capa-header.png", titleGraphic: "https://raw.githubusercontent.com/marinho-hub/oratoria-magnetica-assets/main/Libere_o_Poder_da-removebg-preview.png", bonus1: "https://raw.githubusercontent.com/marinho-hub/oratoria-magnetica-assets/main/B%C3%94NUS%20ORATORIA%20MAGNETICA.png", bonus2: "https://raw.githubusercontent.com/marinho-hub/oratoria-magnetica-assets/main/B%C3%94NUS%20ORATORIA%20MAGNETICA%20(2).png", bonus3: "https://raw.githubusercontent.com/marinho-hub/oratoria-magnetica-assets/main/B%C3%94NUS%20ORATORIA%20MAGNETICA%20(3).png", bonus4: "https://raw.githubusercontent.com/marinho-hub/oratoria-magnetica-assets/main/B%C3%94NUS%20ORATORIA%20MAGNETICA%20(5).png", testimonial1: "https://raw.githubusercontent.com/marinho-hub/oratoria-magnetica-assets/main/1.png", testimonial2: "https://raw.githubusercontent.com/marinho-hub/oratoria-magnetica-assets/main/2.png", testimonial3: "https://raw.githubusercontent.com/marinho-hub/oratoria-magnetica-assets/main/3.png", testimonial4: "https://raw.githubusercontent.com/marinho-hub/oratoria-magnetica-assets/main/4.png", testimonial5: "https://raw.githubusercontent.com/marinho-hub/oratoria-magnetica-assets/main/5.png" }; const FAQs = [ { q: "O curso é para tímidas?", a: "Sim. Exercícios graduais e acolhimento garantem avanço sem exposição forçada." }, { q: "Quanto tempo por dia?", a: "Aulas curtas + 20–30 minutos de prática diária." }, { q: "Tem garantia?", a: "Sim — 7 dias." }, { q: "Como são as aulas ao vivo?", a: "Sessões de correção e acolhimento com análise prática." }, { q: "Como funciona o acesso?", a: "Acesso por 1 ano com atualizações e comunidade." } ]; // --- SHARED STYLES --- // Gold Gradient for Text/Borders const goldTextClass = "bg-clip-text text-transparent bg-gradient-to-r from-[#BF953F] via-[#F5E08E] to-[#AA771C]"; const goldBgClass = "bg-gradient-to-r from-[#BF953F] via-[#B38728] to-[#AA771C]"; const goldBorderClass = "border border-[#BF953F]"; // --- COMPONENTS --- const GoldButton = ({ text, subtext, className = "", fullWidth = false }) => (
{text} {subtext && ( {subtext} )}
{/* Shine effect */}
); const SectionHeading = ({ children, subtitle, align = "center" }) => (

{children}

{subtitle &&

{subtitle}

}
); const BenefitCard = ({ title, icon, desc }) => (
{icon}

{title}

{desc}

); const BonusCard = ({ image, title, value }) => (
{title}
Bônus Exclusivo

{title}

); const AccordionItem = ({ question, answer, isOpen, onClick }) => (

{answer}

); const TestimonialImage = ({ src }) => (
Depoimento
); // --- MAIN APP COMPONENT --- export default function App() { const [openFaq, setOpenFaq] = useState(0); return (
{/* STYLES INJECTION FOR SCROLLBAR & ANIMATION */}