Help
RSS
API
Feed
Maltego
Contact
Domain > agendarconsulta.clinica.work
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-01-20
104.26.13.14
(
ClassC
)
2025-12-01
104.18.16.58
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyDate: Mon, 01 Dec 2025 10:38:21 GMTContent-Type: text/htmlContent-Length: 167Connection: keep-aliveCache-Control: max-age3600Expires: Mon, 01 Dec 2025 11:38:21 GMTLocation: https://agendarconsulta.clinica.work/speculation-rules: /cdn-cgi/speculationServer: cloudflareCF-RAY: 9a71f45678b0fef1-PDXalt-svc: h3:443; ma86400 html>head>title>301 Moved Permanently/title>/head>body>center>h1>301 Moved Permanently/h1>/center>hr>center>cloudflare/center>/body>/html>
Port 443
HTTP/1.1 200 OKDate: Mon, 01 Dec 2025 10:38:21 GMTContent-Type: text/htmlTransfer-Encoding: chunkedConnection: keep-aliveServer: cloudflareCF-Ray: 9a71f456d9daa60a-PDXCF-Cache-Status: DYNAMICVary: Accept-EncodingCf-Placement: local-PDXNEL: {success_fraction:0,report_to:cf-nel,max_age:604800}Report-To: {endpoints:{url:https:\/\/a.nel.cloudflare.com\/report\/v4?sAjsXiKPw61wo9qZgc6jrb1TNzVwG0k3RBHVHV1BUnb2%2FRvUSW5rJPCcjPIrj0xUP8cR8PST5Nfz%2FgM78RqIO38%2Bqrz7eri3bbfwNFCo9l%2BNAerIgb0Xn533IGcdtzElp%2B%2FmLsqXWKj7THhvFxR2P},group:cf-nel,max_age:604800}speculation-rules: /cdn-cgi/speculationalt-svc: h3:443; ma86400 !DOCTYPE html>html langpt-BR> head>!-- Global Metadata -->meta charsetutf-8>meta nameviewport contentwidthdevice-width,initial-scale1>link relicon typeimage/svg+xml href/favicon.svg>!-- Canonical URL -->link relcanonical hrefhttps://agendarconsulta.clinica.work/>!-- Primary Meta Tags -->title>Agendar consultas com especialistas do ClínicaWork/title>meta nametitle contentAgendar consultas com especialistas do ClínicaWork>meta namedescription contentEncontre profissionais de saúde especializados em atender tratamentos em todo o Brasil. Pesquise e escolha o especialista que melhor se adequa ao seu caso>!-- Open Graph / Facebook -->meta propertyog:type contentwebsite>meta propertyog:url contenthttps://agendarconsulta.clinica.work/>meta propertyog:title contentAgendar consultas com especialistas do ClínicaWork>meta propertyog:description contentEncontre profissionais de saúde especializados em atender tratamentos em todo o Brasil. Pesquise e escolha o especialista que melhor se adequa ao seu caso>meta propertyog:image content/blog-placeholder-1.jpg>!-- Twitter -->meta propertytwitter:card contentsummary_large_image>meta propertytwitter:url contenthttps://agendarconsulta.clinica.work/>meta propertytwitter:title contentAgendar consultas com especialistas do ClínicaWork>meta propertytwitter:description contentEncontre profissionais de saúde especializados em atender tratamentos em todo o Brasil. Pesquise e escolha o especialista que melhor se adequa ao seu caso>meta propertytwitter:image content/blog-placeholder-1.jpg>meta nameastro-view-transitions-enabled contenttrue>meta nameastro-view-transitions-fallback contentanimate>script typedd081c1d106add6b45a076f0-module src/_astro/ClientRouter.astro_astro_type_script_index_0_lang.BScVxmeO.js>/script>script typedd081c1d106add6b45a076f0-text/javascript> function init() { preloadTheme(); onScroll(); animate(); updateThemeButtons(); setGiscusTheme(); const backToTop document.getElementById(back-to-top); backToTop?.addEventListener(click, (event) > scrollToTop(event)); const backToPrev document.getElementById(back-to-prev); backToPrev?.addEventListener(click, () > window.history.back()); const lightThemeButton document.getElementById(light-theme-button); lightThemeButton?.addEventListener(click, () > { localStorage.setItem(theme, light); toggleTheme(false); updateThemeButtons(); }); const darkThemeButton document.getElementById(dark-theme-button); darkThemeButton?.addEventListener(click, () > { localStorage.setItem(theme, dark); toggleTheme(true); updateThemeButtons(); }); const systemThemeButton document.getElementById(system-theme-button); systemThemeButton?.addEventListener(click, () > { localStorage.setItem(theme, system); toggleTheme(window.matchMedia((prefers-color-scheme: dark)).matches); updateThemeButtons(); }); window .matchMedia((prefers-color-scheme: dark)) .addEventListener(change, (event) > { if (localStorage.theme system) { toggleTheme(event.matches); } }); document.addEventListener(scroll, onScroll); } function updateThemeButtons() { const theme localStorage.getItem(theme); const lightThemeButton document.getElementById(light-theme-button); const darkThemeButton document.getElementById(dark-theme-button); const systemThemeButton document.getElementById(system-theme-button); function removeActiveButtonTheme(button) { button?.classList.remove(bg-black/5); button?.classList.remove(dark:bg-white/5); } function addActiveButtonTheme(button) { button?.classList.add(bg-black/5); button?.classList.add(dark:bg-white/5); } removeActiveButtonTheme(lightThemeButton); removeActiveButtonTheme(darkThemeButton); removeActiveButtonTheme(systemThemeButton); if (theme light) { addActiveButtonTheme(lightThemeButton); } else if (theme dark) { addActiveButtonTheme(darkThemeButton); } else { addActiveButtonTheme(systemThemeButton); } } function animate() { const animateElements document.querySelectorAll(.animate); animateElements.forEach((element, index) > { setTimeout(() > { element.classList.add(show); }, index * 100); }); } function onScroll() { if (window.scrollY > 0) { document.documentElement.classList.add(scrolled); } else { document.documentElement.classList.remove(scrolled); } } function scrollToTop(event) { event.preventDefault(); window.scrollTo({ top: 0, behavior: smooth, }); } function toggleTheme(dark) { const css document.createElement(style); css.appendChild( document.createTextNode( `* { -webkit-transition: none !important; -moz-transition: none !important; -o-transition: none !important; -ms-transition: none !important; transition: none !important; } `, ), ); document.head.appendChild(css); if (dark) { document.documentElement.classList.add(dark); } else { document.documentElement.classList.remove(dark); } window.getComputedStyle(css).opacity; document.head.removeChild(css); setGiscusTheme(); } function preloadTheme() { const userTheme localStorage.theme; if (userTheme light || userTheme dark) { toggleTheme(userTheme dark); } else { toggleTheme(window.matchMedia((prefers-color-scheme: dark)).matches); } } const setGiscusTheme () > { const giscus document.querySelector(.giscus-frame); const isDark document.documentElement.classList.contains(dark); if (giscus) { const url new URL(giscus.src); url.searchParams.set(theme, isDark ? dark : light); giscus.src url.toString(); } }; document.addEventListener(DOMContentLoaded, () > init()); document.addEventListener(astro:after-swap, () > init()); preloadTheme();/script>link relstylesheet href/_astro/_slug_.C3fbVL65.css>style>data-astro-transition-scopeastro-bwabbhoa-1 { view-transition-name: logo; }@layer astro { ::view-transition-old(logo) { animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; animation-name: astroFadeOut; }::view-transition-new(logo) { animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; animation-name: astroFadeIn; }data-astro-transitionback::view-transition-old(logo) { animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; animation-name: astroFadeOut; }data-astro-transitionback::view-transition-new(logo) { animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; animation-name: astroFadeIn; } }data-astro-transition-fallbackold data-astro-transition-scopeastro-bwabbhoa-1, data-astro-transition-fallbackolddata-astro-transition-scopeastro-bwabbhoa-1 { animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; animation-name: astroFadeOut; }data-astro-transition-fallbacknew data-astro-transition-scopeastro-bwabbhoa-1, data-astro-transition-fallbacknewdata-astro-transition-scopeastro-bwabbhoa-1 { animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; animation-name: astroFadeIn; }data-astro-transitionbackdata-astro-transition-fallbackold data-astro-transition-scopeastro-bwabbhoa-1, data-astro-transitionbackdata-astro-transition-fallbackolddata-astro-transition-scopeastro-bwabbhoa-1 { animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; animation-name: astroFadeOut; }data-astro-transitionbackdata-astro-transition-fallbacknew data-astro-transition-scopeastro-bwabbhoa-1, data-astro-transitionbackdata-astro-transition-fallbacknewdata-astro-transition-scopeastro-bwabbhoa-1 { animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; animation-name: astroFadeIn; }/style>style>data-astro-transition-scopeastro-ephrrych-2 { view-transition-name: caixa-pesquisa; }@layer astro { ::view-transition-old(caixa-pesquisa) { animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; animation-name: astroFadeOut; }::view-transition-new(caixa-pesquisa) { animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; animation-name: astroFadeIn; }data-astro-transitionback::view-transition-old(caixa-pesquisa) { animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; animation-name: astroFadeOut; }data-astro-transitionback::view-transition-new(caixa-pesquisa) { animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; animation-name: astroFadeIn; } }data-astro-transition-fallbackold data-astro-transition-scopeastro-ephrrych-2, data-astro-transition-fallbackolddata-astro-transition-scopeastro-ephrrych-2 { animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; animation-name: astroFadeOut; }data-astro-transition-fallbacknew data-astro-transition-scopeastro-ephrrych-2, data-astro-transition-fallbacknewdata-astro-transition-scopeastro-ephrrych-2 { animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; animation-name: astroFadeIn; }data-astro-transitionbackdata-astro-transition-fallbackold data-astro-transition-scopeastro-ephrrych-2, data-astro-transitionbackdata-astro-transition-fallbackolddata-astro-transition-scopeastro-ephrrych-2 { animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; animation-name: astroFadeOut; }data-astro-transitionbackdata-astro-transition-fallbacknew data-astro-transition-scopeastro-ephrrych-2, data-astro-transitionbackdata-astro-transition-fallbacknewdata-astro-transition-scopeastro-ephrrych-2 { animation-duration: 180ms; animation-timing-function: cubic-bezier(0.76, 0, 0.24, 1); animation-fill-mode: both; animation-name: astroFadeIn; }/style>/head> body> div vaul-drawer-wrapper> div classrelative flex min-h-screen flex-col bg-background> div classmin-h-screen flex flex-col bg-background items-center justify-center relative> div classmx-auto max-w-screen-sm px-3> div classflex flex-row items-center justify-start space-x-1.5 rounded-lg text-base font-medium leading-none mx-auto h-10 w-auto data-astro-transition-scopeastro-bwabbhoa-1> svg classpointer-events-none h-8 w-8 text-teal-600 viewBox0 0 1054.474 1067.304 stroke-linecapround stroke-linejoinround>g transformtranslate(-253.901 -639.349)>path fillnone dM0 0H1024V1024H0z transformtranslate(267 661)>/path>path fillnone dM0 0H1024V1024H0z transformtranslate(267 661)>/path>path fillnone classstroke-current stroke-width80 stroke-linecapround stroke-linejoinround dM1133.155 1519.648s-121.675 142.951-346.824 146.937-500.579-173.71-492.242-508.751c8.552-304.142 260.466-479.84 492.242-478.475s376.825 112.125 420.17 244.716-61.344 282.726-238.229 253.947>/path>circle cx120.375 cy120.375 r120.375 classfill-current transformtranslate(1067.625 1349.097) shape-renderinggeometricPrecision>/circle>path fillnone classstroke-current stroke-width80 stroke-linecapround stroke-linejoinround dM688.04 1031.359s292.546-70.615 292.546 135.576-310.2 128.757-310.2 128.757>/path>circle cx89.9 cy89.9 r89.9 classfill-current transformtranslate(568.487 1203.326) shape-renderinggeometricPrecision>/circle>circle cx89.9 cy89.9 r89.9 classfill-current transformtranslate(568.487 932.79) shape-renderinggeometricPrecision>/circle>/g>/svg> div classpointer-events-none ml-2 text-left font-bold text-slate-700 text-2xl>Clínica.Work/div> /div> h1 classtext-4xl font-bold text-pnpm dark:text-white mt-2 mb-6 bg-gradient-to-r from-teal-900 via-teal-800 to-teal-600 inline-block text-transparent bg-clip-text>Encontre profissionais de saúde para agendar consultas/h1> style>astro-island,astro-slot,astro-static-slot{display:contents}/style>script typedd081c1d106add6b45a076f0-text/javascript>(()>{var easync t>{await(await t())()};(self.Astro||(self.Astro{})).loade;window.dispatchEvent(new Event(astro:load));})();;(()>{var AObject.defineProperty;var g(i,o,a)>o in i?A(i,o,{enumerable:!0,configurable:!0,writable:!0,value:a}):ioa;var d(i,o,a)>g(i,typeof o!symbol?o+:o,a);{let i{0:t>m(t),1:t>a(t),2:t>new RegExp(t),3:t>new Date(t),4:t>new Map(a(t)),5:t>new Set(a(t)),6:t>BigInt(t),7:t>new URL(t),8:t>new Uint8Array(t),9:t>new Uint16Array(t),10:t>new Uint32Array(t),11:t>1/0*t},ot>{letl,et;return l in i?il(e):void 0},at>t.map(o),mt>typeof t!object||tnull?t:Object.fromEntries(Object.entries(t).map((l,e)>l,o(e)));class y extends HTMLElement{constructor(){super(...arguments);d(this,Component);d(this,hydrator);d(this,hydrate,async()>{var b;if(!this.hydrator||!this.isConnected)return;let e(bthis.parentElement)null?void 0:b.closest(astro-islandssr);if(e){e.addEventListener(astro:hydrate,this.hydrate,{once:!0});return}let cthis.querySelectorAll(astro-slot),n{},hthis.querySelectorAll(templatedata-astro-template);for(let r of h){let sr.closest(this.tagName);s!null&&s.isSameNode(this)&&(nr.getAttribute(data-astro-template)||defaultr.innerHTML,r.remove())}for(let r of c){let sr.closest(this.tagName);s!null&&s.isSameNode(this)&&(nr.getAttribute(name)||defaultr.innerHTML)}let p;try{pthis.hasAttribute(props)?m(JSON.parse(this.getAttribute(props))):{}}catch(r){let sthis.getAttribute(component-url)||unknown>,vthis.getAttribute(component-export);throw v&&(s+` (export ${v})`),console.error(`hydrate Error parsing props for component ${s}`,this.getAttribute(props),r),r}let u;await this.hydrator(this)(this.Component,p,n,{client:this.getAttribute(client)}),this.removeAttribute(ssr),this.dispatchEvent(new CustomEvent(astro:hydrate))});d(this,unmount,()>{this.isConnected||this.dispatchEvent(new CustomEvent(astro:unmount))})}disconnectedCallback(){document.removeEventListener(astro:after-swap,this.unmount),document.addEventListener(astro:after-swap,this.unmount,{once:!0})}connectedCallback(){if(!this.hasAttribute(await-children)||document.readyStateinteractive||document.readyStatecomplete)this.childrenConnectedCallback();else{let e()>{document.removeEventListener(DOMContentLoaded,e),c.disconnect(),this.childrenConnectedCallback()},cnew MutationObserver(()>{var n;((nthis.lastChild)null?void 0:n.nodeType)Node.COMMENT_NODE&&this.lastChild.nodeValueastro:end&&(this.lastChild.remove(),e())});c.observe(this,{childList:!0}),document.addEventListener(DOMContentLoaded,e)}}async childrenConnectedCallback(){let ethis.getAttribute(before-hydration-url);e&&await import(e),this.start()}async start(){let eJSON.parse(this.getAttribute(opts)),cthis.getAttribute(client);if(Astrocvoid 0){window.addEventListener(`astro:${c}`,()>this.start(),{once:!0});return}try{await Astroc(async()>{let nthis.getAttribute(renderer-url),h,{default:p}await Promise.all(import(this.getAttribute(component-url)),n?import(n):()>()>{}),uthis.getAttribute(component-export)||default;if(!u.includes(.))this.Componenthu;else{this.Componenth;for(let f of u.split(.))this.Componentthis.Componentf}return this.hydratorp,this.hydrate},e,this)}catch(n){console.error(`astro-island Error hydrating ${this.getAttribute(component-url)}`,n)}}attributeChangedCallback(){this.hydrate()}}d(y,observedAttributes,props),customElements.get(astro-island)||customElements.define(astro-island,y)}})();/script>astro-island uidZtHsjz prefixr2 component-url/_astro/search-input.hFHISOn5.js component-exportSearchInput renderer-url/_astro/client.ReEkB4WC.js props{"className":0,"h-16 text-base p-4 font-semibold","data-astro-transition-scope":0,"astro-ephrrych-2"} ssr clientload opts{"name":"SearchInput","value":true} data-astro-transition-scopeastro-ephrrych-2 await-children>input classflex w-full border border-input bg-background ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm flex-1 shadow-none rounded-lg h-16 text-base p-4 font-semibold placeholderPesquisar um profissional ou especialização value/>!--astro:end-->/astro-island> /div> /div> div classbg-slate-200 pb-16> div classmx-auto max-w-screen-sm p-6 -mt-16 bg-white rounded-lg shadow-xl relative z-10 border border-slate-200> div classprose prose-slate max-w-full dark:prose-invert prose-img:mx-auto prose-img:my-auto prose-headings:font-semibold prose-headings:text-black prose-headings:dark:text-white space-y-4> h2>Como agendar uma consulta: Guia prático/h2> p>Agendar consultas com médicos, nutricionistas, psiquiatras e psicólogos nunca foi tão simples e prático como com o ClínicaWork. Nossa plataforma online conecta pacientes a profissionais de saúde de todo o Brasil, oferecendo agilidade e segurança no processo de marcação. O foco do ClínicaWork é facilitar o acesso ao atendimento médico e otimizar o tempo tanto dos pacientes quanto dos profissionais de saúde./p> div classimw> img src/agendar-consultas.webp altTrês Formas Fáceis de Agendar sua Consulta classw-616px h-410px max-w-full aspect-video> /div> h2>Três Formas Fáceis de Agendar sua Consulta/h2> h3>Contato pelo WhatsApp/h3> p>Com 99,9% da população brasileira usando o WhatsApp, oferecemos conexão direta com o profissional de saúde. Você pode esclarecer dúvidas sobre tratamentos, convênios aceitos ou qualquer outra questão antes de agendar./p> h3>Agendamento pela Agenda Aberta/h3> p>Acesse horários disponíveis e reserve facilmente. Após a reserva, assine o Termo de Comparecimento, garantindo seu compromisso sem custo adicional. Essa medida promove a responsabilidade no comparecimento às consultas./p> h3>Agendamento Antecipado com Pagamento via Pix/h3> p>Confirme sua consulta pagando antecipadamente através de Pix. Esta opção inclui uma taxa administrativa de 12%, que cobre declarações fiscais e a emissão de nota fiscal. Esse valor é destinado exclusivamente à manutenção da plataforma e não é repassado ao médico./p> h2>Transparência nas operações e agendamentos/h2> p>O ClínicaWork segue rigorosamente as normas da Lei Geral de Proteção de Dados (LGPD) e as regulamentações dos conselhos de saúde no Brasil. Nossa plataforma também incentiva que os pacientes avaliem os profissionais após o atendimento, promovendo práticas éticas e a confiança entre médico e paciente./p> h3>Importância das Avaliações/h3> p>Avaliar positivamente ajuda outros pacientes a encontrar os melhores profissionais, enquanto feedbacks negativos contribuem para a melhoria contínua do serviço médico./p> h2>Por que escolher o ClínicaWork?/h2>ul> li> strong>Conveniência para o paciente/strong>: Acesso direto à agenda do médico, permitindo escolher o melhor horário com poucos cliques./li> li> strong>Otimização para o profissional de saúde/strong>: Ferramentas que organizam a agenda e aumentam a capacidade de atendimento, garantindo o cuidado necessário para cada paciente./li> /ul> h3>Termo de Comparecimento/h3> p>Ao assinar o termo, você se compromete a comparecer à consulta. Em caso de ausência, será aplicada uma multa de 50% do valor da consulta. O não pagamento da multa pode acarretar sanções legais, como inclusão nos serviços de proteção ao crédito (SPC, Serasa, Boa Vista, entre outros)./p> h2>Por que o ClínicaWork é a Melhor Escolha?/h2> p>Nosso objetivo é superar plataformas como o Doctoralia com um foco em personalização e acessibilidade. Oferecemos:/p> ul> li> strong>Atendimento personalizado/strong>: Resposta ágil via WhatsApp com suporte humano./li> li> strong>Processos intuitivos/strong>: Desde a marcação até a avaliação final, tudo é otimizado para sua conveniência./li> li> strong>Inovação/strong>: Termo de Comparecimento para maior responsabilidade e compromisso./li> li> strong>Confiança/strong>: Pagamentos seguros e emissão de nota fiscal./li> /ul> h2>Sou profissional de saúde, posso estar no ClínicaWork?/h2> p>Sim! Comece agora mesmo fazendo o a hrefhttps://cadastro.clinica.work titlecadastro da conta profissional>cadastro da conta profissional clicando aqui/a>./p> /div> /div> /div> /div> /div> script typedd081c1d106add6b45a076f0-module src/_astro/base.astro_astro_type_script_index_0_lang.aKlI5fMm.js>/script> script src/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js data-cf-settingsdd081c1d106add6b45a076f0-|49 defer>/script>/body> /html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]