:root {
  --albg-primary: #111111;
  --bege: #f5f5dc;
  --bs-border-color: #f6f6f6;
}

* {
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-feature-settings: normal;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: #444444;
  position: relative;
  overflow-y: overlay;
  overflow-x: hidden;
}

.fs-0 {
  font-size: 4rem;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-900 {
  font-weight: 900;
}

.ql-indent-1 {
  padding-left: 2.5rem;
}

.ql-indent-2 {
  padding-left: 5rem;
}

.ql-indent-3 {
  padding-left: 7.5rem;
}

.ql-indent-4 {
  padding-left: 10rem;
}

.ql-indent-5 {
  padding-left: 12.5rem;
}

.ql-indent-6 {
  padding-left: 15rem;
}

.ql-indent-7 {
  padding-left: 17.5rem;
}

.ql-indent-8 {
  padding-left: 20rem;
}

.ql-indent-9 {
  padding-left: 22.5rem;
}

.whatsapp {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  transition: all 0.4s;
  background-color: #25d366;
}
.whatsapp i {
  font-size: 35px;
  color: #fff;
  line-height: 0;
}
.whatsapp.active {
  visibility: visible;
  opacity: 1;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 25px;
  bottom: 90px;
  z-index: 996;
  background: var(--bege);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: var(--albg-primary);
  line-height: 0;
}
.back-to-top:hover {
  background: #00c27b;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

header {
  transition: all 0.5s;
  z-index: 997;
}
header.header-scrolled, header.header-inner-pages {
  background: var(--albg-primary);
}
header .logo img {
  max-height: 30px;
}
header p {
  font-size: 0.875rem;
}

@media (max-width: 992px) {
  #header {
    border: 0;
    padding: 15px 0;
  }
}
footer {
  background: var(--albg-primary);
  padding: 30px 0;
}

.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  margin: 0 12px;
}
.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 3px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 3px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover:before {
  visibility: visible;
  width: 100%;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
  background-color: var(--bege);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover {
  color: #fff;
}
.navbar .active {
  color: #fff;
}
.navbar .active:focus {
  color: #fff;
}
.navbar li:hover > a {
  color: #fff;
}

.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  position: relative;
  z-index: 9999;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(15, 15, 15, 0.9);
  transition: 0.3s;
  z-index: 999;
  width: 100%;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #282828;
}
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #282828;
}
.navbar-mobile a:hover:before {
  visibility: hidden;
}
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #009961;
}

section {
  width: 100%;
  background-size: cover;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(-45deg, #424144, #686262, #A8A8A8, #e4e4e0);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  mix-blend-mode: multiply;
  z-index: 1;
}

.carousel,
.carousel-inner,
.carousel-item,
.kenburns-top,
.bkg {
  height: 100vh;
}

.carousel-caption {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.carousel-caption strong {
  font-family: "Fira Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.carousel-caption a {
  text-decoration: none;
  color: #ffffff;
}

.bkg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#fale-conosco {
  background-image: url("../img/img06.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#fale-conosco .container {
  position: relative;
  z-index: 10;
}

.leia-mais {
  background: linear-gradient(360deg, rgba(255, 255, 255, 0.95) 40%, rgba(255, 0, 0, 0) 80%);
}

.ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px !important;
  height: 32px !important;
}

.form-pesquisa input {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.form-pesquisa input:focus {
  outline: none !important;
  box-shadow: none !important;
}
.form-pesquisa button {
  width: 50px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding-left: 4px;
}
.form-pesquisa button:focus {
  outline: none !important;
  box-shadow: none !important;
}

article h2,
article h3,
article h4,
article h5,
article h6,
article p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.logo-desenvolvedor {
  width: 30px;
  height: 30px;
}

.no-focus:focus {
  outline: none !important;
  box-shadow: none !important;
}

.compartilha {
  display: flex;
  align-items: center;
  justify-content: center;
}

figure {
  width: 30%;
}

@media (max-width: 767px) {
  figure {
    width: 100%;
  }
}
.mt-header {
  margin-top: 74px;
}

@media (max-width: 768px) {
  .mt-header {
    margin-top: 60px;
  }
  .fs-0 {
    font-size: 2.5rem;
  }
}
.pagination .page-item {
  margin-bottom: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fira Sans", sans-serif;
}

small {
  font-size: 0.685rem;
}

.rounded.border,
.card {
  --bs-card-border-color: #f7f2f2;
}

.shadow-sm {
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px !important;
}

.z-10 {
  z-index: 10;
}/*# sourceMappingURL=style.css.map */