/*
Theme Name: Elementor Base Theme
Description: Tema minimalista para integração com Elementor.
Version: 1.0.0
*/
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  background-color: #ffffff;
}

:root {
    --primary-color: #0E07B8;
    --secondary-color: #050574;
    --accent-color: #F7B900;
    --text-color: #FFFFFF;
    --font-primary: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: clip;
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    background-color: #ffffff;
}