/** INCLUDES **/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  appearance: none;
  list-style: none;
  outline: none;
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #dcdcdc;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ff8700;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #003232;
}

@keyframes navOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes playRipple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.12);
  }
  100% {
    box-shadow: 0 0 0 22px rgba(255, 255, 255, 0);
  }
}
@keyframes fadeInLoading {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spinLoader {
  to {
    transform: rotate(360deg);
  }
}
@keyframes heroLineShimmer {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 400px 0;
  }
}
/** COMPONENTES **/
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 1rem);
  padding-left: var(--bs-gutter-x, 1rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 540px) {
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 720px) {
  .container-md {
    max-width: 720px;
  }
}

@media (min-width: 960px) {
  .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1140px) {
  .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 1320px) {
  .container-xxl {
    max-width: 1320px;
  }
}

nav {
  background: transparent;
  position: fixed;
  width: 100%;
  padding: 50px 0 20px;
  top: 0;
  left: 0;
  z-index: 450;
  transition: background-color 260ms ease, backdrop-filter 260ms ease, -webkit-backdrop-filter 260ms ease, padding 260ms ease, box-shadow 260ms ease;
}
@media (min-width: 992px) {
  nav {
    padding: 100px 0 20px;
  }
}
nav.scrolled {
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  backdrop-filter: blur(10px) saturate(1.2);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.4);
  padding: 22px 0 12px;
  isolation: isolate;
}
@media (min-width: 992px) {
  nav.scrolled {
    padding: 15px 0 15px;
  }
}
nav.scrolled > .container > .contain-logo-nav > a > img {
  max-width: 170px;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
nav .container > div.contain-logo-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .container > div.contain-logo-nav > a {
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .container > div.contain-logo-nav > a > img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 180px;
  object-fit: cover;
  transition: all 260ms;
}
@media (min-width: 600px) {
  nav .container > div.contain-logo-nav > a > img {
    max-width: 110px;
  }
}
@media (min-width: 992px) {
  nav .container > div.contain-logo-nav > a > img {
    max-width: 230px;
  }
}
@media (min-width: 600px) {
  nav .container input {
    display: none;
  }
}
nav .container label.burger {
  position: relative;
  width: 36px;
  height: 22px;
  display: inline-block;
  cursor: pointer;
}
@media (min-width: 600px) {
  nav .container label.burger {
    display: none;
  }
}
nav .container label.burger::before,
nav .container label.burger::after,
nav .container label.burger > span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), opacity 280ms ease;
}
nav .container label.burger::before {
  top: 0;
}
nav .container label.burger > span {
  top: 50%;
  transform: translateY(-50%);
}
nav .container label.burger::after {
  bottom: 0;
}
nav .container input:checked + label.burger > span {
  opacity: 0;
  transform: translateY(-50%) scaleX(0.6);
}
nav .container input:checked + label.burger::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
nav .container input:checked + label.burger::after {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-45deg);
}
nav .container input:checked ~ ul {
  display: block;
  position: absolute;
  width: 100%;
  top: calc(100% + 12px);
  left: 0;
  animation: navOpen 1.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
nav ul {
  display: none;
}
@media (min-width: 600px) {
  nav ul {
    display: flex;
    gap: 2rem;
  }
}
@media (min-width: 800px) {
  nav ul {
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  nav ul {
    gap: 50px;
  }
}
nav ul li {
  cursor: pointer;
  transition: all 200ms ease;
  padding: 12px 10px;
}
@media (min-width: 600px) {
  nav ul li {
    background: transparent;
    padding: 0;
  }
}
nav ul li > a {
  display: block;
  font-size: 18px;
  text-decoration: none;
  outline: none;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
@media (min-width: 600px) {
  nav ul li > a {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  nav ul li > a {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  nav ul li > a {
    font-size: 20px;
  }
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: radial-gradient(1200px 600px at 50% 10%, rgba(0, 50, 50, 0.18), transparent 70%), rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 260ms ease;
  backdrop-filter: blur(2px);
}
.modal-backdrop.open {
  opacity: 1;
}
.modal-backdrop.open .modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.modal-backdrop.open .modal-dialog::before {
  width: 100%;
}
.modal-backdrop .modal-dialog {
  width: 90%;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  backdrop-filter: blur(10px) saturate(1.2);
  border-radius: 14px;
  overflow: hidden;
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease, box-shadow 320ms ease;
  position: relative;
}
.modal-backdrop .modal-dialog::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #003232, rgba(255, 255, 255, 0.5));
  transition: width 600ms ease;
}
.modal-backdrop .modal-dialog .modal-header {
  display: flex;
  justify-content: flex-end;
  padding: 8px;
}
.modal-backdrop .modal-dialog .modal-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background-color 200ms ease, transform 200ms ease, color 200ms ease;
}
.modal-backdrop .modal-dialog .modal-close:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}
.modal-backdrop .modal-dialog .modal-body {
  position: relative;
}
.modal-backdrop .modal-dialog .modal-body .video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.modal-backdrop .modal-dialog .modal-body .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 992px) {
  .modal-backdrop .modal-dialog {
    max-width: 1000px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .modal-backdrop,
  .modal-backdrop .modal-dialog,
  .modal-backdrop .modal-dialog .modal-close {
    transition: none;
  }
}
/** PAGINAS **/
body#home.nav-scrolled::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 99;
}
body#home nav > .container > ul {
  transition: background 0.3s ease;
}
@media (max-width: 599px) {
  body#home nav > .container #burger:checked ~ ul {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}
body#home .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
  will-change: opacity, transform;
}
body#home .in-view {
  opacity: 1;
  transform: translateY(0);
}
body#home section.hero {
  position: relative;
  background: #011915;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
}
@media (min-width: 576px) {
  body#home section.hero {
    min-height: 640px;
  }
}
@media (min-width: 768px) {
  body#home section.hero {
    min-height: 520px;
  }
}
@media (min-width: 992px) {
  body#home section.hero {
    min-height: 620px;
  }
}
@media (min-width: 1200px) {
  body#home section.hero {
    min-height: 830px;
  }
}
body#home section.hero > div.bg-hero > img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
body#home section.hero > div.container > span.titulo {
  display: block;
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 300;
  font-size: 40px;
  line-height: 43px;
  width: 100%;
}
@media (min-width: 576px) {
  body#home section.hero > div.container > span.titulo {
    font-size: 43px;
    line-height: 46px;
  }
}
@media (min-width: 768px) {
  body#home section.hero > div.container > span.titulo {
    font-size: 46px;
    line-height: 49px;
  }
}
@media (min-width: 867px) {
  body#home section.hero > div.container > span.titulo {
    font-size: 50px;
    line-height: 53px;
  }
}
@media (min-width: 939px) {
  body#home section.hero > div.container > span.titulo {
    font-size: 54px;
    line-height: 57px;
  }
}
@media (min-width: 992px) {
  body#home section.hero > div.container > span.titulo {
    font-size: 50px;
    line-height: 53px;
    max-width: 50%;
    top: 50px;
  }
}
@media (min-width: 1200px) {
  body#home section.hero > div.container > span.titulo {
    font-size: 64px;
    line-height: 68px;
    max-width: 65%;
    top: 70px;
  }
}
body#home section.hero > div.container > span.titulo .italic {
  position: relative;
  font-weight: 300;
  font-family: "Prata", serif;
  font-style: italic;
}
body#home section.hero > div.container > span.titulo .italic::after {
  content: "";
  position: absolute;
  left: calc(100% + 30px);
  top: calc(50% + 2px);
  bottom: 50%;
  margin-top: auto;
  margin-bottom: auto;
  width: 3000px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), #fff 40%, rgba(255, 255, 255, 0.85) 80%);
  background-size: 280px 100%;
  background-repeat: repeat-x;
  opacity: 1;
}
@media (min-width: 768px) {
  body#home section.hero > div.container > span.titulo .italic::after {
    left: calc(100% + 50px);
  }
}
@media (min-width: 992px) {
  body#home section.hero > div.container > span.titulo .italic::after {
    left: calc(100% + 70px);
  }
}
@media (min-width: 992px) {
  body#home section.hero > div.container > span.titulo .italic::after {
    height: 3px;
    top: calc(50% + 3px);
  }
}
body#home section.form {
  padding-top: 50px;
  background: #fff;
}
@media (min-width: 992px) {
  body#home section.form {
    padding-top: 100px;
  }
}
body#home section.form > .container > div.contain-titulo {
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  body#home section.form > .container > div.contain-titulo {
    padding-bottom: 70px;
  }
}
body#home section.form > .container > div.contain-titulo > span.titulo {
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  color: #1c1c1c;
}
@media (min-width: 768px) {
  body#home section.form > .container > div.contain-titulo > span.titulo {
    font-size: 24px;
  }
}
body#home section.form > .container > form > div.contain-itens-form {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
@media (min-width: 576px) {
  body#home section.form > .container > form > div.contain-itens-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 12px;
  }
  body#home section.form > .container > form > div.contain-itens-form > .item-form:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  body#home section.form > .container > form > div.contain-itens-form > .item-form:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }
  body#home section.form > .container > form > div.contain-itens-form > .item-form:nth-child(2) {
    grid-column: 1/-1;
    grid-row: 2;
  }
  body#home section.form > .container > form > div.contain-itens-form > .item-form.item-form-submit {
    grid-column: 1/-1;
    grid-row: 4;
  }
}
@media (min-width: 992px) {
  body#home section.form > .container > form > div.contain-itens-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
  }
  body#home section.form > .container > form > div.contain-itens-form > .item-form:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  body#home section.form > .container > form > div.contain-itens-form > .item-form:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }
  body#home section.form > .container > form > div.contain-itens-form > .item-form:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
  }
  body#home section.form > .container > form > div.contain-itens-form > .item-form.item-form-submit {
    grid-column: 1/-1;
    grid-row: 3;
  }
}
@media (min-width: 1200px) {
  body#home section.form > .container > form > div.contain-itens-form {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 35px;
    align-items: end;
  }
  body#home section.form > .container > form > div.contain-itens-form > .item-form:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  body#home section.form > .container > form > div.contain-itens-form > .item-form:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  body#home section.form > .container > form > div.contain-itens-form > .item-form:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }
  body#home section.form > .container > form > div.contain-itens-form > .item-form.item-form-submit {
    grid-column: 4;
    grid-row: 1;
  }
}
body#home section.form > .container > form > div.contain-itens-form > .item-form {
  width: 100%;
}
body#home section.form > .container > form > div.contain-itens-form > .item-form-check {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 7px;
}
@media (min-width: 576px) {
  body#home section.form > .container > form > div.contain-itens-form > .item-form-check {
    align-items: center;
  }
}
body#home section.form > .container > form > div.contain-itens-form > .item-form:nth-child(4) {
  grid-column: 1/-1;
}
body#home section.form > .container > form > div.contain-itens-form > .item-form > label {
  display: block;
  width: 100%;
  font-size: 15px;
  font-weight: 300;
  color: #757575;
  cursor: pointer;
}
body#home section.form > .container > form > div.contain-itens-form > .item-form > input:not([type=checkbox]) {
  display: block;
  width: 100%;
  padding: 10px 5px;
  border: none;
  background: none;
  outline: none;
  border-bottom: 1px solid #003232;
  font-size: 15px;
  font-weight: 300;
  color: #757575;
  caret-color: #003232;
}
body#home section.form > .container > form > div.contain-itens-form > .item-form > input[type=checkbox] {
  display: block;
  width: 20px;
  height: 20px;
  appearance: auto;
}
body#home section.form > .container > form > div.contain-itens-form > .item-form.item-form-submit > button {
  display: block;
  width: 100%;
  text-align: center;
  border: none;
  background: #003232;
  outline: none;
  cursor: pointer;
  padding: 12px 10px;
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background-color 0.3s ease;
  will-change: transform, box-shadow, background-color;
}
body#home section.form > .container > form > div.contain-itens-form > .item-form.item-form-submit > button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 50, 50, 0.28);
  background: #004545;
}
body#home section.form > .container > form > div.contain-itens-form > .item-form.item-form-submit > button:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 6px 14px rgba(0, 50, 50, 0.24);
}
body#home section.form > .container > form > div.contain-itens-form > .item-form.item-form-submit > button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 2px;
}
body#home section.form > .container > form > div.contain-itens-form > .item-form.item-form-submit > button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(240px circle at 50% 50%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
body#home section.form > .container > form > div.contain-itens-form > .item-form.item-form-submit > button:hover::after {
  opacity: 1;
}
body#home section.media {
  padding-top: 70px;
  background: #fff;
}
@media (min-width: 992px) {
  body#home section.media {
    padding-top: 120px;
  }
}
body#home section.media .container > button.btn-action-media {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  will-change: transform, box-shadow;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
body#home section.media .container > button.btn-action-media::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
body#home section.media .container > button.btn-action-media > div.contain-action-media {
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 576px) {
  body#home section.media .container > button.btn-action-media > div.contain-action-media {
    height: 330px;
  }
}
@media (min-width: 768px) {
  body#home section.media .container > button.btn-action-media > div.contain-action-media {
    height: 400px;
  }
}
@media (min-width: 992px) {
  body#home section.media .container > button.btn-action-media > div.contain-action-media {
    height: 480px;
  }
}
@media (min-width: 1200px) {
  body#home section.media .container > button.btn-action-media > div.contain-action-media {
    height: 580px;
  }
}
body#home section.media .container > button.btn-action-media > div.contain-action-media > div.contain-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  color: #fff;
}
body#home section.media .container > button.btn-action-media > div.contain-action-media > div.contain-icon > .play-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.12);
}
body#home section.media .container > button.btn-action-media > div.contain-action-media > div.contain-icon > .play-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  transform: translateX(2px);
}
body#home section.media .container > button.btn-action-media > div.contain-action-media > div.contain-icon > .play-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.12);
  animation: playRipple 2.4s ease-out infinite;
}
@media (min-width: 576px) {
  body#home section.media .container > button.btn-action-media > div.contain-action-media > div.contain-icon > .play-icon {
    width: 80px;
    height: 80px;
  }
  body#home section.media .container > button.btn-action-media > div.contain-action-media > div.contain-icon > .play-icon::before {
    border-left-width: 20px;
    border-top-width: 13px;
    border-bottom-width: 13px;
  }
}
@media (min-width: 992px) {
  body#home section.media .container > button.btn-action-media > div.contain-action-media > div.contain-icon > .play-icon {
    width: 100px;
    height: 100px;
  }
  body#home section.media .container > button.btn-action-media > div.contain-action-media > div.contain-icon > .play-icon::before {
    border-left-width: 24px;
    border-top-width: 16px;
    border-bottom-width: 16px;
  }
}
body#home section.media .container > button.btn-action-media > div.contain-action-media.has-thumb {
  background-size: cover;
  background-position: center;
}
body#home section.media .container > button.btn-action-media > div.contain-action-media.has-thumb::before, body#home section.media .container > button.btn-action-media > div.contain-action-media.has-thumb::after {
  content: none;
}
body#home section.media .container > button.btn-action-media:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}
body#home section.media .container > button.btn-action-media:active {
  transform: translateY(-2px);
}
body#home section.media .container > button.btn-action-media:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 2px;
}
body#home section.desc {
  background: #fff;
  padding-top: 80px;
}
@media (min-width: 768px) {
  body#home section.desc {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  body#home section.desc {
    padding-top: 175px;
  }
}
body#home section.desc .container > .grid-desc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
body#home section.desc .container > .grid-desc > .item-grid-desc:nth-child(2) {
  grid-column: 1;
  grid-row: 1;
}
body#home section.desc .container > .grid-desc > .item-grid-desc:nth-child(1) {
  grid-column: 1;
  grid-row: 2;
}
body#home section.desc .container > .grid-desc > .item-grid-desc:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
}
@media (min-width: 768px) {
  body#home section.desc .container > .grid-desc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0px;
  }
  body#home section.desc .container > .grid-desc > .item-grid-desc:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
  }
  body#home section.desc .container > .grid-desc > .item-grid-desc:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  body#home section.desc .container > .grid-desc > .item-grid-desc:nth-child(3) {
    grid-column: 1/-1;
    grid-row: 2;
  }
}
@media (min-width: 1200px) {
  body#home section.desc .container > .grid-desc {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 123px;
  }
  body#home section.desc .container > .grid-desc > .item-grid-desc:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  body#home section.desc .container > .grid-desc > .item-grid-desc:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-start;
  }
  body#home section.desc .container > .grid-desc > .item-grid-desc:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    align-items: center;
  }
}
body#home section.desc .container > .grid-desc > div.item-grid-desc > span.titulo {
  display: block;
  width: 100%;
  font-weight: 400;
  color: #893B1F;
  font-size: 38px;
  line-height: 43px;
}
@media (min-width: 768px) {
  body#home section.desc .container > .grid-desc > div.item-grid-desc > span.titulo {
    font-size: 48px;
    line-height: 53px;
    text-align: right;
  }
}
@media (min-width: 1200px) {
  body#home section.desc .container > .grid-desc > div.item-grid-desc > span.titulo {
    text-align: left;
  }
}
body#home section.desc .container > .grid-desc > div.item-grid-desc > span.desc {
  display: block;
  font-weight: 300;
  color: #1c1c1c;
  font-size: 14px;
  line-height: 17px;
}
@media (min-width: 768px) {
  body#home section.desc .container > .grid-desc > div.item-grid-desc > span.desc {
    padding-top: 30px;
    text-align: right;
  }
}
@media (min-width: 1200px) {
  body#home section.desc .container > .grid-desc > div.item-grid-desc > span.desc {
    padding-top: 0;
    text-align: left;
  }
}
body#home section.desc .container > .grid-desc > div.item-grid-desc > img {
  display: block;
  width: 100%;
  max-width: 130px;
  object-fit: cover;
}
@media (min-width: 768px) {
  body#home section.desc .container > .grid-desc > div.item-grid-desc > img {
    max-width: 120px;
  }
}
@media (min-width: 1200px) {
  body#home section.desc .container > .grid-desc > div.item-grid-desc > img {
    max-width: 245px;
  }
}
body#home section.mapa {
  padding-top: 50px;
  background-image: linear-gradient(to bottom, #fff 0%, #fff 23%, #004545 23%, #004545 100%);
  overflow: hidden;
}
@media (min-width: 576px) {
  body#home section.mapa {
    padding-top: 80px;
    background-image: linear-gradient(to bottom, #fff 0%, #fff 32%, #004545 32%, #004545 100%);
  }
}
@media (min-width: 992px) {
  body#home section.mapa {
    padding-top: 100px;
    background-image: linear-gradient(to bottom, #fff 0%, #fff 39%, #004545 39%, #004545 100%);
  }
}
@media (min-width: 1200px) {
  body#home section.mapa {
    padding-top: 180px;
    background-image: linear-gradient(to bottom, #fff 0, #fff 46%, #004545 46%);
  }
}
body#home section.mapa .container {
  position: relative;
}
body#home section.mapa .container::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3000px;
  height: 52px;
  background: url("./../img/detail-bg-map.png") no-repeat left bottom;
  background-size: contain;
  background-position: 17px 0px;
  opacity: 0;
  transform: translate3d(-20px, 0, 0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease;
  will-change: transform, opacity;
}
body#home section.mapa .container.in-view::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
body#home section.mapa .container > .contain-mapa {
  width: 100%;
  position: relative;
  cursor: pointer;
}
body#home section.mapa .container > .contain-mapa > img {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  object-fit: contain;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
body#home section.mapa .container > .grid-mapa {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 80px 0 120px;
}
@media (min-width: 768px) {
  body#home section.mapa .container > .grid-mapa {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }
}
body#home section.mapa .container > .grid-mapa > .item {
  width: 100%;
}
@media (min-width: 1200px) {
  body#home section.mapa .container > .grid-mapa > .item:nth-child(1) {
    flex-grow: 1;
  }
}
@media (min-width: 1200px) {
  body#home section.mapa .container > .grid-mapa > .item:nth-child(2) {
    max-width: 340px;
  }
}
body#home section.mapa .container > .grid-mapa > .item > span {
  display: block;
  color: #fff;
}
body#home section.mapa .container > .grid-mapa > .item > span.titulo {
  font-weight: 300;
  font-size: 33px;
  line-height: 36px;
}
body#home section.mapa .container > .grid-mapa > .item > span.titulo .italic {
  font-family: "Prata", serif;
  font-style: italic;
}
@media (min-width: 768px) {
  body#home section.mapa .container > .grid-mapa > .item > span.titulo {
    font-size: 28px;
    line-height: 31px;
  }
}
@media (min-width: 992px) {
  body#home section.mapa .container > .grid-mapa > .item > span.titulo {
    font-size: 34px;
    line-height: 37px;
  }
}
@media (min-width: 1200px) {
  body#home section.mapa .container > .grid-mapa > .item > span.titulo {
    font-size: 48px;
    line-height: 51px;
  }
}
body#home section.mapa .container > .grid-mapa > .item > span.desc {
  font-weight: 300;
  font-size: 14px;
  line-height: 27px;
}
body#home section.info {
  background: #fff;
  padding: 75px 0;
}
@media (min-width: 992px) {
  body#home section.info {
    padding: 150px 0;
  }
}
body#home section.info .container > span.info {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  color: #1c1c1c;
  text-decoration: underline;
}
@media (min-width: 768px) {
  body#home section.info .container > span.info {
    font-size: 24px;
  }
}
body#home section.pilares {
  position: relative;
  height: 266px;
}
@media (min-width: 1500px) {
  body#home section.pilares {
    height: 290px;
  }
}
body#home section.pilares > div.bg-pilares {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 266px;
}
@media (min-width: 1500px) {
  body#home section.pilares > div.bg-pilares {
    height: 290px;
  }
}
body#home section.pilares > div.bg-pilares > img {
  display: block;
  width: 100%;
  height: 266px;
  object-fit: cover;
  object-position: left;
  will-change: transform;
}
@media (min-width: 992px) {
  body#home section.pilares > div.bg-pilares > img {
    object-position: 50% 50%;
  }
}
@media (min-width: 1500px) {
  body#home section.pilares > div.bg-pilares > img {
    height: 290px;
  }
}
body#home section.pilares > div.container {
  position: relative;
  z-index: 1;
  height: 266px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 1500px) {
  body#home section.pilares > div.container {
    height: 290px;
  }
}
body#home section.pilares > div.container > span.titulo {
  display: block;
  font-weight: 300;
  color: #fff;
  font-size: 40px;
}
@media (min-width: 768px) {
  body#home section.pilares > div.container > span.titulo {
    font-size: 48px;
  }
}
body#home section.pilares > div.container > span.titulo .italic {
  font-family: "Prata", serif;
  font-style: italic;
}
body#home section.desc-pilares {
  background: #fff;
  overflow: hidden;
}
body#home section.desc-pilares > .container {
  position: relative;
  padding-top: 100px;
  padding-bottom: 85px;
}
@media (min-width: 768px) {
  body#home section.desc-pilares > .container {
    padding-top: 200px;
    padding-bottom: 170px;
  }
}
body#home section.desc-pilares > .container::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 33px;
  width: 3000px;
  background: url("./../img/bg-desc-pilares.png") no-repeat left bottom;
  background-position: 17px 0px;
}
body#home section.desc-pilares > .container > div.contain-grid {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
body#home section.desc-pilares > .container > div.contain-grid:nth-child(1) {
  padding-bottom: 25px;
}
@media (min-width: 768px) {
  body#home section.desc-pilares > .container > div.contain-grid:nth-child(1) {
    padding-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  body#home section.desc-pilares > .container > div.contain-grid:nth-child(1) {
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) {
  body#home section.desc-pilares > .container > div.contain-grid {
    flex-direction: row;
    gap: 115px;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  body#home section.desc-pilares > .container > div.contain-grid {
    gap: 230px;
  }
}
body#home section.desc-pilares > .container > div.contain-grid > .item {
  width: 100%;
  font-weight: 300;
}
body#home section.desc-pilares > .container > div.contain-grid > .item > span {
  display: block;
}
body#home section.desc-pilares > .container > div.contain-grid > .item > span.titulo {
  font-size: 36px;
  color: #893B1F;
  font-family: "Prata", serif;
  font-style: italic;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  body#home section.desc-pilares > .container > div.contain-grid > .item > span.titulo {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  body#home section.desc-pilares > .container > div.contain-grid > .item > span.titulo {
    font-size: 48px;
  }
}
body#home section.desc-pilares > .container > div.contain-grid > .item > span.desc {
  font-size: 14px;
  color: #1c1c1c;
}
body#home footer {
  padding: 60px 0 100px;
  background: #003232;
}
@media (min-width: 992px) {
  body#home footer {
    padding: 120px 0 140px;
  }
}
body#home footer > .container > div.grid-footer {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
}
@media (min-width: 768px) {
  body#home footer > .container > div.grid-footer {
    flex-direction: row;
  }
}
@media (min-width: 922px) {
  body#home footer > .container > div.grid-footer {
    gap: 120px;
  }
}
@media (min-width: 1200px) {
  body#home footer > .container > div.grid-footer {
    gap: 240px;
  }
}
body#home footer > .container > div.grid-footer > div.item {
  width: 100%;
}
body#home footer > .container > div.grid-footer > div.item:nth-child(1) {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  body#home footer > .container > div.grid-footer > div.item:nth-child(1) {
    justify-content: flex-start;
  }
}
body#home footer > .container > div.grid-footer > div.item > img {
  display: block;
  width: 100%;
  max-width: 220px;
  object-fit: cover;
}
body#home footer > .container > div.grid-footer > div.item > div.grid-interna-footer {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
body#home footer > .container > div.grid-footer > div.item > div.grid-interna-footer:nth-child(1) {
  padding-bottom: 25px;
}
@media (min-width: 1200px) {
  body#home footer > .container > div.grid-footer > div.item > div.grid-interna-footer:nth-child(1) {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  body#home footer > .container > div.grid-footer > div.item > div.grid-interna-footer {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  body#home footer > .container > div.grid-footer > div.item > div.grid-interna-footer {
    gap: 40px;
  }
}
body#home footer > .container > div.grid-footer > div.item > div.grid-interna-footer > div.item-interno {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}
@media (min-width: 768px) {
  body#home footer > .container > div.grid-footer > div.item > div.grid-interna-footer > div.item-interno {
    justify-content: flex-start;
  }
}
body#home footer > .container > div.grid-footer > div.item > div.grid-interna-footer > div.item-interno > div.contain-ico {
  display: flex;
  justify-content: center;
  align-items: center;
}
body#home footer > .container > div.grid-footer > div.item > div.grid-interna-footer > div.item-interno > div.contain-ico > img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 29px;
  object-fit: cover;
}
body#home footer > .container > div.grid-footer > div.item > div.grid-interna-footer > div.item-interno > span.desc {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}

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