:root {
  --color-black: #1a1a1a;
  --color-white: #f5f5f5;
  --button-radius: 8px;

  /* CaldaCerta colors */
  --color-primary: #1F7A3F;
  --color-secondary: #4CAF50;
  --color-verde-campo: #1F7A3F;
  --color-verde-tech: #4CAF50;
  --color-grafite-saas: #2E2E2E;
  --color-cinza-neutro: #8A8A8A;
  --color-branco-limpo: #FFFFFF;
  --color-amarelo-alerta: #F2C94C;

  /* Text colors */
  --color-text-light: #f0f0f0;
  --color-text-white: #ffffff;
}


@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
#app {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: #f7f8fb;
  color: #0f172a;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
  outline: none;
}
