:root {
  --color-primary: #e96a5b;
  --color-secondary: #004755;
  --color-blue-dark: #123945;
  --color-default: #535353;
  --color-grey: #d0d0d0;
  --color-white: #ffffff;
  --color-pink: #fdf0ee;
  --termina: "termina", sans-serif;
  --roboto: "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--roboto);
  background-color: var(--color-pink);
}

.container {
  width: 1160px;
  margin: 0 auto;
  display: block;
}

.container.container-flex {
  display: flex;
}

.main {
  float: left;
  width: 100%;
  overflow: hidden;
}

.header {
  float: left;
  width: 100%;
  padding: 32px 0;
  background-color: var(--color-pink);
  position: fixed;
  z-index: 100;
  transition: all ease-in-out 0.2s;
}

.header .button {
  margin-left: 50px;
}

.header .container {
  display: flex;
  align-items: center;
}

.header__logo {
  float: left;
  display: flex;
  align-items: center;
}

.header .button {
  display: none;
}

.header__logo__image {
  float: left;
  transition: all ease-in-out 0.2s;
}

.header__logo__separator {
  height: 38px;
  width: 1px;
  background-color: var(--color-default);
  float: left;
  margin: 0 30px 0 30px;
  opacity: 40%;
}

.header__nav {
  float: right;
  display: flex;
  flex-direction: row;
  gap: 50px;
  margin-left: auto;
}

.header__nav__item {
  text-transform: uppercase;
}

.header__nav__link {
  color: var(--color-secondary);
  font-family: var(--termina);
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
  transition: all ease-in-out 0.2s;
}

.header__nav__link.current, .header__nav__link:hover {
  color: var(--color-primary);
}

.header.fixed {
  padding: 26px 0;
}

.header.fixed .header__logo__image {
  width: 64px;
}


.header.fixed .button {
  display: block;
}

.hero {
  float: left;
  width: 100%;
  margin-top: 150px;
  padding-top: 40px;
}

.hero .container {
  /* position: relative; */
}

.hero__content {
  float: left;
  width: 474px;
  margin-top: 72px;
}

.hero__title {
  font-size: 40px;
  line-height: 50px;
  font-family: var(--termina);
  color: var(--color-secondary);
  margin-bottom: 16px;
}

.hero__content p {
  font-size: 16px;
  line-height: 28px;
  color: var(--color-default);
  width: 376px;
  margin-bottom: 126px;
}

.hero__list {
  float: left;
  width: 100%;
}

.hero__list__item {
  float: left;
  display: flex;
  flex-direction: column;
  width: 25%;
  /* margin-right: 58px; */
}

.hero__list__item:last-child {
  margin-right: 0;
}

.hero__list__item span {
  font-size: 16px;
  line-height: 20px;
  font-family: var(--termina);
  color: var(--color-secondary);
  margin-top: 14px;
}

.hero__list__icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__picture {
  float: right;
  width: 640px;
}

.hero__image {
  float: left;
}

.hero__image.mobile {
  display: none;
}


.hero__form {
  width: 314px;
  height: 414px;
  background-color: #FFF;
  position: absolute;
  right: 0;
  top: 312px;
  padding: 35px 32px;
  box-shadow: 0 6px 20px rgba(20, 62, 75, 0.2);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.hero__form__title {
  font-family: var(--termina);
  font-size: 16px;
  line-height: 26px;
  color: var(--color-secondary);
  margin-bottom: 4px;
  display: inline-block;
  width: 100%;
}

.hero__form__description {
  font-size: 14px;
  line-height: 22px;
  color: var(--color-default);
  margin-bottom: 16px;
}

.hero__form .button {
  width: 100%;
  max-width: inherit;
}

.form-group {
  float: left;
  width: 100%;
  margin-bottom: 8px;
  position: relative;
}

.form-group label {
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 14px;
  font-family: var(--roboto);
  color: var(--color-default);
  transition: all ease-in-out 0.2s;
}

.form-group label.active {
  font-size: 10px;
  transform: translate3d(0, -8px, 0);
  color: var(--color-secondary);
}

.form-control {
  width: 100%;
  height: 48px;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey);
  border-radius: 3px;
  padding: 22px 16px 10px 16px;
  font-family: var(--roboto);
  font-size: 14px;
  line-height: 22px;
}

textarea.form-control {
  height: 112px;
}

.form-checkbox {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 12px;
  padding-left: 26px;
}

.form-checkbox input {
  display: none;
}

.form-checkbox label {
  font-size: 14px;
  color: var(--color-default);
}

.form-checkbox-white label {
  color: #FFF;
}

.form-checkbox label:before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey);
  position: absolute;
  left: 0;
  top: 2px;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center 4px;
}

.form-checkbox input:checked + label:before {
  background-image: url(../icons/check.svg);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.form-small {
  display: inline-block;
  width: 100%;
  font-size: 12px;
  font-style: italic;
  color: var(--white);
  margin-top: 8px;
}



/*  */
#infraestrutura {
  float: left;
  width: 100%;
  padding-top: 50px;
  margin-top: -50px;
}
.lazer {
  width: 100%;
  float: left;
}

.lazer__content {
  float: left;
  width: 279px;
}

.lazer__title {
  font-family: var(--termina);
  font-size: 30px;
  line-height: 40px;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.button {
  font-family: var(--termina);
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  height: 48px;
  padding: 0 18px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  align-self: flex-start;
  border-radius: 4px;
  max-width: 222px;
}

.button.button-secondary {
  background-color: var(--color-secondary);
}

.lazer__picture {
  float: right;
  width: 767px;
}

.lazer__picture__image {
  width: 100%;
}

.lazer__picture__image.mobile {
  display: none;
}

.lazer__items {
  float: left;
  width: 100%;
  display: flex;
  margin-top: 116px;
}

.lazer__items__title {
  font-family: var(--termina);
  font-size: 24px;
  line-height: 34px;
  width: 376px;
  margin-right: 16px;
}

.lazer__list {
  float: left;
  width: 768px;
}

.lazer__list__item {
  width: 376px;
}

.lazer__items li {
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 14px;
  float: left;
  width: 50%;
  color: var(--color-default);
  background-image: url(../icons/li.svg);
  background-repeat: no-repeat;
  background-position: center left;
  padding-left: 28px;
}

.lazer__gallery {
  display: flex !important;
  flex-direction: row;
  gap: 16px;
  float: left;
  margin-top: 64px;
}

.lazer__gallery__item {
  position: relative;
}

.lazer__gallery__zoom {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background-color: #fff;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lazer__gallery__zoom__icon {
  max-width: 100%;
}

.tower {
  width: 100%;
  float: left;
  padding-top: 100px;
  padding-bottom: 116px;
}

.tower_text_heading {
  text-align: center;
  width: 572px;
  margin: 0 auto;
}

.tower_text_heading h1 {
  font-family: var(--termina);
  color: var(--color-secondary);
  font-size: 30px;
  line-height: 40px;
  width: 100%;
}

.tower_list {
  float: left;
  width: 100%;
  margin-top: 60px;
}

.tower_list_item {
  float: left;
  margin-bottom: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.tower_list_item:first-child:before {
  position: absolute;
  left: -265px;
  top: 70px;
  content: '';
  width: 451px;
  height: 363px;
  background: url(../icons/pattern-first.svg) center no-repeat;
  background-size: cover;
}

.tower_list_item:last-child:before {
  position: absolute;
  left: -340px;
  top: 170px;
  content: '';
  width: 451px;
  height: 363px;
  background: url(../icons/pattern-third.svg) center no-repeat;
  background-size: cover;
}

.tower_list_item:last-child:after {
  position: absolute;
  right: -60px;
  bottom: 160px;
  content: '';
  width: 250px;
  height: 638px;
  background: url(../icons/pattern-second.svg) center no-repeat;
  background-size: cover;
}

.tower_list_image {
  float: left;
  width: 670px;
  z-index: 10;
}

.tower_list_image img {
  width: 100%;
}

.tower_list_content {
  float: left;
  width: 278px;
  margin-left: 114px;
}

.tower_list_title {
  font-size: 24px;
  line-height: 34px;
  font-family: var(--termina);
  color: var(--color-secondary);
  margin-bottom: 5px;
}

.tower_list_description {
  font-family: var(--termina);
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: var(--color-primary);
}

.tower_list_item:nth-child(2n + 2) .tower_list_content {
  order: 1;
}

.tower_list_item:nth-child(2n + 2) .tower_list_image {
  order: 2;
}

.gradient-background {
  float: left;
  width: 100%;
  background: rgb(245,225,222);
  background: linear-gradient(0deg, rgba(245,225,222,1) 0%, rgba(253,240,238,1) 100%);
  padding-bottom: 80px;
}

.history {
  margin-top: 208px;
  float: left;
  width: 100%;
  margin-bottom: 96px;
}

.history__container {
  gap: 16px;
}

.history__grid {
  flex: 1;
}

.history__items {
  float: left;
  width: 100%;
  position: relative;
  width: 572px;
  height: 627px;
  z-index: 3;
}

.history__item {
  width: 180px;
  height: 170px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 0 3px 6px rgba(233, 106, 91, 0.16);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.history__item__image {
  width: 60px !important;
  margin-bottom: 23px;
}

.history__item__title {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
  text-transform: uppercase;
  width: 130px;
}

.history__item:nth-child(2) {
  top: 186px;
}

.history__item:nth-child(3) {
  top: 372px;
}

.history__item:nth-child(4),
.history__item:nth-child(5),
.history__item:nth-child(6) {
  left: 196px;
}

.history__item:nth-child(4) {
  top: 90px;
}

.history__item:nth-child(5) {
  top: 276px;
}

.history__item:nth-child(6) {
  top: 462px;
}

.history__item:nth-child(7),
.history__item:nth-child(8) {
  left: 392px;
}

.history__item:nth-child(7) {
  top: 174px;
}

.history__item:nth-child(8) {
  top: 360px;
}

.history__content {
  float: left;
  width: 376px;
  position: relative;
}

.history__content:after {
  content: '';
  width: 250px;
  height: 638px;
  position: absolute;
  right: -270px;
  top: 0;
  background-image: url(../icons/history-pattern.svg);
}

.history__content h1 {
  font-size: 30px;
  line-height: 40px;
  color: var(--color-secondary);
  margin-bottom: 60px;
  font-family: var(--termina);
}

.history__content p {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-default);
  margin-bottom: 24px;
  font-family: var(--roboto);
}

.history__content__image {
  margin-top: 82px;
  width: 670px;
  position: relative;
  z-index: 2;
}

.gallery {
  float: left;
  width: 100%;
  position: relative;
}

.gallery__title {
  font-size: 30px;
  line-height: 40px;
  font-family: var(--termina);
  color: var(--color-secondary);
  margin-bottom: 40px;
}

.gallery__items {
  width: 2320px;
  float: left;
  position: relative;
  margin-left: -580px;
}

.gallery__owl {
  float: left;
  width: 100%;
}

.gallery .owl-nav {
  width: 1160px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -580px;
  z-index: 5;
}

.gallery .owl-nav button {
  width: 38px;
  height: 38px;
  position: absolute;
  left: -10px;
  top: 166px;
  background: url(../icons/arrow-left.svg) center center no-repeat #fff !important;
  z-index: 2;
  border-radius: 50%;
}

.gallery .owl-nav button span {
  display: none;
}

.gallery .owl-nav button.owl-next {
  left: initial;
  right: -10px;
  background-image: url(../icons/arrow-right.svg) !important;
}

.main-footer {
  float: left;
  width: 100%;
  overflow: hidden;
}

.footer-info {
  float: left;
  width: 100%;
}

.footer-info .container {
  align-items: flex-end;
}

.footer-info__left {
  height: 352px;
  width: 376px;
  position: relative;
  z-index: 2;
  padding-right: 44px;
  display: flex;
  align-items: center;
}

.footer-info__left:before {
  content: "";
  background-color: var(--color-primary);
  width: 3000%;
  height: 100%;
  right: 0;
  position: absolute;
  border-top-right-radius: 50px;
  z-index: -1;
}

.footer-info__right {
  height: 414px;
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.footer-info__right:before {
  height: 100%;
  position: absolute;
  content: "";
  background-color: var(--color-blue-dark);
  width: 3000%;
  left: -224px;
  border-top-left-radius: 50px;
  z-index: -1;
}

.footer-info__address {
  float: left;
  width: 100%;
}

.footer-info__address__top-text {
  float: left;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: var(--color-white);
  margin-bottom: 5px;
  text-transform: uppercase;
  font-family: var(--termina);
}

.footer-info__address__street {
  float: left;
  width: 100%;
  font-size: 24px;
  line-height: 34px;
  color: var(--color-white);
  margin-bottom: 21px;
  font-family: var(--termina);
}

.footer-info__content {
  width: 572px;
  margin-left: 114px;
}

.footer-info__title {
  float: left;
  width: 100%;
  font-size: 24px;
  line-height: 34px;
  color: var(--color-white);
  font-family: var(--termina);
}

.footer-info__list {
  float: left;
  width: 100%;
  margin-top: 38px;
}

.footer-info__list__item {
  float: left;
  width: 50%;
  margin-bottom: 25px;
}

.footer-info__list__icon {
  width: 38px;
  height: 38px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
}

.footer-info__list__content {
  float: left;
  width: 224px;
  font-size: 16px;
  line-height: 26px;
  font-family: var(--roboto);
  color: var(--color-white);
  margin-left: 15px;
}

.footer-info__list__top-text {
  float: left;
  width: 100%;
}

.footer-info__list__title {
  float: left;
  width: 100%;
}

.footer_map {
  width: 100%;
  float: left;
  position: relative;
  z-index: 5;
}

.footer_map img {
  width: 100%;
}

.footer_map img.map-mobile {
  display: none;
}

.footer {
  position: relative;
  z-index: 5;
  width: 100%;
  float: left;
  padding: 64px 0;
  background-color: var(--color-secondary);
}

.footer_logo {
  float: left;
  width: 130px;
  margin-right: 82px;
}

.footer_logo_img {
  width: 100%;
}

.footer__list__contact {
  float: left;
  width: 262px;
  margin-right: 32px;
  display: flex;
}

.footer__list__contact_icon {
  width: 38px;
  height: 38px;
  float: left;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__list__contact__item {
  float: left;
  margin-left: 15px;
  flex: 1;
}

.footer__list__contact__number {
  float: left;
  width: 100%;
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 1px;
  text-transform: uppercase;
  font-family: var(--termina);
}

.footer__list__contact__call {
  float: left;
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  color: white;
}

.footer__list__anddress {
  float: left;
  width: 359px;
  display: flex;
}

.footer_description {
  float: left;
  width: 100%;
  padding: 32px;
  background-color: var(--color-blue-dark);
  position: relative;
  z-index: 5;
}

.footer_description .container {
  display: flex;
  align-items: center;
}

.footer_description_identification {
  float: left;
  width: 180px;
  color: white;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
}

.footer_description_text {
  float: left;
  margin-left: 15px;
  font-size: 10px;
  line-height: 16px;
  text-transform: uppercase;
  color: white;
  opacity: 60%;
  flex: 1;
  margin-right: 80px;
}

.footer_description_img {
  float: right;
}



@media only screen and (max-width: 1199px) {
  .container {
    width: 310px;
  }

  .header {
    border-bottom: 1px solid rgba(233, 106, 91, 0.21);
    padding: 10px 0 !important;
  }


  .header.fixed {
    padding: 10px 0 !important;
  }

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

  .header__logo__image {
    width: 54px !important;
    display: block !important;
  }

  .header__logo__separator {
    display: block !important;
  }

  .header__logo__image-lma {
    width: 79px !important;
  }

  .header__nav, .header .button {
    display: none !important;
  }

  .hero {
    margin-top: 94px;
    padding-top: 0;
  }

  .hero .container {
    display: flex;
    flex-direction: column;
  }

  .hero__picture {
    order: 1;
  }

  .hero__image {
    display: none;
  }

  .hero__image.mobile {
    display: block;
  }

  .hero__content {
    width: 100%;
    order: 2;
    margin-top: 20px;
  }

  .hero__title {
    font-size: 28px;
    line-height: 38px;
  }

  .hero__content p {
    width: 100%;
    margin-bottom: 0;
  }

  .hero__form {
    position: relative;
    top: inherit;
    right: inherit;
    order: 3;
    padding: 24px;
  }

  .hero__list {
    margin-top: 40px;
  }

  .hero__list__item {
    width: 50%;
    margin-bottom: 36px;
  }

  .lazer {
    margin-top: 40px;
  }

  .lazer .container {
    width: 100%;
    padding: 0;
  }

  .lazer__content .button {
    display: none;
  }

  .lazer__content {
    width: 310px;
    margin: 0 auto;
    display: block;
    float: none;
  }

  .lazer__title {
    font-size: 22px;
    line-height: 32px;
  }

  .lazer__picture {
    width: 100%;
  }

  .lazer__picture__image {
    display: none;
  }

  .lazer__picture__image.mobile {
    display: block;
  }

  .lazer__items {
    float: none;
    width: 310px;
    margin: 0 auto;
    flex-direction: column;
  }

  .lazer__items__title {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 54px;
  }

  .lazer__list {
    width: 100%;
  }

  .lazer__items li {
    width: 100%;
  }

  .lazer__gallery {
    width: 310px;
    margin: 0 auto;
    margin-top: 40px;
    float: none;
    display: block !important;
  }

  .lazer__gallery__item img {
    border-radius: 4px;
  }

  .owl-dots {
    float: left;
    width: 100%;
  }

  .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    float: left;
    background: var(--color-primary) !important;
    border-radius: 50%;
    margin-right: 12px;
    opacity: 0.4;
    margin-top: 16px;
  }

  .owl-dots .owl-dot.active {
    opacity: 1;
  }

  .gradient-background {
    padding-bottom: 40px;
  }

  .history {
    margin: 40px 0;
  }

  .history .container {
    display: block;
  }

  .history__items {
    height: auto;
  }

  .history__item {
    position: relative;
    top: inherit !important;
    left: inherit !important;
    right: inherit !important;
    margin: 2px;
  }

  .history__content {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .history__content .button {
    display: none;
  }

  .history__content h1 {
    order: 1;
    margin: 0;
  }

  .history__content__image {
    order: 2;
    margin: 28px 0 24px;
    width: 390px;
  }

  .history__content:after {
    display: none;
  }

  .history__content p {
    order: 3;
  }


  .gallery__items {
    width: 100%;
    margin: 0;
  }

  .gallery__title {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 28px;
  }

  .tower {
    padding-top: 94px;
    padding-bottom: 40px;
  }

  .tower_text_heading {
    width: 100%;
  }

  .tower_text_heading h1 {
    font-size: 22px;
    line-height: 32px;
    text-align: left;
  }

  .tower_list_item {
    flex-direction: column;
    margin-bottom: 24px;
  }

  .tower_list_item:first-child:before,
  .tower_list_item:last-child:after,
  .tower_list_item:last-child:before {
    display: none;
  }

  .tower_list_image {
    width: 100%;
    order: 1 !important;
  }

  .tower_list_content {
    margin: 0;
    width: 100%;
    order: 2 !important;
  }

  .tower_list_title {
    font-size: 20px;
    line-height: 30px;
  }

  .footer-info .container {
    flex-direction: column;
  }

  .footer-info__left {
    height: auto;
    padding: 32px 0;
    width: 100%;
    float: left;
    padding-right: 32px;
  }

  .footer-info__address .button {
    display: none;
  }

  .footer-info__address__street {
    margin-bottom: 0;
  }

  .footer-info__title {
    font-size: 20px;
    line-height: 30px;
  }

  .footer-info__list__item {
    width: 100%;
    display: flex;
  }

  .footer-info__content {
    width: 100%;
    padding: 60px 25px 30px;
    margin: 0;
  }

  .footer-info__left:before {
    height: 1000%;
    top: 0;
  }

  .footer-info__right {
    position: relative;
    z-index: 5;
  }

  .footer-info__right:before {
    width: 600%;
    left: 0;
  }

  .footer {
    padding: 40px 0;
  }

  .footer_map img {
    display: none;
  }

  .footer_map img.map-mobile {
    display: block;
  }

  .footer_logo_img {
    margin-bottom: 20px;
  }

  .footer__list__contact {
    margin: 0 0 32px;
    width: 100%;
  }

  .footer__list__anddress {
    width: 100%;
  }

  .footer_description {
    padding: 24px 0;
  }

  .footer_description .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer_description_text {
    margin: 4px 0 24px;
  }
}