/* ---------------CSS RESETING ELEMENTS-------------------*/

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

/* Remove margens e paddings padrões */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dd,
ol,
ul,
figure,
hr,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

/* Remover list-style de listas */
ul,
ol {
  list-style: none;
}

/* Remove decorações de links */
a {
  text-decoration: none;
  color: inherit;
}

/* Botões e inputs sem estilos nativos */
button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Garantir altura total da tela */
html,
body {
  height: 100%;
}

/* Imagens e mídias com responsividade básica */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Typography smoothing */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Tabelas sem espaçamento */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Form controls não estilizados */
button {
  cursor: pointer;
  background: none;
  border: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/* --------------- FONTS -------------------*/
.ubuntu-light {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.ubuntu-regular {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.ubuntu-medium {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.ubuntu-bold {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.ubuntu-light-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: italic;
}
.ubuntu-regular-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.ubuntu-medium-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: italic;
}
.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}
/* declarando variaveis de cores */
:root {
  --Dark: #343434;
  --White: #fff;
  --Green: #016063;
  --DarkGreen: #005256;

  --LightGreen: #27cc6f;
  --LightBlue: #73bedc;
  --Bg_cinza: #f9f9f9;
  --Gold: #ffcb00;
  --Orange: #ff9000;
  --LightGold: #fff7db;
  --LightGray: #f8f8f8;
  --LightGray2: #f2f2f2;
  --Yellow: #ffff00;
  --ButtonBg: #404040;
  --BlackOne: #000;
  --BlueInvisalign: #73bedc;
}

html,
body {
  width: 100%;
  height: 100%;
}
body {
  overflow-x: hidden;
  background: var(--LightGray2);
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: var(--Black);
}

a {
  transition: 0.5em;
  text-decoration: none;
  &.contact {
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    color: var(--White);
    background: var(--ButtonBg);
    padding: 15px 20px;
    border-radius: 30px;
    margin: 15px 0;
  }
}

section#main {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1920px;
  height: auto;
  margin: 0 auto;
}
