/**
 * Arquivo base do SCSS
 * @version 1.1.0
 */
/* ============= BASE ============= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

strong {
  font-weight: bold;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

html, body {
  width: 100%;
  min-height: 100%;
}

button,
input,
optgroup,
select,
textarea, html input[type=button],
input[type=reset],
input[type=submit], button[disabled],
html input[disabled], button::-moz-focus-inner,
input::-moz-focus-inner, input[type=checkbox],
input[type=radio], input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button, input[type=search], input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  border: none;
  background-image: none;
  background-color: transparent;
  box-shadow: none;
}

html {
  font-size: 62.5%;
}
@media (max-width: 900px) {
  html {
    font-size: 50%;
  }
}

html, body {
  width: 100%;
  font-family: "Roboto", sans-serif;
  color: #000000;
}

body {
  font-size: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Times New Roman", sans-serif;
  color: #000000;
  font-size: 4rem;
}

.text--ligther {
  font-weight: lighter;
}
.text--regular {
  font-weight: normal;
}
.text--bold {
  font-weight: bold;
}
.text--primary {
  color: #000000;
}
.text--secondary {
  color: #FFFFFF;
}

/* ============= FONTS ============ */
/* =========== SECTIONS =========== */
.header {
  width: 100%;
  padding: 5rem 0;
  background: #CCC;
  text-align: center;
}
.header img {
  height: 40px;
}

.footer {
  width: 100%;
  padding: 2rem 0;
  background: #ccc;
  text-align: center;
  font-weight: lighter;
  font-size: 1.2rem;
}

/* ============ PAGES ============= */
.home__slider div {
  height: 200px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: #EAEAEA;
}

.blog-img {
  width: 100%;
  height: 75dvh;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ========= COMPONENTES ========== */
.form__row {
  display: flex;
  gap: 1rem;
}
.form__row:not(:last-child) {
  margin-bottom: 1rem;
}
.cms-bar {
  height: 50px;
}
.cms-bar__row {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #9700f6;
  height: 50px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
}
.cms-bar__row .text {
  color: #fff;
  margin-right: 15px;
  font-size: 14px;
  font-weight: bold;
}
.cms-bar__row .btn {
  background: #fff;
  padding: 5px 20px;
  border-radius: 15px;
  margin-right: 15px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}
.cms-bar__row .btn:hover {
  background: #000;
  color: #fff;
}

.gdlr-blog-grid-content {
  width: 100%;
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .cms-bar__row .text {
    display: none;
  }
}
.copyright-right {
  display: flex;
  align-items: center;
}

.header-phone {
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0a172d !important;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  align-self: flex-end;
  line-height: normal;
}
