.primary-text-color {
  color: #ff6600;
}

.secondary-text-color {
  color: #9d9d9c;
}

.white-text-color {
  color: #fafafa;
}

.black-text-color {
  color: #3e3e3e;
}

.primary-bg-color {
  background-color: #ff6600;
}

.secondary-bg-color {
  background-color: #9d9d9c;
}

.white-bg-color {
  background-color: #fafafa;
}

.dark-gray-bg-color {
  background-color: #6f6f6e;
}

.light-gray-bg-color {
  background-color: #dadada;
}

.green-bg-color {
  background-color: #4fae32;
}

.primary-gradient-bg-color {
  background: linear-gradient(to left, #ff6600, rgba(255, 102, 0, 0.6));
}

.secondary-gradient-bg-color {
  background: linear-gradient(to right, #dbdbdb, rgba(163, 163, 163, 0.8));
  border: 1px solid #ddd;
}

.dark-gray-text-color {
  color: #6f6f6e;
}

/* BLOG */
#banner-pagina-blog {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (width < 768px) {
  #banner-pagina-blog {
    height: 512px;
    background-image: url("../assets/img/hero-mobile.jpg");
  }
}
@media (width >= 768px) {
  #banner-pagina-blog {
    height: 330px;
    background-image: url("../assets/img/hero-768.jpg");
  }
}
@media (width >= 1366px) {
  #banner-pagina-blog {
    height: 470px;
    background-image: url("../assets/img/hero-1366.jpg");
  }
}
@media (width >= 1600px) {
  #banner-pagina-blog {
    height: 600px;
    background-image: url("../assets/img/hero-1600.jpg");
  }
}

.blog-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  width: 100%;
  height: 60px;
  background: #ff6600;
  padding-right: 1rem;
}

.margin-top {
  height: 60px;
}

#post-detail h1 {
  font-weight: 800;
  margin-top: 2rem;
}
#post-detail #post-date {
  font-size: 0.75rem;
}
@media (width > 992px) {
  #post-detail p {
    font-size: 1rem;
  }
}
@media (width < 992px) {
  #post-detail p {
    font-size: 0.875rem;
  }
}
@media (width > 992px) {
  #post-detail p:not(aside p) {
    text-align: justify;
  }
}
@media (width < 992px) {
  #post-detail p:not(aside p) {
    text-align: justify;
  }
}
#post-detail img {
  max-width: 100%;
  height: auto;
}
#post-detail iframe {
  width: 100%;
  height: 410px;
}
@media (width > 992px) {
  #post-detail aside {
    padding-left: 1rem;
  }
}
#post-detail aside a {
  display: block;
  width: 100%;
  color: #3e3e3e;
}
#post-detail aside a p {
  padding-bottom: 5px;
  border-bottom: 1px dotted #9d9d9c;
}
#post-detail aside a small {
  color: #ff6600;
}

.card {
  overflow: hidden;
}
.card figure {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.card figure img {
  width: 100%;
  height: auto;
}
.card img {
  transition: ease-in-out 0.2s;
}
.card:hover img {
  transform: scale(1.2);
}

.card-body {
  position: relative;
  height: auto;
  color: #3e3e3e;
}
@media (width > 992px) {
  .card-body .card-text {
    font-size: 0.975rem;
  }
}
@media (width < 992px) {
  .card-body .card-text {
    font-size: 0.875rem;
  }
}
.card-body small {
  position: absolute;
  left: 15px;
  bottom: 15px;
  color: #ff6600;
}

@media (width < 992px) {
  #form-pesquisa [type=submit] {
    margin-top: 10px;
  }
}

* {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100, "YTLC" 500;
}

a, a:hover {
  text-decoration: none;
}

.desktopView {
  display: block;
}

.mobileView {
  display: none;
}

body,
ul,
li,
a,
figure {
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
}

@media (width < 1024px) {
  h1 {
    font-size: 1.2rem;
  }
}

@media (width < 1024px) {
  h2 {
    font-size: 1rem;
  }
}

.no-pdt {
  padding-top: 0 !important;
}

.no-pdb {
  padding-bottom: 0 !important;
}

.grid-container {
  display: grid;
}

.notFound {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#form-pesquisa [type=text],
#form-pesquisa [type=submit],
#form-pesquisa [type=button],
#form-pesquisa label {
  display: block;
  width: 100%;
  height: 45px;
  line-height: 45px;
  margin: 0;
}
#form-pesquisa [type=text] {
  height: 60px;
}
#form-pesquisa [type=button],
#form-pesquisa [type=submit] {
  background-color: rgba(62, 62, 62, 0.9);
  color: #fafafa;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  transition: ease-in-out 0.2s;
}
#form-pesquisa [type=button]:hover,
#form-pesquisa [type=submit]:hover {
  background-color: #ff6600;
}
#form-pesquisa [type=text] {
  height: 60px;
  background-color: rgba(250, 250, 250, 0.9);
  background-image: url("../assets/img/lupa.png");
  background-repeat: no-repeat;
  background-position: 25px center;
  background-size: 30px;
  padding-left: 30px;
  border-radius: 50px;
  border: none;
  color: #ff6600;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  transition: ease-in-out 0.2s;
}
#form-pesquisa [type=text]:focus {
  background-color: #fafafa;
}
#form-pesquisa [type=text]:focus-visible {
  outline: none;
}
#form-pesquisa label {
  color: #ff6600;
}

.form-control:focus-visible {
  outline: none;
}

@media (width < 768px) {
  ::-moz-placeholder {
    font-size: 10px;
  }
  ::placeholder {
    font-size: 10px;
  }
}/*# sourceMappingURL=main.css.map */