.pt-100 {
  padding-top: 100px;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

/*HELPERS*/
.header-animated {
  transition: all 300ms ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 90px;
}
.header-animated .logo {
  width: 180px !important;
}
.header-animated .ancoras {
  height: 30px;
}
@media screen and (min-width: 320px) {
  .header-animated .ancoras {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .header-animated .ancoras {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .header-animated .ancoras {
    display: block;
  }
}
@media screen and (min-width: 1300px) {
  .header-animated .ancoras {
    display: block;
  }
}
.header-animated .ancoras nav {
  padding: 5px 0 !important;
}
.header-animated .ancoras nav ul li a {
  font-size: 12px !important;
  padding: 2px 15px !important;
}

.display-menu-mobile {
  min-height: 380px !important;
  padding: 20px !important;
}

.menu-mobile {
  padding: 0px 20px;
  margin: 0;
  list-style: none;
  background-color: #707070;
  transition: all 600ms ease-in-out;
  display: none;
  height: 0;
}
.menu-mobile li {
  padding: 15px;
}
.menu-mobile li a {
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
  color: white;
  outline: none;
}
.menu-mobile li a:hover {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
  color: #e9e9e9;
}

.menu-mobile {
  opacity: 0;
}

.mt-40 {
  margin-top: 40px !important;
}

.container {
  width: 1300px;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 320px) {
  .container {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .container {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media screen and (min-width: 1300px) {
  .container {
    width: 1100px;
  }
}
.container .row {
  display: flex;
  flex-direction: row;
}
@media screen and (min-width: 320px) {
  .container .row {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .container .row {
    flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  .container .row {
    flex-direction: row;
  }
}
@media screen and (min-width: 1300px) {
  .container .row {
    flex-direction: row;
  }
}
.container .row .coluna {
  flex: 1;
}
@media screen and (min-width: 320px) {
  .container .row .coluna {
    flex: 1;
  }
}
@media screen and (min-width: 768px) {
  .container .row .coluna {
    flex: 1;
  }
}
@media screen and (min-width: 992px) {
  .container .row .coluna {
    flex: 1;
  }
}
@media screen and (min-width: 1300px) {
  .container .row .coluna {
    flex: 1;
  }
}

.slick-next {
  right: 15%;
  z-index: 9;
  width: 38px;
  height: 37px;
  transition: background-color 0.5s ease;
  background-image: url("../img/slick-right.png") !important;
  background-repeat: no-repeat;
}
.slick-next::before {
  text-indent: -9999px;
  content: "";
}
@media screen and (min-width: 320px) {
  .slick-next {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .slick-next {
    display: none !important;
  }
}
@media screen and (min-width: 992px) {
  .slick-next {
    display: block !important;
  }
}
@media screen and (min-width: 1300px) {
  .slick-next {
    display: block !important;
  }
}

.slick-prev {
  left: 15%;
  z-index: 9;
  width: 38px;
  height: 37px;
  transition: background-color 0.5s ease;
  background-image: url("../img/slick-left.png") !important;
  background-repeat: no-repeat;
}
.slick-prev::before {
  text-indent: -9999px;
  content: "";
}
@media screen and (min-width: 320px) {
  .slick-prev {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .slick-prev {
    display: none !important;
  }
}
@media screen and (min-width: 992px) {
  .slick-prev {
    display: block !important;
  }
}
@media screen and (min-width: 1300px) {
  .slick-prev {
    display: block !important;
  }
}

.btn-whats {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: #25d366;
  padding: 9px 10px;
  border-radius: 100%;
  z-index: 999999;
}
@media screen and (min-width: 320px) {
  .btn-whats {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .btn-whats {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .btn-whats {
    display: none;
  }
}
@media screen and (min-width: 1300px) {
  .btn-whats {
    display: none;
  }
}

header {
  transition: all 300ms ease-in-out;
  background-color: white;
  position: relative;
  width: 100%;
  z-index: 9;
}
header .container .toggle {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 30px;
  right: 15px;
  display: block;
  cursor: pointer;
}
@media screen and (min-width: 320px) {
  header .container .toggle {
    display: block;
    top: 30px;
  }
}
@media screen and (min-width: 768px) {
  header .container .toggle {
    display: block;
    top: 40px;
  }
}
@media screen and (min-width: 992px) {
  header .container .toggle {
    display: none;
    top: 30px;
  }
}
@media screen and (min-width: 1300px) {
  header .container .toggle {
    display: none;
    top: 30px;
  }
}
header .container .toggle span {
  margin-bottom: 4px;
  height: 4px;
  width: 100%;
  padding: 0;
  background-color: #d9b989;
  display: block;
}
header .container .center {
  text-align: left;
}
@media screen and (min-width: 320px) {
  header .container .center {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  header .container .center {
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  header .container .center {
    text-align: left;
  }
}
@media screen and (min-width: 1300px) {
  header .container .center {
    text-align: left;
  }
}
header .container .coluna {
  align-self: center;
  justify-content: center;
  display: ruby;
  width: 100%;
}
header .container .coluna:nth-child(2) {
  flex-grow: 3 !important;
  display: flex;
  align-items: center;
  flex-direction: row;
}
@media screen and (min-width: 320px) {
  header .container .coluna:nth-child(2) {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  header .container .coluna:nth-child(2) {
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  header .container .coluna:nth-child(2) {
    display: flex;
  }
}
@media screen and (min-width: 1300px) {
  header .container .coluna:nth-child(2) {
    display: flex;
  }
}
@media screen and (min-width: 320px) {
  header .container .hidden {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  header .container .hidden {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  header .container .hidden {
    display: block;
  }
}
@media screen and (min-width: 1300px) {
  header .container .hidden {
    display: block;
  }
}
header .container .logo {
  width: 300px;
  padding: 20px;
  transition: all 300ms ease-in-out;
}
@media screen and (min-width: 320px) {
  header .container .logo {
    width: 180px;
  }
}
@media screen and (min-width: 768px) {
  header .container .logo {
    width: 300px;
  }
}
@media screen and (min-width: 992px) {
  header .container .logo {
    width: 300px;
  }
}
@media screen and (min-width: 1300px) {
  header .container .logo {
    width: 300px;
  }
}
header .container .logo a {
  width: 100%;
  height: 100%;
  display: block;
  outline: none;
}
header .container .logo img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 320px) {
  header .container .whats {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  header .container .whats {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  header .container .whats {
    display: block;
  }
}
@media screen and (min-width: 1300px) {
  header .container .whats {
    display: block;
  }
}
header .container nav {
  display: flex;
  flex-direction: row;
  padding: 20px 0;
  justify-content: center;
}
header .container ul {
  list-style: none;
  padding: 0;
  display: contents;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}
@media screen and (min-width: 320px) {
  header .container ul {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  header .container ul {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  header .container ul {
    display: contents;
  }
}
@media screen and (min-width: 1300px) {
  header .container ul {
    display: contents;
  }
}
header .container ul li {
  outline: none;
}
header .container ul li a {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #707070;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  padding: 6px 25px;
  outline: none;
  margin: 0 15px;
  white-space: nowrap;
}
header .container ul li a:hover {
  border-radius: 30px;
  border: solid 2px #707070;
}
header span {
  background: #25d366;
  padding: 10px 30px;
  align-items: center;
  display: inline-flex;
  border-radius: 100px;
  justify-content: center;
}
@media screen and (min-width: 320px) {
  header span {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) {
  header span {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  header span {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1300px) {
  header span {
    margin-bottom: 0;
  }
}
header span img {
  width: 30px;
  margin-right: 5px;
}
header span:hover {
  background: #1a1361;
}
header h1 {
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
}
header .ancoras {
  background-color: #e9e9e9;
  text-align: center;
}

section#banner .slide {
  width: 100%;
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  align-items: center !important;
  justify-content: center !important;
  display: flex !important;
}
@media screen and (min-width: 320px) {
  section#banner .slide {
    max-height: 400px;
    min-height: 400px;
    padding: 20px;
  }
}
@media screen and (min-width: 768px) {
  section#banner .slide {
    min-height: 400px;
    padding: 0px;
  }
}
@media screen and (min-width: 992px) {
  section#banner .slide {
    min-height: 600px;
    padding: 0px;
  }
}
@media screen and (min-width: 1300px) {
  section#banner .slide {
    min-height: 600px;
    padding: 0px;
  }
}
section#banner .coluna {
  justify-content: center;
  display: flex;
}
section#banner .center {
  text-align: center;
  max-width: 700px;
}
section#banner h1 {
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: white;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 320px) {
  section#banner h1 {
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: 900;
    color: white;
  }
}
@media screen and (min-width: 768px) {
  section#banner h1 {
    font-family: "Roboto", sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: white;
  }
}
@media screen and (min-width: 992px) {
  section#banner h1 {
    font-family: "Roboto", sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: white;
  }
}
@media screen and (min-width: 1300px) {
  section#banner h1 {
    font-family: "Roboto", sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: white;
  }
}
section#banner h2 {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: white;
  text-align: center;
  margin-bottom: 30px;
}
section#banner a {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  padding: 10px 50px;
  border: solid 2px white;
  border-radius: 100px;
}
@media screen and (min-width: 320px) {
  section#banner a {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: white;
  }
}
@media screen and (min-width: 768px) {
  section#banner a {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: white;
  }
}
@media screen and (min-width: 992px) {
  section#banner a {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: white;
  }
}
@media screen and (min-width: 1300px) {
  section#banner a {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: white;
  }
}
section#banner a:hover {
  background-color: #002641;
  border: solid 2px #002641;
}
section#banner .barra {
  position: relative;
  padding: 20px;
  margin-top: -62px;
}
section#banner .barra ul {
  display: flex;
}
section#banner .barra .bola {
  background-color: transparent;
  border: solid 2px white;
  height: 15px;
  width: 15px;
  border-radius: 30px;
  margin: 0 6px;
}

section#escritorio {
  background-color: #002641;
}
section#escritorio .row {
  display: flex;
  flex-direction: row;
}
@media screen and (min-width: 320px) {
  section#escritorio .row {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  section#escritorio .row {
    flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  section#escritorio .row {
    flex-direction: row;
  }
}
@media screen and (min-width: 1300px) {
  section#escritorio .row {
    flex-direction: row;
  }
}
section#escritorio .coluna {
  flex: 1;
  padding: 70px 50px 30px 0px;
  background-color: #002641;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  z-index: 9;
  position: relative;
  left: 30px;
  display: flex;
  justify-content: end;
  justify-content: flex-end;
}
section#escritorio .coluna .info {
  padding: 20px 30px;
  max-width: 350px;
}
@media screen and (min-width: 320px) {
  section#escritorio .coluna .info {
    padding: 50px 20px;
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  section#escritorio .coluna .info {
    padding: 20px 30px;
    max-width: 350px;
  }
}
@media screen and (min-width: 992px) {
  section#escritorio .coluna .info {
    padding: 20px 30px;
    max-width: 350px;
  }
}
@media screen and (min-width: 1300px) {
  section#escritorio .coluna .info {
    padding: 20px 30px;
    max-width: 350px;
  }
}
@media screen and (min-width: 320px) {
  section#escritorio .coluna {
    padding: 0;
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  section#escritorio .coluna {
    padding: 70px 50px 30px 0px;
    left: 30px;
  }
}
@media screen and (min-width: 992px) {
  section#escritorio .coluna {
    padding: 70px 50px 30px 0px;
    left: 30px;
  }
}
@media screen and (min-width: 1300px) {
  section#escritorio .coluna {
    padding: 70px 50px 30px 0px;
    left: 30px;
  }
}
section#escritorio .coluna-2 {
  flex: 1.2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 320px) {
  section#escritorio .coluna-2 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  section#escritorio .coluna-2 {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  section#escritorio .coluna-2 {
    display: block;
  }
}
@media screen and (min-width: 1300px) {
  section#escritorio .coluna-2 {
    display: block;
  }
}
section#escritorio h1 {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: white;
  margin-bottom: 10px;
}
section#escritorio h2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  border-left: solid 5px white;
  padding-left: 10px;
}
section#escritorio h3 {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: white;
  margin-bottom: 10px;
}

section#areas {
  padding: 50px 0;
}
section#areas .container {
  width: 1000px;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 320px) {
  section#areas .container {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  section#areas .container {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  section#areas .container {
    width: 960px;
  }
}
@media screen and (min-width: 1300px) {
  section#areas .container {
    width: 1000px;
  }
}
section#areas .coluna {
  text-align: center;
}
section#areas .center {
  justify-content: center;
  display: grid;
}
section#areas .icon {
  border: solid 2px #4b4b4b;
  padding: 15px;
  display: inline-block;
  border-radius: 100%;
  position: relative;
  top: 10px;
  background: white;
}
section#areas .icon img {
  width: 35px;
  height: 35px;
}
section#areas .content {
  border: solid 2px #4b4b4b;
  display: grid;
  border-radius: 30px;
  margin: 0 30px 30px 30px;
  padding: 30px;
}
@media screen and (min-width: 320px) {
  section#areas .content {
    margin: 0 30px 30px 30px !important;
  }
}
@media screen and (min-width: 768px) {
  section#areas .content {
    margin: 10px !important;
  }
}
@media screen and (min-width: 992px) {
  section#areas .content {
    margin: 0 30px 30px 30px !important;
  }
}
@media screen and (min-width: 1300px) {
  section#areas .content {
    margin: 0 30px 30px 30px !important;
  }
}
section#areas h1 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 500;
  color: #4b4b4b;
  margin-bottom: 10px;
  text-align: center;
}
section#areas h2 {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #4b4b4b;
  margin-bottom: 10px;
  text-align: center;
  padding: 20px;
}
@media screen and (min-width: 320px) {
  section#areas h2 {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  section#areas h2 {
    max-width: 100%;
  }
}
@media screen and (min-width: 992px) {
  section#areas h2 {
    max-width: 700px;
  }
}
@media screen and (min-width: 1300px) {
  section#areas h2 {
    max-width: 700px;
  }
}
section#areas h3 {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #4b4b4b;
  margin-bottom: 50px;
  text-align: center;
}
section#areas h4 {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #4b4b4b;
  margin-bottom: 10px;
  text-align: justify;
}

section#noticias {
  background-color: #f6f6f6;
  padding: 50px 0;
}
section#noticias .coluna {
  padding: 20px;
}
section#noticias .noticia .coluna {
  background-color: #fff;
  border-radius: 30px;
  margin: 20px;
  padding: 0;
}
section#noticias .center {
  justify-content: center;
  display: grid;
}
section#noticias .more {
  text-align: center;
}
section#noticias .more a {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #4b4b4b;
  text-transform: uppercase;
  padding: 10px 50px;
  border: solid 2px #4b4b4b;
  border-radius: 30px;
}
section#noticias .more a:hover {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: white;
  background-color: #4b4b4b;
  border: solid 2px #4b4b4b;
}
section#noticias img {
  border-radius: 10px;
  width: 100%;
}
section#noticias h1 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 500;
  color: #4b4b4b;
  margin-bottom: 10px;
  text-align: center;
}
section#noticias h2 {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #4b4b4b;
  margin-bottom: 10px;
  text-align: center;
  padding: 20px;
}
@media screen and (min-width: 320px) {
  section#noticias h2 {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  section#noticias h2 {
    max-width: 100%;
  }
}
@media screen and (min-width: 992px) {
  section#noticias h2 {
    max-width: 500px;
  }
}
@media screen and (min-width: 1300px) {
  section#noticias h2 {
    max-width: 500px;
  }
}
section#noticias h3 {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #4b4b4b;
  margin-top: 30px;
  text-align: center;
  padding: 0 20px;
}
section#noticias h4 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #4b4b4b;
  margin-top: 5px;
  text-align: center;
  padding: 0px 20px 50px 20px;
}

section#fale {
  padding: 50px 0;
  background-color: #f3f3f3;
  max-height: 490px;
  margin-bottom: 300px;
}
@media screen and (min-width: 320px) {
  section#fale {
    max-height: 100%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  section#fale {
    max-height: 490px;
    margin-bottom: 300px;
  }
}
@media screen and (min-width: 992px) {
  section#fale {
    max-height: 490px;
    margin-bottom: 300px;
  }
}
@media screen and (min-width: 1300px) {
  section#fale {
    max-height: 490px;
    margin-bottom: 300px;
  }
}
section#fale .cube {
  background-color: #efefef;
  border-radius: 30px;
  padding: 20px;
}
section#fale .coluna {
  padding: 20px;
}
@media screen and (min-width: 320px) {
  section#fale .coluna {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  section#fale .coluna {
    padding: 20px;
  }
}
@media screen and (min-width: 992px) {
  section#fale .coluna {
    padding: 20px;
  }
}
@media screen and (min-width: 1300px) {
  section#fale .coluna {
    padding: 20px;
  }
}
section#fale .centralizado {
  display: grid;
  justify-content: center;
}
section#fale h1 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 500;
  color: #4b4b4b;
  margin-bottom: 10px;
  text-align: center;
}
section#fale h2 {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #4b4b4b;
  margin-bottom: 10px;
  text-align: center;
  padding: 20px;
}
@media screen and (min-width: 320px) {
  section#fale h2 {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  section#fale h2 {
    max-width: 100%;
  }
}
@media screen and (min-width: 992px) {
  section#fale h2 {
    max-width: 500px;
  }
}
@media screen and (min-width: 1300px) {
  section#fale h2 {
    max-width: 500px;
  }
}
section#fale h3 {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #4b4b4b;
  text-transform: uppercase;
}
section#fale h4 {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #4b4b4b;
}
section#fale iframe {
  border-radius: 30px;
  width: 100% !important;
  height: 400px !important;
}
section#fale .center {
  align-items: center;
  justify-content: center;
  display: flex;
}
section#fale .contato {
  display: flex;
  flex-direction: row;
}
section#fale .contato img {
  width: 30px;
  height: 25px;
  margin-right: 10px;
}
section#fale form .alert {
  display: none;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 1000;
  color: white;
  text-align: center;
  margin: 0px;
  padding: 3px;
  background-color: red;
  border-radius: 30px;
}
section#fale form .alert2 {
  display: none;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 1000;
  color: white;
  text-align: center;
  margin: 0px;
  padding: 3px;
  background-color: green;
  border-radius: 30px;
}
section#fale form .coluna {
  padding: 10px;
}
section#fale form input {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #4b4b4b;
  width: 100%;
  height: 40px;
  border-radius: 30px;
  border: solid 2px #4b4b4b;
  padding: 20px;
  background-color: #f3f3f3;
}
section#fale form ::placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #4b4b4b;
}
section#fale form textarea {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #4b4b4b;
  width: 100%;
  border-radius: 30px;
  border: solid 2px #4b4b4b;
  padding: 20px;
  resize: vertical;
  height: 200px;
  background-color: #f3f3f3;
}
section#fale form button {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: white;
  width: 100%;
  height: 45px;
  border-radius: 30px;
  border: solid 2px #7d7d7d;
  background-color: #7d7d7d;
  cursor: pointer;
}
section#fale form button:hover {
  background-color: #d9b989;
  border: solid 2px #d9b989;
}

section#blog {
  padding: 80px 0;
  background-color: #fff;
  padding: 50px 0;
}
section#blog h1 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 500;
  color: #4b4b4b;
  text-align: center;
}
section#blog h2 {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #4b4b4b;
  margin-bottom: 10px;
  text-align: center;
  padding: 20px;
}
section#blog h3 {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #4b4b4b;
  margin-top: 30px;
  text-align: center;
  padding: 0 20px;
}
section#blog h4 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #4b4b4b;
  margin-top: 5px;
  text-align: center;
  padding: 0 20px 50px 20px;
}
section#blog .noticia .coluna {
  box-shadow: 2px 2px 2px 3px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  max-width: 330px;
}
@media screen and (min-width: 320px) {
  section#blog .noticia .coluna {
    max-width: 330px;
  }
}
@media screen and (min-width: 768px) {
  section#blog .noticia .coluna {
    max-width: 216px;
  }
}
@media screen and (min-width: 992px) {
  section#blog .noticia .coluna {
    max-width: 330px;
  }
}
@media screen and (min-width: 1300px) {
  section#blog .noticia .coluna {
    max-width: 330px;
  }
}
section#blog .buttons {
  text-align: center;
  margin-bottom: 30px;
}
section#blog .buttons a {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #4b4b4b;
  text-transform: uppercase;
  border: solid 2px #9e9e9e;
  padding: 8px 30px;
  border-radius: 30px;
  margin: 0 2px;
}
section#blog .buttons .select {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff !important;
  border: solid 2px #9e9e9e !important;
  background-color: #9e9e9e !important;
}
section#blog .coluna {
  margin: 20px;
}
section#blog .more {
  text-align: center;
}
section#blog .more a {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #4b4b4b;
  text-transform: uppercase;
  padding: 10px 50px;
  border: solid 2px #4b4b4b;
  border-radius: 30px;
}
section#blog img {
  border-radius: 30px;
  width: 100%;
}

section#banner-single {
  width: 100%;
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 50px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
@media screen and (min-width: 320px) {
  section#banner-single {
    min-height: 160px;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  section#banner-single {
    min-height: 600px;
    margin-top: 50px;
  }
}
@media screen and (min-width: 992px) {
  section#banner-single {
    min-height: 600px;
    margin-top: 50px;
  }
}
@media screen and (min-width: 1300px) {
  section#banner-single {
    min-height: 600px;
    margin-top: 50px;
  }
}

section#single {
  position: relative;
  top: -300px;
  margin-bottom: -300px;
}
@media screen and (min-width: 320px) {
  section#single {
    position: initial;
    top: 0px;
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 768px) {
  section#single {
    position: relative;
    top: -300px;
    margin-bottom: -300px;
  }
}
@media screen and (min-width: 992px) {
  section#single {
    position: relative;
    top: -300px;
    margin-bottom: -300px;
  }
}
@media screen and (min-width: 1300px) {
  section#single {
    position: relative;
    top: -300px;
    margin-bottom: -300px;
  }
}
section#single .container {
  background-color: #fff;
  padding: 50px;
  border-radius: 30px;
}
@media screen and (min-width: 320px) {
  section#single .container {
    padding: 20px;
  }
}
@media screen and (min-width: 768px) {
  section#single .container {
    padding: 50px;
  }
}
@media screen and (min-width: 992px) {
  section#single .container {
    padding: 50px;
  }
}
@media screen and (min-width: 1300px) {
  section#single .container {
    padding: 50px;
  }
}
section#single .container .coluna {
  justify-content: center;
  display: flex;
}
section#single h1 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #4b4b4b;
  margin-bottom: 10px;
  text-align: center;
  padding: 0 20px;
}
section#single h2 {
  font-family: "Roboto", sans-serif;
  font-size: 35px;
  font-weight: 500;
  color: #4b4b4b;
  text-align: center;
  max-width: 800px;
}
@media screen and (min-width: 320px) {
  section#single h2 {
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: #4b4b4b;
  }
}
@media screen and (min-width: 768px) {
  section#single h2 {
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: #4b4b4b;
  }
}
@media screen and (min-width: 992px) {
  section#single h2 {
    font-family: "Roboto", sans-serif;
    font-size: 35px;
    font-weight: 500;
    color: #4b4b4b;
  }
}
@media screen and (min-width: 1300px) {
  section#single h2 {
    font-family: "Roboto", sans-serif;
    font-size: 35px;
    font-weight: 500;
    color: #4b4b4b;
  }
}
section#single h3 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #4b4b4b;
  margin-top: 30px;
  text-align: center;
  padding: 0 20px;
}
@media screen and (min-width: 320px) {
  section#single h3 {
    padding: 0px;
  }
}
@media screen and (min-width: 768px) {
  section#single h3 {
    padding: 0 20px;
  }
}
@media screen and (min-width: 992px) {
  section#single h3 {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1300px) {
  section#single h3 {
    padding: 0 20px;
  }
}

footer {
  margin-top: 50px;
}
footer h1 {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #4b4b4b;
}
footer h2 {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #4b4b4b;
  margin-bottom: 1px;
}
footer h3 {
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #4b4b4b;
  margin-bottom: 1px;
}
@media screen and (min-width: 320px) {
  footer h3 {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #4b4b4b;
  }
}
@media screen and (min-width: 768px) {
  footer h3 {
    font-family: "Roboto", sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #4b4b4b;
  }
}
@media screen and (min-width: 992px) {
  footer h3 {
    font-family: "Roboto", sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #4b4b4b;
  }
}
@media screen and (min-width: 1300px) {
  footer h3 {
    font-family: "Roboto", sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #4b4b4b;
  }
}
footer ul li a {
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: #4b4b4b;
  margin-bottom: 1px;
  text-transform: uppercase;
}
@media screen and (min-width: 320px) {
  footer ul li a {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #4b4b4b;
  }
}
@media screen and (min-width: 768px) {
  footer ul li a {
    font-family: "Roboto", sans-serif;
    font-size: 10px;
    font-weight: 300;
    color: #4b4b4b;
  }
}
@media screen and (min-width: 992px) {
  footer ul li a {
    font-family: "Roboto", sans-serif;
    font-size: 10px;
    font-weight: 300;
    color: #4b4b4b;
  }
}
@media screen and (min-width: 1300px) {
  footer ul li a {
    font-family: "Roboto", sans-serif;
    font-size: 10px;
    font-weight: 300;
    color: #4b4b4b;
  }
}
footer ul li a:hover {
  color: #d9b989;
}
footer .center {
  justify-content: center;
  display: grid;
}
@media screen and (min-width: 320px) {
  footer .center {
    justify-content: left;
    padding: 0 20px;
  }
}
@media screen and (min-width: 768px) {
  footer .center {
    justify-content: center;
    padding: 0;
  }
}
@media screen and (min-width: 992px) {
  footer .center {
    justify-content: center;
    padding: 0;
  }
}
@media screen and (min-width: 1300px) {
  footer .center {
    justify-content: center;
    padding: 0;
  }
}
footer .social {
  justify-content: center;
  display: grid;
}
footer .social .social-row {
  display: flex;
  margin-top: 15px;
}
@media screen and (min-width: 320px) {
  footer .social .social-row {
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  footer .social .social-row {
    justify-content: left;
  }
}
@media screen and (min-width: 992px) {
  footer .social .social-row {
    justify-content: left;
  }
}
@media screen and (min-width: 1300px) {
  footer .social .social-row {
    justify-content: left;
  }
}
footer .social .item {
  padding-right: 20px;
  align-items: center;
  display: flex;
}
footer .social .item img {
  width: 30px;
  height: 30px;
}
footer .endereco {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
footer .endereco img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
footer .uhull {
  margin-top: 50px;
  text-align: center;
  background-color: #002641;
}
footer .uhull img {
  padding: 15px;
}

/*# sourceMappingURL=style.css.map */
