/* global React, Eyebrow, useIsMobile, useInView, Reveal, trackEvent, DoctoraliaWidget */ function SchedulingSection() { const isMobile = useIsMobile(); const [sectionRef, inView] = useInView({ threshold: 0.2 }); return (
Agendamento

Agende sua consulta em poucos cliques

Escolha o melhor dia e horĂ¡rio direto na nossa agenda online

trackEvent('agendamento_click', { agendamento_source: 'widget' })} style={{ background: 'var(--cream-100)', border: '1px solid var(--line-1)', borderRadius: 24, padding: isMobile ? 28 : 40, boxShadow: 'var(--shadow-glow)', width: '100%', boxSizing: 'border-box', }} >
); } Object.assign(window, { SchedulingSection });