@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* ===== VARIABLES ===== */
:root {
  --bg: #030711;
  --surface: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.125);
  --text: #f8fafc;
  --text-muted: rgba(248, 250, 252, 0.8);
  --primary: #7d38f0;
  --accent: #e847eb;
  --footer-text: #94a3b8;
  --font: 'Inter', sans-serif;
  --radius: 0.5rem;
  --container: 600px;
  --transition: all 0.3s ease-in-out;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); }
input { font-family: var(--font); }

/* ===== LAYOUT ===== */
.wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.content { flex: 1; }

.calculadora-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  margin-top: 1.5rem;
  padding-bottom: 2rem;
}

/* ===== HEADER ===== */
.site-header {
  background: linear-gradient(to left, var(--accent), var(--primary));
  color: var(--text);
  padding: 48px 1rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  position: relative;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.lang-switch i { color: rgba(255,255,255,0.65); font-size: 0.7rem; }
.lang-active { color: #fff; }
.lang-sep { color: rgba(255,255,255,0.35); font-weight: 400; }
.lang-link { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
.lang-link:hover { color: #fff; }
.header-icon { font-size: 64px; margin-bottom: 16px; color: var(--text); }
.site-title {
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1;
  color: var(--text);
}
.site-subtitle {
  font-weight: 400;
  font-size: clamp(0.75rem, 2vw, 1.25rem);
  margin-top: 0.5rem;
  color: var(--text-muted);
}

/* ===== HEADER CARD ===== */
.site-header { display: none; }
.header-card {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  background: linear-gradient(to left, var(--accent), var(--primary));
  border-color: transparent;
}
.header-card:hover { border-color: transparent; }
.header-card-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}
.header-card-icon {
  color: rgba(255,255,255,0.9);
  font-size: 1.75rem;
  flex-shrink: 0;
}
.header-card-title {
  display: block;
  font-weight: 800;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: #fff;
  line-height: 1.2;
}
.header-card-subtitle {
  display: block;
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  color: rgba(255,255,255,0.8);
  margin-top: 0.25rem;
}

/* ===== CARDS ===== */
.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--surface);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  width: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  padding: 20px;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: #3b82f6;
}
.card-header {
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.card-icon {
  padding: 0.75rem;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.card-title {
  color: var(--text);
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  margin-left: 1rem;
}

/* ===== FLIP CARD ===== */
.flip-card {
  perspective: 1000px;
  height: 620px;
  margin-bottom: 1.5rem;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
}
.flip-card-front { z-index: 2; transform: rotateY(0deg); }
.flip-card-back { z-index: 1; transform: rotateY(180deg); }
.flip-card-flipped .flip-card-inner { transform: rotateY(180deg); }

/* Flip loading state */
.flip-loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* ===== SPINNER ===== */
.spinner {
  width: 2rem;
  height: 2rem;
  border: 3px solid rgba(59, 130, 246, 0.2);
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  margin-bottom: 0.5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== FORM ===== */
.input-hint {
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: var(--text-muted);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-row .input-float { flex: 1 1 200px; }

.calc-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.calc-actions .btn-primary {
  flex: 1;
  width: auto;
  margin-top: 0;
}
.btn-clear {
  flex: 0 0 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.btn-clear:hover { color: var(--accent); border-color: var(--accent); }
.btn-clear:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Floating label input */
.input-float {
  position: relative;
  margin-bottom: 1rem;
}
.input-float input {
  width: 100%;
  padding: 1.5rem 0.75rem 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.input-float input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.input-float label {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #94a3b8;
  pointer-events: none;
  transition: all 0.15s ease-in-out;
}
.input-float input:focus + label,
.input-float input:not(:placeholder-shown) + label {
  top: 0.4rem;
  transform: none;
  font-size: 0.72rem;
  color: #6b7280;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(to left, var(--accent), var(--primary));
  width: 100%;
  height: 44px;
  color: var(--text);
  font-size: 14px;
  padding: 0 2rem;
  border-radius: var(--radius);
  border: none;
  transition: opacity 0.2s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover { opacity: 0.9; }
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn-dark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #000;
  color: var(--text-muted);
  border: 3px solid #222;
  border-radius: var(--radius);
  font-size: 1rem;
}
.btn-dark:hover { border-color: #444; }
.btn-dark:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-dark-icon { font-size: 1.75rem; flex-shrink: 0; }

/* ===== RESULTS ===== */
.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
}
.result-actions { display: flex; gap: 0.5rem; }
.btn-icon {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 24px;
  padding: 0.25rem;
  line-height: 1;
  cursor: pointer;
}
.btn-icon:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-nav {
  background: none;
  border: none;
  color: var(--footer-text);
  font-size: 16px;
  padding: 0.25rem;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s;
}
.btn-nav:hover, .btn-nav:focus-visible { color: var(--accent); outline: none; }
.result-list { margin-top: 0.5rem; }
.result-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(108, 117, 125, 0.1);
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: var(--text-muted);
}
.result-item:last-of-type { border-bottom: none; }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  backdrop-filter: blur(4px);
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  cursor: default;
}
.share-preview canvas { cursor: zoom-in; }

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  bottom: 150px;
  right: 20px;
  display: none;
  z-index: 1000;
  background-color: #1d193e;
  padding: 10px;
  border: 1px solid rgba(30, 41, 59, 0.5);
  border-radius: 8px;
}
#backToTop:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ===== EMAIL CAPTURE ===== */
.email-section { margin-bottom: 1.5rem; }
.email-subtitle { color: var(--text-muted); font-size: 0.9rem; margin: 0.5rem 0 1rem; }
.email-form { width: 100%; }
.email-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.email-input {
  flex: 1 1 200px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
}
.email-input::placeholder { color: var(--footer-text); }
.email-input:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.email-btn { white-space: nowrap; }
.email-msg { margin-top: 0.75rem; font-size: 0.875rem; min-height: 1.2em; }
.email-msg.success { color: #4ade80; }
.email-msg.error { color: #f87171; }

/* ===== SUPPORT SECTION ===== */
.support-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}
.support-note { color: var(--text-muted); font-size: 0.875rem; margin-top: 0.5rem; padding-left: 1rem; }

/* ===== TOOL GRID ===== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-top: 0.75rem;
}
.tool-card {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.2s;
}
.tool-card:hover { border-color: var(--accent); }
.tool-card-icon { color: var(--accent); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.15rem; }
.tool-card strong { color: var(--text); font-size: 0.82rem; display: block; margin-bottom: 0.2rem; }
.tool-card small { color: var(--text-muted); font-size: 0.75rem; line-height: 1.3; }

/* ===== ARTICLE CARDS ===== */
.article-featured {
  display: block;
  text-decoration: none;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.article-featured img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}
.article-featured strong {
  font-size: 1rem;
  color: var(--text);
  display: block;
  margin-bottom: 0.35rem;
}
.article-featured small { color: var(--text-muted); font-size: 0.875rem; line-height: 1.4; }
.article-featured:hover strong { color: var(--accent); }

.article-card {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.article-card:last-child { border-bottom: none; }
.article-img { width: 120px; height: 80px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.article-body strong { display: block; margin-bottom: 0.25rem; }
.article-body small { color: var(--text-muted); font-size: 0.875rem; }

/* ===== FOOTER ===== */
footer {
  background-color: var(--bg);
  text-align: center;
  border-top: 1px solid rgba(30, 41, 59, 0.5);
  margin-top: 4rem;
  padding: 2rem 1rem;
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: var(--footer-text);
}
footer a { color: var(--footer-text); }
footer a:hover { color: var(--accent); }
footer p { margin-bottom: 0.25rem; }
.social-icons { display: flex; gap: 1rem; justify-content: center; margin: 0.75rem 0; }
.social-icons a { font-size: 1.625rem; }

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===== DESTAQUE DO CAMPO CALCULADO ===== */
.result-item.result-highlight {
  background: rgba(232, 71, 235, 0.08);
  border: 1px solid rgba(232, 71, 235, 0.25);
  border-radius: var(--radius);
  padding: 0.5rem 0.65rem;
  margin: 0.25rem -0.65rem;
  font-weight: 700;
  color: var(--text);
}
.result-item.result-highlight span:last-child {
  color: var(--accent);
  font-size: 1.05rem;
}

/* ===== CARD COMPARTILHÁVEL ===== */
.share-card-section { margin-bottom: 1.5rem; }
.share-preview {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}
.share-preview canvas {
  max-width: 100%;
  width: 270px;
  height: 338px;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(125, 56, 240, 0.35);
}
.share-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn-share {
  flex: 1 1 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-share:hover { opacity: 0.88; }
.btn-share:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-download { background: var(--surface); border: 1px solid var(--border); color: var(--text); }
/* ===== GRÁFICO ===== */
.chart-card { margin-bottom: 1.5rem; }
.chart-container {
  position: relative;
  height: 220px;
  margin-top: 0.5rem;
}

/* ===== AFILIADOS ===== */
.affiliates-section { margin-bottom: 1.5rem; }
.affiliates-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.affiliates-grid {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.affiliate-card {
  flex: 1 1 140px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  position: relative;
  transition: border-color 0.2s;
}
.affiliate-card:hover { border-color: #3b82f6; }

.affiliate-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 0.6rem;
  background: rgba(125, 56, 240, 0.2);
  color: #a78bfa;
  border: 1px solid rgba(125, 56, 240, 0.3);
  border-radius: 4px;
  padding: 1px 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.affiliate-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin-top: 0.5rem;
}
.affiliate-logo-irm     { background: #1a7a3c; }
.affiliate-logo-ebook   { background: #d97706; font-size: 1.3rem; }
.affiliate-logo-planilha { background: #217346; font-size: 1.3rem; }

.affiliate-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.affiliate-benefit {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
  flex: 1;
}
.btn-affiliate {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(to left, var(--accent), var(--primary));
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  border: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn-affiliate:hover { opacity: 0.88; }
.btn-affiliate:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.affiliate-disclaimer {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ===== ARTICLE PAGES ===== */
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--footer-text);
  font-size: 0.875rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
  transition: color 0.15s;
}
.article-back:hover { color: var(--accent); }
.article-title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.article-meta {
  color: var(--footer-text);
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.article-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.75rem 0 0.5rem;
  color: var(--text);
}
.article-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.25rem 0 0.4rem;
  color: var(--text);
}
.article-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.article-content ul, .article-content ol {
  color: var(--text-muted);
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}
.article-content li { margin-bottom: 0.3rem; }
.article-content strong { color: var(--text); }
.article-content code {
  font-family: monospace;
  background: rgba(255,255,255,0.07);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--text);
}
.table-wrapper { overflow-x: auto; margin: 1rem 0; border-radius: var(--radius); }
.article-content table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.article-content th {
  background: rgba(125,56,240,0.15);
  color: var(--text);
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  text-align: left;
  white-space: nowrap;
}
.article-content td {
  padding: 0.45rem 0.75rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.article-content tr:last-child td { border-bottom: none; }
.article-callout {
  background: rgba(125,56,240,0.1);
  border: 1px solid rgba(125,56,240,0.25);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin: 1.25rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.article-callout a {
  background: linear-gradient(to left, var(--accent), var(--primary));
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.article-callout a:hover { opacity: 0.88; }
.article-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.article-cta p { color: var(--text-muted); margin-bottom: 1rem; }
.btn-article {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to left, var(--accent), var(--primary));
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-article:hover { opacity: 0.88; }

/* ===== RESPONSIVE ===== */
@media (min-width: 576px) {
  .support-grid { flex-direction: row; }
}

@media (max-width: 575px) {
  .flip-card { height: 760px; }
  .form-row { flex-direction: column; gap: 0; }
  .article-img { width: 90px; height: 60px; }
}

@media (max-width: 334px) {
  .flip-card { height: 800px; }
}

/* ===== ADSENSE — bloqueia ads dentro dos cards e flip card ===== */
.calculadora-container ins.adsbygoogle,
.flip-card ins.adsbygoogle,
.card ins.adsbygoogle { display: none !important; }
