@import url("https://cdn.jsdelivr.net/npm/intl-tel-input@28.0.4/dist/css/intlTelInput.css");
@import url("https://use.typekit.net/now8bfk.css");
@import url("https://use.typekit.net/qha2vfy.css");
@font-face {
  font-family: "BalanceAesthetic";
  src: url("../fonts/BalanceAesthetic.woff2") format("woff2"), url("../fonts/BalanceAesthetic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --green: #5AA0A0;
  --sand: #E1E1DC;
  --gray: #6C6361;
  --sides: 50px;
  --serif: 'BalanceAesthetic', Georgia, serif;
  --sans: 'bebas-neue-pro', 'sans-serif';
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 30px;
  line-height: 30px;
  color: var(--gray);
  overflow-x: hidden;
  font-weight: 300;
}

img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.titles {
  font-family: var(--serif);
  font-size: clamp(2vw, 70px, 3rem);
  line-height: 1;
  font-weight: 100;
}

.medium {
  font-size: 20px;
  line-height: 20px;
  font-weight: 300;
}

.white {
  color: white;
}

.black {
  color: black;
}

.sand {
  color: var(--sand);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.cookie_consent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  padding: 20px;
  width: 90%;
  max-width: 900px;
  background-color: var(--green);
  z-index: 100;
}
.cookie_consent button {
  display: flex;
  padding: 10px 20px;
  background: var(--sand);
  border: 0;
  font-family: var(--sans);
  font-size: 18px;
  color: var(--gray);
  cursor: pointer;
}

.persistente {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 100%;
  right: 5%;
  bottom: 5%;
  background-color: var(--green);
  z-index: 10;
}

.overlay_form {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  z-index: 5;
}

.iti__search-input, .iti__country {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--gray);
}

.iti__country-name {
  font-size: 18px;
  font-weight: 300;
}

.box_language {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  padding: 10px 5px;
  border-radius: 5px 0 0 5px;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.box_language button {
  border: 0;
  opacity: 0.45;
  transition: opacity 0.2s ease;
  filter: grayscale(1);
  cursor: pointer;
}
.box_language button.active, .box_language button:hover {
  opacity: 1;
  filter: grayscale(0);
}

.hero .top_hero {
  display: grid;
  grid-template-columns: 16% 65% 29%;
  grid-template-areas: "logo . photo";
  padding: 0 var(--sides);
}
.hero .top_hero .logo_topo {
  padding: 30px 0;
  grid-area: logo;
}
.hero .top_hero .img_topo {
  grid-area: photo;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero_banner {
  position: relative;
  display: grid;
  grid-template-columns: 10% 40% 50%;
  grid-template-areas: ". text form";
  align-items: center;
  height: 620px;
  background: url(../images/living.avif) no-repeat center/cover;
}
.hero .hero_banner h1 {
  max-width: 435px;
  grid-area: text;
}
.hero .hero_banner .cromo_conceito {
  position: absolute;
  bottom: 0;
  left: 55%;
  transform: translateX(-50%);
  height: auto;
}
.hero .hero_banner .form_header {
  grid-area: form;
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 10px;
  width: 350px;
  margin: 0 var(--sides) 0 auto;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(45px);
  z-index: 10;
}
.hero .hero_banner .form_header .input_default {
  display: flex;
  width: 100%;
  height: 40px;
  padding: 10px;
  background: white;
  border: 0;
  font-family: var(--sans);
  font-size: 20px;
  line-height: 20px;
  font-weight: 300;
  color: black;
}
.hero .hero_banner .form_header .input_default::-moz-placeholder {
  font-family: var(--sans);
  font-size: 20px;
  line-height: 20px;
  font-weight: 300;
  color: black;
}
.hero .hero_banner .form_header .input_default::placeholder {
  font-family: var(--sans);
  font-size: 20px;
  line-height: 20px;
  font-weight: 300;
  color: black;
}
.hero .hero_banner .form_header .textarea_default {
  display: flex;
  width: 100%;
  height: 130px;
  padding: 10px;
  background: white;
  border: 0;
  resize: none;
  font-family: var(--sans);
  font-size: 20px;
  line-height: 20px;
  font-weight: 300;
  color: black;
}
.hero .hero_banner .form_header .btn_default {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding: 10px;
  background: var(--green);
  border: 0;
  font-family: var(--sans);
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.6s ease;
}
.hero .hero_banner .form_header .btn_default:hover {
  background-color: var(--gray);
}

.intro_conceito {
  display: grid;
  grid-template-columns: 10% 40% 50%;
  grid-template-areas: ". text photo";
  align-items: center;
}
.intro_conceito .content_conceito {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 460px;
  grid-area: text;
  padding: 50px 0;
}
.intro_conceito img {
  grid-area: photo;
  width: 100%;
}

.produto {
  display: grid;
  grid-template-columns: 50% 35% 15%;
  grid-template-areas: "photo text thumbnail";
  align-items: end;
}
.produto .content_produto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
  gap: 40px;
  height: 100%;
  grid-area: text;
  background: var(--green);
}
.produto .content_produto h4, .produto .content_produto p {
  max-width: 450px;
}
.produto .content_produto .tipologia {
  font: normal 400 80px/60px "benton-modern-d-light", sans-serif;
  color: white;
}
.produto .img_panoramica {
  grid-area: photo;
  width: 100%;
}
.produto .thumb_algarve {
  grid-area: thumbnail;
}

.galeria {
  display: flex;
  flex-direction: column;
  padding: 100px var(--sides);
  text-align: center;
}
.galeria p {
  max-width: 970px;
  margin: 30px auto;
}
.galeria .carousel_section {
  position: relative;
}
.galeria .carousel_section .slides li a {
  cursor: zoom-in;
  z-index: 1;
  display: block;
}
.galeria .carousel_section .slides li a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 700px;
}
.galeria .carousel_section .flex-nav-prev {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 5;
}
.galeria .carousel_section .flex-next {
  display: flex;
  justify-content: flex-end;
}
.galeria .carousel_section .flex-nav-next {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 5;
}

.jardim {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "photo text";
  align-items: center;
  padding-bottom: 180px;
}
.jardim .content_jardim {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 530px;
  padding: 50px var(--sides) 50px 0;
  margin-left: 100px;
  grid-area: text;
}
.jardim .vaso_oliveira {
  width: 353px;
  position: absolute;
  bottom: -140px;
  left: 100%;
  transform: translateX(-270px);
}
.jardim img {
  width: 100%;
  grid-area: photo;
}

.localizacao {
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-areas: "thumbnail_ria text" "thumbnail_golf thumbnail_marina";
  gap: 50px;
  padding-right: var(--sides);
  align-items: center;
}
.localizacao .thumb_ria_localizacao {
  width: 100%;
  height: 100%;
  grid-area: thumbnail_ria;
}
.localizacao .content_localizacao {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 850px;
  grid-area: text;
  padding: 20px 0;
}
.localizacao .thumb_golf_localizacao {
  width: 100%;
  max-width: 380px;
  max-height: 300px;
  justify-self: end;
  grid-area: thumbnail_golf;
}
.localizacao .thumb_marina_localizacao {
  width: 100%;
  max-height: 300px;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  grid-area: thumbnail_marina;
}
.localizacao .content_morada {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 380px;
  justify-self: end;
}
.localizacao .content_morada .list_distancias {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.localizacao .content_morada .list_distancias li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.localizacao .content_morada .list_distancias li .ico_localizacao {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--sand);
  padding: var(--sides);
  margin-top: 50px;
  text-align: center;
}

@media (max-width: 1024px) {
  :root {
    --sides: 30px;
  }
  .hero .top_hero {
    padding: 30px 0 0;
    grid-template-columns: 1fr;
    grid-template-areas: "logo" "photo";
  }
  .hero .top_hero .logo_topo {
    margin: auto;
  }
  .hero .top_hero .img_topo {
    width: 100%;
    height: auto;
  }
  .hero .hero_banner {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-areas: "text" "form";
  }
  .hero .hero_banner h1 {
    text-align: center;
    padding: 0 var(--sides);
    margin: 30px auto 0;
  }
  .hero .hero_banner .cromo_conceito {
    width: 310px;
    position: static;
    left: inherit;
    transform: inherit;
  }
  .hero .hero_banner .form_header {
    display: none;
    width: calc(100% - 60px);
    margin: 0;
    padding: var(--sides);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 65px rgba(0, 0, 0, 0.3);
  }
  .hero .hero_banner .form_header .input_default, .hero .hero_banner .form_header .textarea_default {
    border: 1px solid #ccc;
  }
  .intro_conceito {
    grid-template-columns: 1fr;
    grid-template-areas: "photo" "text";
    padding: var(--sides);
    gap: 30px;
  }
  .intro_conceito .content_conceito {
    padding: 0;
    text-align: center;
  }
  .produto {
    grid-template-columns: 1fr;
    grid-template-areas: "photo" "text" "thumbnail";
  }
  .produto .content_produto {
    padding: var(--sides);
  }
  .produto .content_produto .tipologia {
    font-size: 4rem;
  }
  .produto .content_produto h4, .produto .content_produto p {
    max-width: 100%;
    text-align: center;
  }
  .produto .thumb_algarve {
    width: 100%;
  }
  .galeria {
    padding: var(--sides);
  }
  .galeria .carousel_section .slides li a img {
    height: 300px;
  }
  .galeria .carousel_section .flex-nav-prev {
    left: 50px;
  }
  .galeria .carousel_section .flex-nav-prev img {
    width: 30px;
  }
  .galeria .carousel_section .flex-nav-next {
    right: 50px;
  }
  .galeria .carousel_section .flex-nav-next img {
    width: 30px;
  }
  .jardim {
    padding-bottom: 0;
    grid-template-columns: 1fr;
    grid-template-areas: "photo" "text";
  }
  .jardim .content_jardim {
    max-width: 100%;
    padding: var(--sides);
    margin: 0;
    text-align: center;
  }
  .jardim .vaso_oliveira {
    width: 200px;
    left: 0;
    bottom: -30px;
    transform: inherit;
  }
  .localizacao {
    padding: 0;
    gap: 30px;
    grid-template-columns: 1fr;
    grid-template-areas: "thumbnail_ria" "text" "thumbnail_golf" "thumbnail_marina";
  }
  .localizacao .content_localizacao {
    padding: 0 var(--sides);
    text-align: center;
  }
  .localizacao .thumb_golf_localizacao {
    max-width: 100%;
    justify-self: inherit;
  }
  .localizacao .content_morada {
    max-width: 100%;
    justify-self: inherit;
    text-align: center;
    gap: 10px;
    padding: 0 var(--sides);
  }
  .localizacao .content_morada .list_distancias {
    margin-top: 20px;
  }
  .localizacao iframe {
    width: 100%;
    height: 300px;
  }
}/*# sourceMappingURL=style.css.map */