@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');

:root {
  --white: #fff;
  --clr-primary: #001A15;
  --clr-secondary: #098069;
  --grey: #777;
  --ff-primary: "Outfit";
  --ff-secondary: "Noto Seri";
  --divider: 100px;
}

html,
body {
  margin: 0;
  padding: 0 !important;
  font-family: var(--ff-primary), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: var(--clr-primary);
  scroll-behavior: smooth;
  text-wrap: balance;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}

body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

a:hover {
  color: #000000;
}

/* utility classes */
.custom-container {
  --max-width: 1240px;
  --padding: 2rem;
  width: min(var(--max-width), 100% - (2 * var(--padding)));
  z-index: 1;
  margin: 0 auto;
}

.title {
  font-family: var(--ff-secondary);
  font-size: 60px;
  font-weight: 700;
  line-height: 65px;
}

.description {
  font-size: 20px;
  color: var(--grey);
  line-height: 1.2;
}

.description b {
  font-weight: 600;
}

.description h6 {
  font-size: 32px;
  font-weight: 700;
}
.description h6 span {
  font-size: 18px;
  font-weight: 400;
}

.cta {
  text-transform: uppercase;
  background-color: var(--clr-primary);
  border: none;
  font-size: 22px;
  color: var(--white);
  padding: 8px 32px;
  transition: all 0.6s ease;
}


.cta:hover {
  transform: scale(1.05);
  background-color: var(--clr-secondary);
  color: var(--white);
}


/* header */
.header {
  padding-block: 100px;
  min-height: 640px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* .header::before {
  content: '';
  background: linear-gradient(264deg, rgba(0, 0, 0, 0.00) 25.09%, rgba(0, 0, 0, 0.48) 83.07%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
} */

.header .custom-container {
  position: relative;
  z-index: 1;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* form */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.forms {
  background: rgba(255, 255, 255, 0.80);
  width: 100%;
  max-width: 430px;
  min-height: 300px;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 30px;
}

.forms button {
  letter-spacing: unset;
}

.form__inner {
  width: 100%;
}

.forms h3 {
  font-size: 25px;
  line-height: 1.2;
  margin: 0 auto;
  text-transform: uppercase;
}

.forms hr {
  opacity: 1;
  border: none;
  background: none;
  height: 1px;
  margin: 10px auto 20px auto !important;
}

.forms h6 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  margin-bottom: 20px;
}

.forms h6 span {
  font-size: 14px;
  font-weight: 400;
  color: var(--clr-primary);
}


.form-input:has(.error) {
  margin-bottom: 5px;
}

.form-input:not(.error) {
  margin-bottom: 15px;
}

.form-input input {
  width: 100%;
  height: 35px;
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--clr-primary);
  text-align: left;
  padding-left: 10px;
  -webkit-appearance: none;
}

.form-inputs p {
  text-align: start;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding-left: 10px;
}

.form-inputs textarea {
  width: 100%;
  height: 48px;
  max-height: 150px;
  border: 0;
  border-bottom: 1px solid var(--clr-primary);
  background-color: transparent;
}

.form-inputs textarea:focus-visible {
  outline: none;
}

.form-input input:active,
.form-input input:focus,
.form-input input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

::-webkit-input-placeholder {
  color: var(--clr-primary);
}

:-moz-placeholder {
  color: var(--clr-primary);
  opacity: 1;
}

::-moz-placeholder {
  color: var(--clr-primary);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--clr-primary);
}

::-ms-input-placeholder {
  color: var(--clr-primary);
}

::placeholder {
  color: var(--clr-primary);
}

.form-input .dropdown-toggle {
  width: 100%;
  height: 35px;
  background: transparent;
  border-radius: 0;
  border: none;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  -webkit-appearance: none;
  border-bottom: 1px solid var(--clr-primary);
  color: var(--clr-primary);
  text-align: left;
  padding-left: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-toggle::after {
  display: none;
}

.form-input .dropdown-toggle img {
  height: 8px;
}

.form-select {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-input .dropdown-toggle:active,
.form-input .dropdown-toggle:focus-visible,
.form-input .dropdown-toggle:focus {
  box-shadow: none;
  background: transparent;
  color: var(--clr-primary);
}

.form-input .dropdown-menu {
  width: 100%;
  overflow-y: auto;
  max-height: 200px;
  cursor: pointer;
  border-radius: 0;
  border: none;
}

.form-option:hover,
.form-option.selected {
  background: var(--clr-secondary);
  color: var(--white);
}

.phone_box .iti {
  width: 100%;
}

.iti__selected-country-primary {
  padding: 0 !important;
}

.iti__selected-country {
  height: 33px !important;
}

.phone_box .iti--inline-dropdown .iti__dropdown-content {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.phone_box .iti__flag {
  box-shadow: 0 0 1px 0 #DBDBDB;
  background-color: #DBDBDB;
}

.iti .iti__selected-dial-code {
  color: var(--clr-primary);
}

.form-check {
  text-align: start;
  padding: 0;
  position: relative;
  margin-top: 20px;
}

.form-check label {
  margin: 0 0 0 0px;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--clr-primary);
  font-size: 12px;
  font-weight: 5300;
}

.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  top: -0.5px;
  left: 0;
  z-index: 99;
}

.checkmark {
  position: absolute;
  top: -0.5px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--clr-primary);
  border-radius: 2px;
  padding-right: 2px;
  color: var(--clr-primary);
}

.form-check input[type=checkbox]:checked+.checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0px;
  margin-top: -1px;
  font-size: 13px;
}

#politica-link {
  color: var(--clr-primary);
  text-decoration: underline;
}

#politica-link:hover {
  color: var(--clr-secondary);
}
#licenca {
    font-size: 10px;
    line-height: 1;
    margin: 10px 0 0 0;
    text-align: left;
}

/* buttons */
.form-cta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.form-button {
  min-width: 140px;
  height: 50px;
  padding: 0 15px;
  background: var(--clr-primary);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px !important;
  color: var(--white);
  border: none;
  border-radius: 0px;
  line-height: 1;
  margin: 0 auto;
  text-transform: uppercase;
  transition: all 0.6s ease;
}

.form-button:hover {
  transform: scale(1.05);
  background: var(--clr-secondary);
  color: var(--white);
}

label.error,
#termos-error,
#termos2-error {
  font-size: 11px;
  font-weight: 300;
  color: red;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 1;
  display: none;
  text-align: left;
}

/* Lugar ideal */
.large-container {
  --max-width: 1315px;
}

.lugar-ideal__wrapper {
  margin-block: 100px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.lugar-ideal__icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 70px;
  row-gap: 45px;
}

.lugar-ideal__wrapper-mob {
  display: none;
}

.info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.info__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 55px;
  width: 100%;
}

.info p {
  margin: 0;
  line-height: 1.1;
  text-align: start;
}

.info img {
  height: 60px;
  width: 60px;
}

.info__inner {
  display: flex;
  justify-content: space-between;
}

#lugar-ideal .description {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#lugar-ideal .description p {
  text-wrap: auto;
}

.more-text {
  display: none;
  transition: max-height .35s ease, opacity .25s ease;
}

.read-more-link {
  cursor: pointer;
  font-weight: 400;
  color: var(--clr-primary);
  text-decoration: none;
}

.read-more-link:hover {
  font-weight: 600;
}

.dots {
  display: inline;
}

/* Design Conforto Excelência */
.design {
  margin-top: var(--divider);
}

.design-video {
  min-width: 0;
  max-width: 770px;
  aspect-ratio: 16/9;
  height: auto;
  object-fit: cover;
}

.design__wrapper {
  display: flex;
  gap: 50px;
}

.design .description {
  text-wrap: auto;
}

.design .title {
  max-width: 90%;
}

.design-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

/* acessos */
.acessos {
  background:
    url('/img/acessos/bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.acessos__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 166px 70px;
  min-height: 780px;
}

.acessos-icons {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  row-gap: 50px;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}

.acesso {
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.acesso p {
  text-align: center;
  margin: 0;
  font-size: 20px;
}

.acessos-outer {
  position: relative;
}

.arrows-div {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.arrows-div3,
.arrows-div2 {
  width: 100%;
}

.arrows-div img {
  width: 35px;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.6s ease;
}

.prev {
  transform: rotate(90deg);
}

.next {
  transform: rotate(-90deg);
}

.prev:hover {
  transform: scale(1.2) rotate(90deg);
}

.next:hover {
  transform: scale(1.2) rotate(-90deg);
}

/* Gallerty section */
.gallery {
  background: rgb(245 245 245 / 50%);
  padding-block: 80px;
  margin-top: var(--divider);
  text-align: center;
}

.gallery__wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.gallery-item img {
  height: 230px;
  max-width: 100%;
  object-fit: cover;
  margin-bottom: 20px;
}

.gallery-item span {
  color: #6E6E6E;
  font-size: 12px;
  line-height: 1.1;
}

/* Slides normais */
.gallery-slider .slick-slide {
  opacity: 0.2;
  transform: scale(1);
  transition: all .3s ease;
  z-index: 1;
  position: relative;
}

.gallery-slider .slick-slide.is-center {
  opacity: 1;
  transform: scale(1.3);
  z-index: 3;
}

.slick-slide.is-center .gallery-item span {
  font-size: 20px;
}

.gallery-slider .slick-slide img {
  width: 100%;
  display: block;
}

.gallery-slider .slick-track {
  margin-block: 50px;
}

/* Dots do slider */
.custom-dots {
  text-align: center;
  margin-top: 20px;
}

.custom-dots .slick-dots,
.custom-dots-reviews .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.custom-dots .slick-dots li,
.custom-dots-reviews .slick-dots li {
  margin: 0 5px;
}

.custom-dots .slick-dots li button,
.custom-dots-reviews .slick-dots li button {
  background-color: rgba(0, 26, 21, 0.20);
  border: none;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: block;
  padding: 0;
  cursor: pointer;
  font-size: 0;
  transition: all 0.5s ease;
}

.custom-dots .slick-dots li.slick-active button,
.custom-dots-reviews .slick-dots li.slick-active button {
  background-color: var(--clr-primary);
}

.localization img {
  max-width: 100%;
  width: 100%;
}

.localization {
  position: relative;
}

.localization .title {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.mapa__wrapper {
  display: grid;
  grid-template-columns: 1fr 585px;
  padding-block: 230px;
}

.mapa {
  background-image: url('/img/localization/map.svg');
  background-repeat: no-repeat;
  background-position: left;
  background-size: 65%;
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
}

.mapa ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding-left: 0;
  margin-left: auto;
}

.mapa li {
  position: relative;
  padding-left: 28px;
  color: #777;
  font-size: 20px;
  font-weight: 600;
}

.mapa li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url('/img/localization/icons/distance.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

/* Footer */
footer {
  padding-block: 50px;
  background-color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

footer .title {
  color: var(--white);
}

footer .cta {
  color: var(--clr-primary);
  background-color: #FFFADC;
}

.footer-text {
  display: flex;
  align-items: center;
  gap: 60px;
}

#section-ads {
  padding-block: 25px;
}

/* Thanks Page */
.message-box {
  background: rgba(255, 255, 255, 0.80);
  width: 450px;
  margin-inline: auto;
  padding: 45px 35px;
  text-align: center;
}

.message-box__header {
  display: flex;
  text-align: start;
  gap: 25px;
  align-items: center;
  margin-bottom: 20px;
}

.message-box img {
  height: 75px;
}

.message-box h3 {
  font-size: 32px;
  text-wrap: balance;
  line-height: 1.1;
  font-weight: 700;
}

.message-box h6 {
  font-size: 32px;
  font-family: 'theseasons';
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
  color: var(--green);
  margin: 15px auto 20px auto;
}

.message-box p {
  line-height: 1.2;
  font-size: 18px;
  color: var(--green);
  font-weight: 400;
  margin: 0 auto;
  text-wrap: balance;
  text-align: start;
}


@media(max-width: 1300px) {
  .mapa {
    background-size: 60%;
  }
}

@media (max-width: 1260px) {
  .mapa {
    background-size: 60%;
  }
}

@media (max-width: 1100px) {
  .info__inner {
    flex-direction: column;
  }

  #lugar-ideal .description {
    max-width: 100%;
    margin-top: 40px;
  }

  .lugar-ideal__icons {
    row-gap: 45px;
    column-gap: unset;
  }

  .info__wrapper {
    gap: 45px;
  }

  .mapa {
    background-size: 60%;
  }

  .mapa__wrapper {
    grid-template-columns: 1fr 400px;
  }

  .mapa li {
    font-size: 18px;
  }

  .mapa ul {
    gap: 15px;
  }
}

@media(max-width: 991px) {
  .description h6 {
    margin-top: 20px;
  }
  .forms h3 {
    font-size: 22px;
  }

  .lugar-ideal .title br {
    display: none;
  }

  .title__wrapper {
    gap: 22px;
  }

  .title__wrapper img {
    max-height: 70px;
  }

  .lugar-ideal__wrapper {
    display: none;
  }

  .lugar-ideal__wrapper-mob {
    display: flex;
    text-wrap: balance;
    flex-direction: column;
    text-align: center;
    margin-top: var(--divider);
  }

  .lugar-ideal__wrapper-mob .title {
    text-align: start;
  }

  .lugar-ideal__icons {
    display: grid;
    grid-template-columns: repeat(2, 190px);
    justify-content: space-evenly;
  }

  #lugar-ideal .description {
    max-width: 100%;
    margin-top: 40px;
    text-align: start;
    text-wrap: auto;
    display: block;
  }

  .title__wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
  }

  .title__wrapper img {
    max-height: 130px;
  }

  .mapa__wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .mapa {
    background-size: 55%;
  }

  .footer-text {
    display: flex;
    gap: 40px;
  }

  footer {
    gap: 40px;
    flex-direction: column;
  }

  footer .title {
    font-size: 45px;
    line-height: 1.2;
  }
}

@media(max-width: 768px) {
  .localization .title {
     margin-top: 30px;
  }
  .title {
    font-family: var(--ff-secondary);
    font-size: 45px;
    font-weight: 700;
    line-height: 55px;
  }

  .description {
    font-size: 18px;
  }

  .forms {
    margin-inline: auto;
  }

  .acessos .title {
    max-width: 85%;
  }

  .acesso {
    gap: 15px;
  }

  .acesso p {
    font-size: 16px;
    margin-inline: auto;
    line-height: 1.2;
  }

  .acesso img {
    height: 60px;
  }

  .acessos__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-block: 81px 70px;
    min-height: 539px;
  }

  .design__wrapper {
    flex-direction: column;
  }

  .design-video {
    width: 100%;
    max-width: 100%;
  }

  .design .title {
    max-width: 100%;
  }

  #lugar-ideal .description {
    margin: 0;
  }

  .info__inner {
    gap: 45px
  }

  .info {
    gap: 16px
  }

  .info img {
    height: 50px;
  }

  .info p {
    font-size: 15px;
  }

  .slick-slide.is-center .gallery-item span {
    font-size: 16px;
    line-height: 1.1;
  }

  .localization .title {
    top: 0;
  }

  .localization-img {
    max-width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .mapa li {
    font-size: 16px;
    font-weight: 500;
  }

  .mapa {
    background: none;
    margin-bottom: 50px;
  }

  .mapa__wrapper-mobile {
    flex-direction: column;
  }

  .mapa ul {
    width: 100%;
    margin-top: 25px;
  }
}

@media(max-width: 600px) {
  .slick-slide.is-center .gallery-item span {
    font-size: 16px;
  }

  .gallery-slider .slick-slide {
    opacity: 1;
    transition: all .3s ease;
    z-index: 1;
    position: relative;
  }

  .gallery-slider .slick-slide.is-center {
    opacity: 1;
    transform: unset;
    z-index: 3;
  }

  .gallery-slider .slick-track {
    margin-block: 20px;
  }

  .gallery-item img {
    height: 280px;
  }

  footer img {
    height: 90px;
  }

  footer .title {
    font-size: 38px;
  }
}

@media(max-width: 480px) {
  .title {
    font-size: 35px;
    line-height: 1.2;
  }

  .title__wrapper {
    gap: 30px;
  }

  .lugar-ideal__icons {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 35px;
  }

  .info {
    flex-direction: column;
  }

  .info br {
    display: none;
  }

  .info p {
    text-align: center;
  }

  .info img {
    height: 45px;
  }

  .title__wrapper img {
    max-height: 95px;
  }

  .acessos .title {
    font-size: 40px;
    line-height: 1.1;
  }

  .custom-dots {
    margin: 0;
  }

  .gallery-slider .slick-track {
    margin-block: 15px;
  }

  .slick-slide.is-center .gallery-item span {
    font-size: 16px;
  }

  .custom-dots .slick-dots li button,
  .custom-dots-reviews .slick-dots li button {
    width: 12px;
    height: 12px;
  }

  .footer-text {
    display: flex;
    gap: 25px;
  }

  footer .title {
    font-size: 35px;
  }

  .cta {
    font-size: 18px;
  }

  .forms {
    gap: 20px;
    padding: 20px;
  }

  .forms img {
    height: 70px;
  }

  .forms h3 {
    font-size: 22px;
  }

  .form-input input,
  .form-input .dropdown-toggle {
    font-size: 15px;
  }

  .form-check {
    margin-top: 15px;
  }
}

@media (max-width: 400px) {
  footer .title {
    font-size: 32px;
    line-height: 1.1;
  }

  footer img {
    height: 70px;
  }

  footer .title {
    font-size: 28px;
  }
}