/* global React, Eyebrow, useIsMobile, useInView, Reveal */ const DOCTORALIA_URL = 'https://www.doctoralia.com.br/bruna-bianca-mazoro-duarte-chaves/oftalmologista/paco-do-lumiar'; const GOOGLE_REVIEW_URL = 'https://maps.app.goo.gl/tWLFPxkk53XNfefF9'; const BADGES = [ { iconClass: 'ph ph-google-logo', label: 'Google', stat: '5,0', sub: '44 avaliações', href: GOOGLE_REVIEW_URL }, { iconClass: 'ph-fill ph-seal-check', label: 'Doctoralia', stat: '100%', sub: 'pacientes satisfeitos', href: DOCTORALIA_URL }, { iconClass: 'ph-fill ph-star', label: 'Doctoralia', stat: '5,0', sub: '18 opiniões', href: DOCTORALIA_URL }, ]; function Stars({ size = 13 }) { return (
{[1,2,3,4,5].map(i => )}
); } // Selo de confiança compacto, construído por nós (não é o widget nativo da // Doctoralia) — mesma altura, borda e hover em todos, e link direto para a // fonte real (perfil Doctoralia / Google). O widget de agendamento completo // já vive na seção "Agendamento"; aqui é só prova social resumida. function TrustBadge({ iconClass, label, stat, sub, href }) { return (
{ e.currentTarget.style.transform = 'translateY(-2px)'; e.currentTarget.style.boxShadow = 'var(--shadow-card)'; }} onMouseLeave={e => { e.currentTarget.style.transform = 'none'; e.currentTarget.style.boxShadow = 'var(--shadow-glow)'; }}>
{label}
{stat}
{sub}
); } function PhotoCollage({ isMobile }) { const radius = 20; const shadow = { boxShadow: 'var(--shadow-cove)', borderRadius: radius, overflow: 'hidden' }; return (
Consulta de refração na Cuidar dos Olhos
Dra. Bruna Bianca realizando exame com lâmpada de fenda
Explicação de diagnóstico com modelo de olho
); } function Reviews() { const isMobile = useIsMobile(); const [gridRef, inView] = useInView(); return (
Avaliações

O que dizem sobre nós

Avaliações reais de pacientes, direto da Doctoralia e do Google.

{BADGES.map(b => )}
); } Object.assign(window, { Reviews });