/* CONFIGURAÇÕES GLOBAIS E RESET */

:root {
  --cor-primaria: #3d75af;
  --cor-secundaria: #243a9e81;
  --cor-destaque: #293a71;
  --cor-texto: #ffffff;
  --cor-texto-2: #000000;
  --cor-btn: #f7d56f;
  --cor-fundo-escuro: #170da3;
  --cor-fundo-claro: #c2d8f8;
  --bg-dark: #2c3e50;
  --var-texto-h2: 3rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Fontes";
  src: url(/fontes/montserrat-italic-variablefont_wght.ttf);
}

body {
  position: relative;
  background-color: #edf5fa;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #515151;
  text-decoration: none;
  width: 100%;
  font-family:
    "Sora",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
}

.btn-whatsapp-flutuante {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50 !important;
  transition: all 0.3s ease;
}

footer,
.container-footer,
.footer-bottom {
  position: relative !important;
  z-index: 100 !important;
  background-color: #003366;
}

section[id] {
  scroll-margin-top: 10rem;
}
