/* =========================
   FUNNEL BASE (GLOBAL)
========================= */

:root{
  --secondary-500: #FF7800;
  --white: #ffffff;
  --text: #202E44;
  --blue: #0A47F0;
  --muted: #99A1AD;
  --line: #EFF0F2;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Flexo-Regular, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.funnel-main{
  width: 100%;
}

/* Links */
a{ color: inherit; }
a:hover{ color: inherit; }

/* Helpers */
.oculto{ display: none !important; }
.visible{ display: block !important; }
.dinline{ visibility: hidden; }

