:root {
  --navy: #033148;
  --aco: #3a607c;
  --bege: #ebe5df;
  --azul: #c9d8e0;
  --cinza: #e4e4e4;
  --tan: #b7a89a;
  --verde: #64cb52;
  --texto: #1d1d1b;
  --container: 1200px;
  --barra-h: 77px;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family:
    "Open Sans",
    -apple-system,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-weight: 400;
  color: var(--texto);
  background: #fff;
  padding-bottom: var(--barra-h);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
}
p {
  margin: 0 0 1em;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 21px;
  line-height: 28px;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.4em;
}

.titulo {
  font-weight: 700;
  color: var(--navy);
  line-height: 51px;
}

@media (max-width: 768px) {
  .eyebrow {
    font-size: 15px;
    letter-spacing: 0.3em;
    margin-bottom: 0;
  }
  .titulo {
    line-height: 1.3;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

#home {
  position: relative;
  min-height: 592px;
  overflow: hidden;
  background: var(--navy);
}

.hero__bg {
  position: relative;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero__panel {
  position: absolute;
  left: 0;
  top: 32.3%;
  width: 45%;
  height: 35%;
  background: rgba(0, 49, 73, 0.6);
}

.hero__banda {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__inner {
  min-height: 592px;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}

.hero__h1 {
  margin: 0;
  flex: none;
  line-height: 0;
}
.hero__logo {
  width: 197px;
}

.hero__specs {
  color: #fff;
}
.hero__area {
  font-size: 59px;
  font-weight: 700;
  line-height: 71px;
  margin: 0 0 18px;
}
.hero__area sup {
  font-size: 0.5em;
  vertical-align: super;
}
.hero__lista {
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  margin: 0;
}

@media (max-width: 1270px) {
  .hero__bg img {
    height: 69vh;
    object-position: center center;
  }
}

@media (max-width: 992px) {
  #refugio {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  #home {
    min-height: 0;
    overflow: visible;
    background: #fff;
  }
  .hero__banda {
    position: static;
  }
  .hero__panel {
    display: none;
  }
  .hero__bg {
    position: static;
    display: block;
  }
  .hero__bg::after {
    display: none;
  }

  .hero__inner {
    min-height: 0;
    gap: 0;
    align-items: stretch;
    padding: 0;
    max-width: none;
  }
  .hero__h1 {
    background: #fff;
    padding: 22px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
    flex: none;
  }
  /* logo-elysium.png e branco (invisivel na faixa branca);
     logo-elysium-navy.png e o mesmo desenho recolorido */
  .hero__logo {
    display: none;
  }
  .hero__h1::before {
    content: "";
    display: block;
    width: 52px;
    height: 100px;
    background: url("../images/elysium/logo-elysium-navy.png") center / contain
      no-repeat;
  }
  .hero__specs {
    flex: 1;
    background: var(--azul);
    color: var(--navy);
    padding: 24px 20px 24px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero__area {
    font-size: 30px;
    margin: 0 0 -10px;
  }
  .hero__lista {
    font-size: 9px;
    line-height: 12px;
    color: #3a607c;
  }
  .hero__bg img {
    height: 98vw;
    object-position: 86% center;
  }
}

#atendimento {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #fff;
  padding: 25px 0;
  box-shadow: 0 -2px 14px rgba(3, 49, 72, 0.13);

  opacity: 0;
  transform: translateY(100%);
  animation: atendimentoShow 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0.5s;
}

@keyframes atendimentoShow {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.atend__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.atend__logo {
  font-size: 26px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.atend__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.atend__ic {
  width: 46px;
  height: 46px;
  flex: none;
}
.atend__ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.atend__txt {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--texto);
}
.atend__txt strong {
  font-weight: 400;
  font-size: 16px;
  color: var(--aco);
}
.atend__cta--whatsapp {
  color: var(--verde);
}
.atend__item:hover .atend__txt strong {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .atend__inner {
    justify-content: flex-start;
    gap: 18px;
  }
  .atend__logo {
    width: 100%;
    text-align: center;
  }

  #atendimento {
    padding: 15px 0;
  }
}
@media (max-width: 768px) {
  .atend__txt {
    display: none;
  }
  .atend__inner {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 5px;
  }
  .atend__logo {
    width: auto;
    font-size: 0;
    margin-right: 15%;
  }
  .atend__logo::before {
    content: "";
    display: block;
    width: 26px;
    height: 44px;
    background: url("../images/elysium/logo-elysium-navy.png") center / contain
      no-repeat;
  }
  .atend__item {
    flex: none;
  }
  .atend__ic {
    width: 40px;
    height: 40px;
  }
}
.split {
  width: 100%;
}
.split--navy {
  background: linear-gradient(to right, #fff 50%, var(--navy) 50%);
}
.split--bege {
  background: linear-gradient(to right, #fff 50%, var(--bege) 50%);
}

.split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.split__left {
  padding: 66px 66px 66px 0;
  text-align: right;
}
.split__right {
  padding: 72px 0 72px 83px;
}
.split__titulo {
  font-size: 43px;
}

#refugio {
  min-height: 619px;
}
#refugio .split__right {
  color: #fff;
}

#refugio .split__right p {
  font-weight: 300;
  font-size: 16px;
  line-height: 31px;
  margin: 0;
}

#refugio .split__right p.split__destaque {
  font-weight: 700;
  margin-top: 1.9em;
}

.feats {
  list-style: none;
  margin: 49px 0 0;
  padding: 0;
  display: flex;
  gap: 44px;
  align-items: flex-start;
  justify-content: space-between;
}
.feats li {
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}
.feats img {
  height: 46px;
  width: auto;
  margin: 0 auto 14px;
}

@media (max-width: 992px) {
  .split--navy,
  .split--bege {
    background: none;
  }
  .split__inner {
    grid-template-columns: 1fr;
  }
  .refugio-container {
    padding: 0;
  }

  .refugio-container .split__left {
    padding: 0 24px;
    background: #fff;
    margin-top: -1px;
    margin-right: -1px;
  }

  .refugio-container .split__left .eyebrow {
    color: #3a607c !important;
    margin-top: -30px;
  }

  .refugio-container .split__left .titulo.split__titulo {
    color: #3a607c !important;
    margin-bottom: 30px;
  }

  .refugio-container .split__right {
    padding: 30px 24px 65px 24px;
  }
  .split__left {
    padding: 42px 0 20px;
    text-align: left;
  }
  .split__right {
    padding: 32px 0 48px;
  }
  .split__titulo {
    font-size: 30px;
  }
  #refugio {
    background: var(--navy);
  }
  #refugio .eyebrow,
  #refugio .split__titulo {
    color: #fff;
  }
  .feats {
    gap: 24px;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .split__titulo {
    font-size: 30px;
  }
  .feats li {
    font-size: 13px;
  }
  .feats img {
    height: 40px;
    margin-bottom: 10px;
  }
}

#salao {
  position: relative;
  width: 100%;
  line-height: 0;
}
#salao img {
  width: 100%;
  height: 815px;
  object-fit: cover;
}
#salao::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(
    to bottom,
    rgba(3, 49, 72, 0),
    rgba(3, 49, 72, 0.78)
  );
  pointer-events: none;
}
.salao__legenda {
  position: absolute;
  bottom: 26px;
  right: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container);
  padding: 0 24px;
  margin: 0;
  text-align: right;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.4;
  z-index: 1;
}
@media (max-width: 768px) {
  #salao img {
    height: 58vw;
  }
  .salao__legenda {
    left: 0;
    right: 0;
    transform: none;
    max-width: none;
    bottom: 12px;
    padding: 0 14px;
    font-size: 8px;
    letter-spacing: 0.14em;
  }
}

#lazer {
  min-height: 492px;
}
.lazer__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px 20px;
}
.lazer__grid li {
  text-align: center;
  font-size: 16px;
  line-height: 20px;
}
.lazer__grid img {
  height: 44px;
  width: auto;
  margin: 0 auto 12px;
}

@media (max-width: 992px) {
  #lazer {
    background: var(--bege);
  }
}
@media (max-width: 768px) {
  .lazer__grid {
    gap: 26px 8px;
  }
  .lazer__grid li {
    font-size: 11px;
    line-height: 1.3;
  }
  .lazer__grid img {
    height: 34px;
    margin-bottom: 8px;
  }
}

#perspectivas {
  padding: 114px 0 0;
  background: #fff;
  overflow-x: hidden;
}
.eyebrow--center {
  text-align: center;
}
.perspectivas__titulo {
  text-align: center;
  font-size: 43px;
  margin-bottom: 83px;
}

.persp__slide {
  position: relative;
  margin: 0;
}

.persp__slide::before {
  content: "";
  width: 100%;
  height: 112px;
  background-image: url("../images/elysium/gradient.png");
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
}

.persp__slide img {
  width: 660px;
  max-width: none;
  height: 520px;
  object-fit: cover;
}
.persp__slide figcaption {
  position: absolute;
  left: 24px;
  bottom: 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.owl-elysium .owl-item {
  transition: opacity 0.5s ease;
  opacity: 0.35;
}
.owl-elysium .owl-item.center {
  opacity: 1;
}
.owl-elysium .owl-item:not(.center) figcaption {
  opacity: 0;
}

.owl-elysium .owl-nav {
  position: static;
}
.owl-elysium .owl-nav .owl-prev,
.owl-elysium .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  width: auto;
  height: auto;
  background: none;
  border: 0;
  z-index: 5;
  padding: 20px;
  text-indent: 0;
}
.owl-elysium .owl-nav .owl-prev {
  left: calc(50% - 500px);
}
.owl-elysium .owl-nav .owl-next {
  right: calc(50% - 500px);
}
.owl-arrow {
  display: block;
  width: 16px;
  height: 16px;
  text-indent: 0;
  border-top: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
}
.owl-arrow--prev {
  transform: rotate(-135deg);
}
.owl-arrow--next {
  transform: rotate(45deg);
}

.owl-elysium .owl-dots {
  text-align: center;
  padding: 22px 0 30px;
}
.owl-elysium .owl-dots .owl-dot span {
  display: block;
  width: 9px;
  height: 9px;
  margin: 0 5px;
  background: none;
  border: 1px solid var(--navy);
  border-radius: 50%;
}
.owl-elysium .owl-dots .owl-dot.active span {
  background: var(--navy);
}

@media (max-width: 1199px) {
  .persp__slide::before {
    display: none;
  }
  .persp__slide img {
    width: 100%;
    height: 58vw;
    max-height: 480px;
  }
  .owl-elysium .owl-item {
    opacity: 1;
  }
  .owl-elysium .owl-item:not(.center) figcaption {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  /* overflow-x:hidden sozinho computa overflow-y:auto e o excesso de 20px
     dos owl-dots vira um scroll aninhado que prende o gesto; hidden clipa
     apenas padding vazio e nao e rolavel pelo usuario */
  #perspectivas {
    padding-top: 48px;
    overflow: hidden;
  }
  #perspectivas .eyebrow--center,
  .perspectivas__titulo {
    text-align: left;
  }
  .perspectivas__titulo {
    font-size: 28px;
    margin-bottom: 32px;
  }
  .persp__slide figcaption {
    position: static;
    margin: 0 32px;
    padding: 14px 10px;
    background: var(--azul);
    color: var(--navy);
    text-shadow: none;
    font-size: 13px;
    text-align: center;
  }
}

#planta {
  padding: 130px 0;
  background: #fff;
  text-align: center;
}
.planta__titulo {
  font-size: 43px;
}
.planta__sub {
  margin-top: 6px;
}
.planta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 48px;
}
.planta__img {
  display: block;
  cursor: zoom-in;
}
.planta__img img {
  max-width: 645px;
}
.planta__box {
  border: 1px solid #c9d8e0;
  padding: 54px 46px;
  flex: none;
}
.planta__area {
  font-size: 46px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.planta__area sup {
  font-size: 0.5em;
  vertical-align: super;
}
.planta__desc {
  font-size: 14px;
  color: var(--navy);
  margin: 0;
}

.modal#planta1 .modal-dialog {
  max-width: 900px;
  margin: 0 auto;
}
.modal#contact__form .modal-dialog {
  max-width: 560px;
  margin: 0 auto;
}
.modal-close {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 1060;
  width: 34px;
  height: 34px;
  border: 0;
  background: none;
  cursor: pointer;
}
.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 26px;
  height: 2px;
  background: #fff;
}
.modal-close::before {
  transform: rotate(45deg);
}
.modal-close::after {
  transform: rotate(-45deg);
}
.modal-content {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.modal-body {
  padding: 0;
}

@media (max-width: 992px) {
  .planta__inner {
    position: relative;
    flex-direction: column;
    gap: 0;
    margin-top: 30px;
  }
  .planta__img img {
    max-width: 100%;
  }
  .planta__box {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 1;
    background: #fff;
    padding: 12px 16px;
  }
  .planta__area {
    font-size: 20px;
    margin-bottom: 2px;
  }
  .planta__desc {
    font-size: 8px;
  }
  .planta__titulo {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  #planta {
    padding: 38px 0 24px;
  }
  .planta__sub {
    letter-spacing: 0.45em;
  }
  .planta__box {
    padding: 24px 10px;
    border-color: var(--azul);
  }
  .planta__area {
    font-size: 22px;
  }
}

#equilibrio {
  background: var(--azul);
  padding: 64px 0;
}
.equil__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 118px;
  align-items: center;
}
.equil__texto {
  text-align: right;
}
.equil__texto p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--navy);
  margin: 0 0 1.6em;
}
.equil__texto p:last-child {
  margin-bottom: 0;
}
.equil__titulo {
  font-size: 43px;
  margin-bottom: 14px;
}
.equil__claim {
  font-size: 21px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

#proximidades {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}
.prox__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.prox__grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.prox__grid img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}
.prox__nome {
  font-size: 15px;
  line-height: 1.35;
  margin-bottom: 14px;
}
.prox__tempo {
  font-size: 15px;
}
.prox__nota {
  font-size: 12px;
  margin: 42px 0 0;
}

@media (max-width: 992px) {
  #equilibrio {
    background: #fff;
    padding: 0;
  }
  .equil__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .equil__marca {
    order: 1;
    padding: 10px 0 34px;
  }
  .equil__texto {
    order: 2;
    text-align: left;
    background: var(--azul);
    margin: 0 -24px;
    padding: 38px 24px;
  }
  .equil__titulo {
    font-size: 30px;
  }
  .equil__claim {
    font-size: 15px;
  }
  .prox__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 12px;
  }
  .prox__grid li:last-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 768px) {
  .equil__marca {
    padding-left: 36px;
  }
}

#aerea {
  line-height: 0;
}
#aerea img {
  width: 100%;
  height: 821px;
  object-fit: cover;
}

#localizacao {
  background: linear-gradient(to bottom, var(--cinza) 71.4%, #fff 71.4%);
  padding: 60px 0 90px;
}
.loc__box {
  border: 1px solid #033149;
  background: transparent;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 30px 40px;
  position: relative;
}
.loc__texto {
  text-align: right;
}
.loc__endereco {
  font-size: 42px;
}
.loc__cta {
  font-size: 21px;
  line-height: 25px;
  font-weight: 400;
  margin: 10px 0 0;
}
.loc__mapa img {
  width: 100%;
}
.loc__mapa iframe {
  width: 100%;
  height: 300px;
  display: block;
  border: 0;
}

@media (max-width: 992px) {
  #localizacao {
    background: linear-gradient(to bottom, var(--cinza) 40%, #fff 40%);
    padding: 40px 0 60px;
  }
  .loc__box {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .loc__texto {
    text-align: left;
  }
  .loc__endereco {
    font-size: 24px;
  }
  #aerea img {
    height: 60vh;
  }
}
@media (max-width: 768px) {
  #aerea img {
    height: 52vw;
  }
  #localizacao {
    background: var(--cinza);
    padding: 16px 0 20px;
  }
  .loc__box {
    grid-template-columns: 5fr 6fr;
    gap: 0;
    border: 0;
    padding: 0;
    align-items: stretch;
  }
  .loc__texto {
    background: transparent;
    border: 1px solid #8fa3b0;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 15px;
    margin-right: -1px;
    height: 150px;
    margin-top: 25px;
  }
  #localizacao .eyebrow {
    font-size: 10px;
    margin-bottom: 6px;
    font-weight: 400;
  }
  .loc__endereco {
    font-size: 16px;
  }
  .loc__cta {
    font-size: 10px;
    line-height: 1.4;
    margin-top: 6px;
  }
}

#turita {
  padding: 90px 0 40px;
  background: #fff;
}
.turita__titulo {
  text-align: center;
  font-size: 43px;
  line-height: 51px;
  margin-bottom: 112px;
}
.turita__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 124px;
  align-items: start;
}
.turita__img img {
  width: 100%;
}
.turita__texto p {
  font-size: 15px;
  line-height: 1.7;
}

footer {
  padding: 50px 0 70px;
  background: #fff;
  margin-top: 130px;
}
.footer__inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 140px;
  text-align: center;
}
.footer__label {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin: 0 0 22px;
}
.footer__marca img {
  height: 62px;
  width: auto;
  margin: 0 auto;
}

.footer-text {
  width: 100%;
  margin-top: 50px;
}

.footer-text p {
 font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.footer-text p a {
  font-weight: 700;
}

@media (max-width: 992px) {
  .turita__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .turita__titulo {
    font-size: 43px;
    margin-bottom: 22px;
  }
  .footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 44px;
  }
}
@media (max-width: 768px) {
  #turita {
    padding-top: 64px;
  }
  .turita__img {
    display: none;
  }
  footer {
    margin-top: 24px;
    padding: 24px 0 40px;
  }
  .footer__inner {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 50px;
  }
  .footer__label {
    font-size: 11px;
    margin-bottom: 12px;
  }
  .footer__marca img {
    height: 38px;
  }
}

.form__wrap {
  background: transparent;
  padding: 44px 40px;
}

.form__wrap__icon {
  width: 55px;
  height: 55px;
  object-fit: contain;
}
.form__titulo {
  font-size: 21px;
  line-height: 25px;
  font-weight: 400;
  color: #000;
  margin-top: 18px;
  text-align: left;
}
.campo {
  width: 100%;
  margin-bottom: -5px;
}

.modal-open .modal {
  background: #c9d8e0;
}
.campo label {
  display: block;
  font-size: 12px;
  line-height: 16px;
  font-weight: 200;
  color: #000;
  position: relative;
  top: 25px;
  left: 10px;
  font-family: gotham-book, sans-serif;
}
.campo input,
.campo textarea {
  width: 100%;
  height: 55px;
  padding: 15px 10px 0 10px;
  border: 1px solid #fff;
  border-radius: 3px;
  font-family: inherit;
  font-size: 12px;
  line-height: 16px;
  font-weight: 200;
  background: #fff;
}
.campo input:focus,
.campo textarea:focus {
  outline: 2px solid var(--navy);
  outline-offset: 0;
  border-color: var(--navy);
}
.campo input.error,
.campo textarea.error {
  border-color: #c0392b;
}
.campo textarea {
  min-height: 160px;
  resize: vertical;
  padding-top: 30px;
}
.campo-flex {
  display: flex;
  gap: 14px;
}
.campo--ddd {
  max-width: 90px;
}
.form__erro {
  color: #c0392b;
  font-size: 13px;
  margin: 0 0 12px;
}
#elysium-form input[type="submit"] {
  width: fit-content;
  float: right;
  margin-top: 20px;
  border-radius: 3px;
  padding: 20px 90px;
  border: 0;
  cursor: pointer;
  background: var(--navy);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
#elysium-form input[type="submit"][disabled] {
  opacity: 0.6;
  cursor: default;
}

@media (max-width: 992px) {
  .campo-flex {
    flex-direction: column;
    gap: 0;
  }

  .campo.campo--ddd {
    max-width: 100%;
  }

  #elysium-form input[type="submit"] {
    width: 100%;
    float: none;
    padding: 20px 0;
    margin-top: 12px;
  }
}

@media (max-width: 768px) {
  :root {
    --barra-h: 68px;
  }
  .loc__mapa iframe {
    height: 200px;
  }
}

/* pagina sucesso */

.success {
  display: flex;
  min-height: 100vh;
}

.success__left,
.success__right {
  width: 45%;
}

.success__left {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.success__project {
  display: flex;
  align-items: center;
  gap: 40px;
}

.success__project img {
  width: 180px;
  display: block;
}

.success__info h2 {
  font-size: 45px;
  line-height: 61px;
  font-weight: 700;
  color: #033149;
  margin-bottom: 0;
}

.success__info p {
  font-size: 11px;
  line-height: 15px;
  font-weight: 400;
  color: #033149;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.success__right {
  background: #c9d8e0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.success__content {
  max-width: 400px;
}

.success__icon {
  width: 60px;
  margin-bottom: 45px;
}

.success__icon img {
  width: 100%;
  height: auto;
  display: block;
}

.success__content h1 {
  font-size: 42px;
  line-height: 57px;
  font-weight: 700;
  color: #000;
  margin-bottom: 33px;
}

.success__content p {
  font-size: 27px;
  line-height: 37px;
  color: #000;
  font-weight: 300;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 45px;
  background: #033149;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  transition: 0.3s;
  border-radius: 3px;
}

.btn:hover {
  background: #0d466f;
}

.success__project img {
  opacity: 0;
  transform: translateX(-60px) scale(0.96);

  animation: logoEnter 1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.success__info {
  opacity: 0;
  transform: translateX(60px) scale(0.96);

  animation: infoEnter 1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0.2s;
}

@keyframes logoEnter {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes infoEnter {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.success__content > * {
  opacity: 0;
  transform: translateY(25px);
}

/* Ícone */
.success__icon {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

/* Título */
.success__content h1 {
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.4s;
}

/* Texto */
.success__content p {
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.6s;
}

/* Botão */
.success__content .btn {
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.8s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-no-scroll {
  overflow-y: hidden;
}

@media (max-width: 991px) {
  .success {
    flex-direction: column;
  }

  .success__left,
  .success__right {
    width: 100%;
  }

  .success__left {
    padding: 50px 20px;
  }

  .success__project {
    gap: 30px;
    text-align: center;
  }

  .success__project img {
    width: 70px;
  }

  .success__info h2 {
    font-size: 30px;
    margin-bottom: -5px;
    text-align: left;
  }

  .success__info p {
    font-size: 10px;
    margin-bottom: 0px;
    text-align: left;
  }

  .success__right {
    padding: 60px 24px;
    height: 100vh;
    align-items: flex-start;
  }

  .success__content {
    max-width: 100%;
  }

  .success__icon {
    width: 40px;
    margin: 0 auto 20px;
  }

  .success__content h1 {
    font-size: 27px;
    line-height: 34px;
    text-align: center;
    margin-bottom: 20px;
  }

  .success__content p {
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    margin-bottom: 20px;
  }

  .btn {
    width: 100%;
    padding: 18px;
    font-size: 14px;
    text-align: center;
  }
}

.main-page {
  overflow-x: clip;
}
