@charset "UTF-8";
/*-----------------------------------------------------------------------------*/
/* Author: Adalto Mendes da Rocha Junior                                       */
/*-----------------------------------------------------------------------------*/
/* CopyRight - WWW.QUBEDESIGN.COM.BR                                           */
/*-----------------------------------------------------------------------------*/
/******************************************************************************
 * MEDIA QUERIES
******************************************************************************/
/******************************************************************************
 * PLACEHOLDER
******************************************************************************/
* {
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  /* a cada 1rem será considerado 10px */
  font-size: 62.5%;
}

@media only screen and (max-width: 767.98px) {
  html {
    font-size: 56.25%;
  }
}

body {
  font-size: 1.6rem;
  font-family: 'Lato', sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

html, body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a,
a:focus,
a:hover {
  text-decoration: none;
  outline: 0;
  color: inherit;
}

section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.header, .footer, .page-content {
  overflow-x: hidden;
}

.page-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/*******************************************************************************
* Bootstrap adjustment
*******************************************************************************/
@media only screen and (min-width: 1200px) {
  .row {
    --bs-gutter-x: 30px;
  }
}

/*******************************************************************************
* Colors
*******************************************************************************/
:root {
  --app-blue: #040D31;
  --app-blue-dark: #00051A;
  --app-gold: #CCA03A;
  --app-gold-dark: #996906;
}

.header {
  color: #fff;
  background: #01062D;
}

.header-nav__container {
  -webkit-column-gap: 5rem;
          column-gap: 5rem;
  row-gap: 2rem;
}

.header-nav-brand {
  margin: 0;
}

.header-nav-brand__img {
  width: 100%;
  max-width: 185px;
}

.header-nav-toggler {
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 1rem;
}

.header-nav-toggler__img {
  width: 100%;
  max-width: 2.5rem;
}

.header-nav__link-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-nav__link {
  color: #F2F2F2;
  font-size: 1.5rem;
  font-weight: 500;
  white-space: nowrap;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.header-nav__link:hover {
  color: var(--app-gold);
}

@media only screen and (max-width: 991.98px) {
  .header-nav__link {
    text-align: center;
  }
  .header-nav__link + .header-nav__link {
    margin-bottom: 0.5rem;
  }
}

.header-nav__link.active, .header-nav__link--highlight {
  color: var(--app-gold);
}

.footer {
  color: #fff;
  font-weight: 500;
  background: var(--app-blue-dark);
  padding: 4.5rem 0;
}

.footer__content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}

@media only screen and (max-width: 1199.98px) {
  .footer__content-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__copyright-container {
  font-size: 1.2rem;
}

@media only screen and (max-width: 575.98px) {
  .footer__copyright-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0.3rem;
    text-align: center;
  }
}

.footer-nav {
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 0.5rem;
  -webkit-column-gap: 1rem;
          column-gap: 1rem;
}

@media only screen and (max-width: 575.98px) {
  .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer-nav__link {
  padding: 0.5rem;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.footer-nav__link:hover, .footer-nav__link.active {
  color: var(--app-gold);
}

.footer-nav__link.active::before {
  content: url("../img/icon-arrow-right.svg");
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 1rem;
}

@media only screen and (max-width: 575.98px) {
  .footer-nav__link.active::before {
    display: none;
  }
}

@media only screen and (max-width: 575.98px) {
  .footer-nav__link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/*******************************************************************************
* Contact Section
*******************************************************************************/
.contact-section {
  background: var(--app-blue);
  padding: 0;
}

/*******************************************************************************
* Contact Section Address
*******************************************************************************/
.contact-section__address {
  color: #FFF;
  font-size: 1.8rem;
  margin: 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--app-gold);
}

.contact-section__address-title {
  color: var(--app-gold);
  font-weight: 700;
}

.contact-section__map {
  display: block;
  margin-top: 2rem;
}

/*******************************************************************************
* Home Header
*******************************************************************************/
/*.home-header__hero-img {
  @include mq("md") {
    width: 100%;
    margin-top: 6rem;
  }
}*/
.home-header {
  padding: 0 0 12rem 0;
}

@media only screen and (max-width: 991.98px) {
  .home-header {
    padding-bottom: 0;
  }
}

.home-header__carousel-item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 630px;
  padding: 6rem 0;
  position: relative;
}

@media only screen and (max-width: 991.98px) {
  .home-header__carousel-item {
    min-height: 375px;
    padding-bottom: 0;
  }
}

.home-header__page-title {
  color: var(--app-gold);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 991.98px) {
  .home-header__page-title {
    margin-bottom: 0;
  }
}

.home-header__title {
  color: var(--app-blue);
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 5rem;
}

@media only screen and (max-width: 991.98px) {
  .home-header__title {
    font-size: 2.5rem;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 575.98px) {
  .home-header__title {
    font-size: 2rem;
  }
}

.home-header__action-title {
  color: var(--app-blue);
  font-size: 2rem;
  font-weight: 400;
}

.home-header__carousel-button {
  color: #fff !important;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--app-blue);
  border-radius: 1.5rem;
  padding: 1.5rem 1rem;
  width: 100%;
  max-width: 18rem;
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.home-header__carousel-button:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

@media only screen and (max-width: 991.98px) {
  .home-header__carousel-text-wrapper {
    width: 100%;
    padding: 2rem;
    background: rgba(4, 13, 49, 0.8);
    position: absolute;
    bottom: 0;
  }
  .home-header__carousel-text-wrapper .home-header__title, .home-header__carousel-text-wrapper .home-header__action-title {
    color: #fff;
  }
}

/*******************************************************************************
* Home Services
*******************************************************************************/
@media only screen and (max-width: 991.98px) {
  .home-services {
    background: var(--app-blue);
  }
}

.home-services__container {
  position: relative;
}

.home-services__container::before {
  position: absolute;
  content: url("../img/home-services-shape.png");
  right: 100px;
  top: -200px;
  z-index: -1;
}

@media only screen and (max-width: 991.98px) {
  .home-services__container::before {
    display: none;
  }
}

.home-services__title {
  color: #fff;
  font-size: 6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
}

@media only screen and (max-width: 991.98px) {
  .home-services__title {
    font-size: 4rem;
  }
}

/*******************************************************************************
* Home Service Card
*******************************************************************************/
.home-service-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3rem;
  background: #fff;
  border-radius: 3rem;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 4rem 2rem;
  height: 525px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.home-service-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

@media only screen and (max-width: 991.98px) {
  .home-service-card {
    height: 100% !important;
  }
}

@media only screen and (min-width: 991.98px) {
  .home-service-card--highlight {
    height: 575px;
    padding-top: 6rem;
  }
  .home-service-card--highlight img {
    margin-bottom: 4rem;
  }
}

.home-service-card__img {
  width: 12rem;
  height: 12rem;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.home-service-card__container {
  width: 100%;
}

@media only screen and (min-width: 1199.98px) {
  .home-service-card__container {
    max-width: 26.5rem;
  }
}

.home-service-card__title {
  color: var(--app-blue);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.home-service-card__text {
  color: var(--app-blue);
  font-size: 2rem;
  font-weight: 400;
}

.home-service-card__button {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--app-blue);
  border-radius: 2rem;
  padding: 1.5rem 1rem;
  width: 100%;
  max-width: 18rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*******************************************************************************
* Home Companies
*******************************************************************************/
.home-companies {
  padding: 6rem 0 10rem 0;
}

.home-companies__title {
  color: var(--app-blue);
  font-size: 3rem;
  font-weight: 700;
}

/*******************************************************************************
* Home Companies Swiper
*******************************************************************************/
.home-companies-swiper {
  margin-top: 5rem;
}

.home-companies__swiper-img {
  width: 100%;
  height: 100px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.home-companies-swiper-button-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-companies-swiper-button-container::before, .home-companies-swiper-button-container::after {
  content: '';
  display: block;
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  height: 3px;
  background-color: #000;
}

.home-companies-swiper-button-container::after {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.home-companies-swiper-button-wrapper {
  padding: 0 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4.5rem;
          column-gap: 4.5rem;
}

.quem-somos {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: url("../img/quem-somos-bg.png") no-repeat left top;
  min-height: 800px;
  padding-top: 1.5rem;
}

.quem-somos__title {
  color: var(--app-gold);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3.5rem;
}

.quem-somos__description-title {
  color: var(--app-blue);
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 5rem;
}

.quem-somos__description-text {
  color: var(--app-blue);
  font-size: 1.8rem;
  line-height: 3rem;
  margin: 0;
}

.quem-somos__description-text + .quem-somos__subtitle {
  margin-top: 4rem;
}

.quem-somos__subtitle {
  color: var(--app-gold-dark);
  font-weight: 700;
  font-size: 1.8rem;
}

/*******************************************************************************
* Quem Somos Address
*******************************************************************************/
.quem-somos__address {
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 0;
}

.service {
  padding: 2rem 0;
  padding-bottom: 8rem;
}

.service__container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3rem;
}

.service__page-title {
  color: var(--app-gold);
  font-size: 3rem;
  margin-top: 2rem;
  font-weight: 700;
}

.service__search-title {
  color: var(--app-blue);
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 4.5rem;
}

@media only screen and (max-width: 991.98px) {
  .service__search-title {
    font-size: 3rem;
  }
}

.service__listing-call {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

/*******************************************************************************
* Service Search
*******************************************************************************/
.service-search {
  cursor: text;
  border: 1px solid #828282;
  max-width: 400px;
  padding: 1rem 0.5rem 1rem 2rem;
  border-radius: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
          column-gap: 1rem;
}

.service-search__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  font-size: 1.8rem;
}

.service-search__icon {
  width: 5rem;
}

/*******************************************************************************
* Service Search Result Section
*******************************************************************************/
.service__search-result-section {
  padding: 0;
  margin-top: 5rem;
}

/*******************************************************************************
* Service Card
*******************************************************************************/
.service-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #000;
  border: 1px solid #BDBDBD;
  border-radius: 2rem;
  padding: 4rem 2rem 2rem 2rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 1.5rem;
}

.service-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-card__logo {
  width: 100%;
  height: 8rem;
  max-width: 15rem;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  margin-bottom: 3rem;
}

.service-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-card__subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
}

.service-card__text {
  font-size: 1.8rem;
  font-weight: 400;
}

.service-card__text--whatsapp {
  position: relative;
}

.service-card__text--whatsapp:before {
  content: url("../img/service-card-whatsapp-icon.svg");
  display: block;
  position: absolute;
  width: 2rem;
  height: 2rem;
  left: -2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.service-card__floor {
  display: inline-block;
  color: #fff;
  border-radius: 0.3rem;
  padding: 0 0.5rem;
  background: var(--app-blue);
}

.service-card__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-card__social-media-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
          column-gap: 1rem;
}

/*******************************************************************************
* Contact Section
*******************************************************************************/
.alugue-um-espaco {
  background: var(--app-blue);
  padding-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.alugue-um-espaco__title {
  color: var(--app-gold);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 5rem;
}

/*******************************************************************************
* Contact Section Form
*******************************************************************************/
.alugue-um-espaco-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}

@media only screen and (max-width: 1199.98px) {
  .alugue-um-espaco-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.alugue-um-espaco-form__group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3rem;
}

.alugue-um-espaco-form__input {
  background: none;
  border: none;
  border-bottom: 1px solid #828282;
  padding-bottom: 1.5rem;
  color: #fff;
  font-size: 2rem;
}

.alugue-um-espaco-form__input.placeholder {
  color: #E0E0E0;
}

.alugue-um-espaco-form__input:-moz-placeholder {
  color: #E0E0E0;
}

.alugue-um-espaco-form__input::-moz-placeholder {
  color: #E0E0E0;
}

.alugue-um-espaco-form__input:-ms-input-placeholder {
  color: #E0E0E0;
}

.alugue-um-espaco-form__input::-webkit-input-placeholder {
  color: #E0E0E0;
}

.alugue-um-espaco-form__submit {
  background: none;
  border: 1px solid #fff;
  border-radius: 2rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.alugue-um-espaco-form__submit:hover {
  background: var(--app-gold);
  border-color: var(--app-gold);
  color: var(--app-blue);
}

/*******************************************************************************
* Contact Section Phone
*******************************************************************************/
.alugue-um-espaco__phone {
  color: #FFF;
  font-size: 1.8rem;
  white-space: nowrap;
}

/*******************************************************************************
* Contact Section Call
*******************************************************************************/
.alugue-um-espaco__call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.alugue-um-espaco__call::before {
  content: '';
  display: block;
  width: 100%;
  height: calc(100% + 3rem);
  background: url("../img/contact-section-shape.png") no-repeat top right;
  position: absolute;
  right: 0;
  top: -3rem;
}

@media only screen and (max-width: 1199.98px) {
  .alugue-um-espaco__call::before {
    display: none;
  }
}

@media only screen and (max-width: 1199.98px) {
  .alugue-um-espaco__call {
    background: var(--app-gold);
    border-radius: 2rem;
    padding: 3rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 3rem;
  }
}

.alugue-um-espaco__call-text {
  color: var(--app-blue);
  font-size: 2.3rem;
  line-height: 4rem;
  text-align: center;
  margin-top: 5rem;
  margin-right: 4rem;
  z-index: 1;
}

@media only screen and (max-width: 1199.98px) {
  .alugue-um-espaco__call-text {
    margin: 0;
  }
}
