<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Calculadoras on Atletx — Saúde e Atletismo</title>
		<link>https://www.atletx.com.br/calculadoras/</link>
		<description>Recent content in Calculadoras on Atletx — Saúde e Atletismo</description>
		<generator>Hugo</generator>
		<language>pt-BR</language>
		
		
		
		
			<atom:link href="https://www.atletx.com.br/calculadoras/index.xml" rel="self" type="application/rss+xml" />
			<item>
				<title>Calculadora de Frequência Cardíaca</title>
				<link>https://www.atletx.com.br/calculadoras/frequencia/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://www.atletx.com.br/calculadoras/frequencia/</guid>
				<description>&lt;div class=&#34;calc&#34;&gt;&#xA;  &lt;div class=&#34;row&#34;&gt;&#xA;    &lt;div class=&#34;field&#34;&gt;&#xA;      &lt;label for=&#34;idade&#34;&gt;Idade (anos)&lt;/label&gt;&#xA;      &lt;input type=&#34;number&#34; id=&#34;idade&#34; inputmode=&#34;numeric&#34; min=&#34;1&#34; max=&#34;120&#34; placeholder=&#34;Ex: 30&#34;&gt;&#xA;    &lt;/div&gt;&#xA;    &lt;div class=&#34;field&#34;&gt;&#xA;      &lt;label for=&#34;intens&#34;&gt;Intensidade (%)&lt;/label&gt;&#xA;      &lt;input type=&#34;number&#34; id=&#34;intens&#34; inputmode=&#34;numeric&#34; min=&#34;1&#34; max=&#34;100&#34; placeholder=&#34;Ex: 70&#34;&gt;&#xA;    &lt;/div&gt;&#xA;  &lt;/div&gt;&#xA;  &lt;button type=&#34;button&#34; onclick=&#34;calcFC()&#34;&gt;Calcular&lt;/button&gt;&#xA;  &lt;div class=&#34;calc-result&#34; id=&#34;res&#34;&gt;&#xA;    &lt;div class=&#34;big&#34; id=&#34;valor&#34;&gt;&lt;/div&gt;&#xA;    &lt;div class=&#34;msg&#34; id=&#34;msg&#34;&gt;&lt;/div&gt;&#xA;  &lt;/div&gt;&#xA;  &lt;p class=&#34;calc-note&#34;&gt;Fórmula: FC máxima = 220 − idade. Consulte um profissional antes de treinos intensos.&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;&lt;script&gt;&#xA;function calcFC(){&#xA;  var idade = parseFloat(document.getElementById(&#39;idade&#39;).value);&#xA;  var intens = parseFloat(document.getElementById(&#39;intens&#39;).value);&#xA;  if(!idade || !intens){ alert(&#39;Preencha idade e intensidade.&#39;); return; }&#xA;  var fcmax = 220 - idade, alvo = Math.round(fcmax*intens/100);&#xA;  document.getElementById(&#39;valor&#39;).textContent = alvo+&#39; bpm&#39;;&#xA;  document.getElementById(&#39;msg&#39;).textContent = &#39;FC máxima: &#39;+fcmax+&#39; bpm — alvo a &#39;+intens+&#39;% da máxima&#39;;&#xA;  document.getElementById(&#39;res&#39;).classList.add(&#39;show&#39;);&#xA;}&#xA;&lt;/script&gt;</description>
			</item>
			<item>
				<title>Calculadora de IMC</title>
				<link>https://www.atletx.com.br/calculadoras/imc/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://www.atletx.com.br/calculadoras/imc/</guid>
				<description>&lt;div class=&#34;calc&#34;&gt;&#xA;  &lt;div class=&#34;row&#34;&gt;&#xA;    &lt;div class=&#34;field&#34;&gt;&#xA;      &lt;label for=&#34;peso&#34;&gt;Peso (kg)&lt;/label&gt;&#xA;      &lt;input type=&#34;number&#34; id=&#34;peso&#34; inputmode=&#34;decimal&#34; step=&#34;0.1&#34; min=&#34;1&#34; placeholder=&#34;Ex: 72&#34;&gt;&#xA;    &lt;/div&gt;&#xA;    &lt;div class=&#34;field&#34;&gt;&#xA;      &lt;label for=&#34;altura&#34;&gt;Altura (cm)&lt;/label&gt;&#xA;      &lt;input type=&#34;number&#34; id=&#34;altura&#34; inputmode=&#34;numeric&#34; min=&#34;1&#34; placeholder=&#34;Ex: 175&#34;&gt;&#xA;    &lt;/div&gt;&#xA;  &lt;/div&gt;&#xA;  &lt;button type=&#34;button&#34; onclick=&#34;calcIMC()&#34;&gt;Calcular IMC&lt;/button&gt;&#xA;  &lt;div class=&#34;calc-result&#34; id=&#34;res&#34;&gt;&#xA;    &lt;div class=&#34;big&#34; id=&#34;valor&#34;&gt;&lt;/div&gt;&#xA;    &lt;div class=&#34;msg&#34; id=&#34;msg&#34;&gt;&lt;/div&gt;&#xA;  &lt;/div&gt;&#xA;  &lt;p class=&#34;calc-note&#34;&gt;O IMC é uma referência geral e não substitui a avaliação de um profissional de saúde.&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;&lt;script&gt;&#xA;function calcIMC(){&#xA;  var kg = parseFloat((document.getElementById(&#39;peso&#39;).value||&#39;&#39;).replace(&#39;,&#39;,&#39;.&#39;));&#xA;  var cm = parseFloat((document.getElementById(&#39;altura&#39;).value||&#39;&#39;).replace(&#39;,&#39;,&#39;.&#39;));&#xA;  if(!kg || !cm){ alert(&#39;Preencha peso e altura.&#39;); return; }&#xA;  var m = cm/100, imc = kg/(m*m), msg;&#xA;  if(imc &lt; 18.5) msg=&#39;Abaixo do peso&#39;;&#xA;  else if(imc &lt; 25) msg=&#39;Peso normal&#39;;&#xA;  else if(imc &lt; 30) msg=&#39;Sobrepeso&#39;;&#xA;  else if(imc &lt; 35) msg=&#39;Obesidade grau I&#39;;&#xA;  else if(imc &lt; 40) msg=&#39;Obesidade grau II&#39;;&#xA;  else msg=&#39;Obesidade grau III&#39;;&#xA;  document.getElementById(&#39;valor&#39;).textContent = imc.toFixed(1);&#xA;  document.getElementById(&#39;msg&#39;).textContent = msg;&#xA;  document.getElementById(&#39;res&#39;).classList.add(&#39;show&#39;);&#xA;}&#xA;&lt;/script&gt;</description>
			</item>
			<item>
				<title>Calculadora de Ritmo (Pace)</title>
				<link>https://www.atletx.com.br/calculadoras/ritmo/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://www.atletx.com.br/calculadoras/ritmo/</guid>
				<description>&lt;div class=&#34;calc&#34;&gt;&#xA;  &lt;div class=&#34;row&#34;&gt;&#xA;    &lt;div class=&#34;field&#34;&gt;&#xA;      &lt;label for=&#34;dist&#34;&gt;Distância (km)&lt;/label&gt;&#xA;      &lt;input type=&#34;number&#34; id=&#34;dist&#34; inputmode=&#34;decimal&#34; step=&#34;0.01&#34; min=&#34;0.1&#34; placeholder=&#34;Ex: 10&#34;&gt;&#xA;    &lt;/div&gt;&#xA;    &lt;div class=&#34;field&#34;&gt;&#xA;      &lt;label for=&#34;tempo&#34;&gt;Tempo (minutos)&lt;/label&gt;&#xA;      &lt;input type=&#34;number&#34; id=&#34;tempo&#34; inputmode=&#34;decimal&#34; step=&#34;0.1&#34; min=&#34;0.1&#34; placeholder=&#34;Ex: 50&#34;&gt;&#xA;    &lt;/div&gt;&#xA;  &lt;/div&gt;&#xA;  &lt;button type=&#34;button&#34; onclick=&#34;calcPace()&#34;&gt;Calcular ritmo&lt;/button&gt;&#xA;  &lt;div class=&#34;calc-result&#34; id=&#34;res&#34;&gt;&#xA;    &lt;div class=&#34;big&#34; id=&#34;valor&#34;&gt;&lt;/div&gt;&#xA;    &lt;div class=&#34;msg&#34; id=&#34;msg&#34;&gt;&lt;/div&gt;&#xA;  &lt;/div&gt;&#xA;  &lt;p class=&#34;calc-note&#34;&gt;Ritmo = tempo dividido pela distância. Ideal para corrida e caminhada.&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;&lt;script&gt;&#xA;function calcPace(){&#xA;  var d = parseFloat((document.getElementById(&#39;dist&#39;).value||&#39;&#39;).replace(&#39;,&#39;,&#39;.&#39;));&#xA;  var t = parseFloat((document.getElementById(&#39;tempo&#39;).value||&#39;&#39;).replace(&#39;,&#39;,&#39;.&#39;));&#xA;  if(!d || !t){ alert(&#39;Preencha distância e tempo.&#39;); return; }&#xA;  var paceMin = t/d, min = Math.floor(paceMin), sec = Math.round((paceMin-min)*60);&#xA;  if(sec===60){ min++; sec=0; }&#xA;  var vel = d/(t/60);&#xA;  document.getElementById(&#39;valor&#39;).textContent = min+&#39;:&#39;+(sec&lt;10?&#39;0&#39;:&#39;&#39;)+sec+&#39; /km&#39;;&#xA;  document.getElementById(&#39;msg&#39;).textContent = &#39;Velocidade média: &#39;+vel.toFixed(1)+&#39; km/h&#39;;&#xA;  document.getElementById(&#39;res&#39;).classList.add(&#39;show&#39;);&#xA;}&#xA;&lt;/script&gt;</description>
			</item>
	</channel>
</rss>
