@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --white: #fff;
  --black: #000;
  --grey: #FAFAFF;
  --darkblue: #284280;
  --blue: #3772FF;
  --lightblue: #78C0E0;
  --extralightblue: #CBDBFF;
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Poppins", serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}
a:hover {
  color: #000000;
}
/* header */
.header {
  background: url('/img/prelp/header-shape.svg'), url('/img/prelp/header.png');
  background-position: center right, center top;
  background-repeat: no-repeat;
  background-size: 45%, cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.header-txt {
  padding: 80px 0 230px 70px;
}
.header-txt img {
  margin-bottom: 60px;
}
.header-txt h1 {
  color: var(--black);
  font-size: 35px;
  font-weight: 700;
  max-width: 80%;
}
.header-txt h5 {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  margin: 30px 0;
  max-width: 85%;
}
.header-txt h5 span {
  font-weight: 700;
}
.selo {
  background: url('/img/prelp/price-back.svg');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 365px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  left: 20px;
  bottom: 50px;
  z-index: 10;
}
.price {
  margin-right: -15px;
}
.price p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}
.price h6 {
  color: var(--blue);
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}
.price h6 span {
  font-size: 20px;
  font-weight: 400;
}
#price-over {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 450px;
  z-index: 22;
  margin: 0;
}
#blue-over {
  position: absolute;
  right: 0;
  top: 0;
  height: 200px;
  z-index: 5;
  margin: 0;
}
#contactform {
  background: var(--white);
  width: 500px;
  height: 350px;
  margin: 0 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 40px;
  text-align: center;
  padding: 40px;
}
#contactform h3 {
  color: var(--blue);
  font-size: 26px;
  font-weight: 600;
  margin: 0 auto;
}
/*#contactform input {
  width: 100%;
  height: 45px;
  border-radius: 30px;
  border: 2px solid #3772FF;
  padding: 0 0 0 30px;
  margin: 40px auto 0 auto;
  color: var(--black);
  font-size: 16px;
}*/
#contactform .row {
  width: 100%;
}
.form-input {
  margin-top: 30px;
}
.form-input .dropdown-toggle {
  background: #fff;
  width: 100%;
  height: 45px;
  border-radius: 50px;
  border: 2px solid var(--blue);
  color: rgba(0, 0, 0, 0.3);
  text-align: left;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown-toggle::after {
  display: none;
}
.form-input .dropdown-toggle:hover, .form-input .dropdown-toggle:active {
  background: var(--blue) !important;
  color: #fff !important;
}
.form-input .dropdown-toggle:hover img {
  filter: brightness(0) invert(1);
}
.form-input .dropdown-toggle:focus-visible, .form-input .dropdown-toggle:focus {
  box-shadow: none;
  background: #fff;
  color: #000;
}
.form-input .dropdown-menu {
  width: 100%;
  overflow-y: auto;
  max-height: 200px;
  cursor: pointer;
  border-radius: 10px;
  padding: 0;
  
}
.form-option {
  padding: 10px 20px;
}
.form-option:hover {
  background: var(--blue);
  color: #fff;
}
.form-button {
  width: 160px;
  height: 50px;
  background: var(--lightblue);
  border-radius: 50px;
  font-size: 18px;
  color: var(--white);
  font-weight: 600;
  transition: all 0.5s ease;
  margin: 40px auto 0 auto;
}
.form-button:hover {
  transform: scale(1.1);
  background: var(--blue);
  color: var(--white);
}

.form-input .input-group {
  display: flex;
  width: 100%;
}

#dropdownLocalidadeInput {
  flex: 1;
  height: 45px;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 50px;
  padding: 0 20px;
  font-size: 16px;
  outline: none;
  background-image: none;
  background-image: url('/img/icons/chevronDown.svg');
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
  cursor: pointer;
}

#dropdownLocalidadeInput:focus-visible {
  box-shadow: none;
}

#toggleLocalidade {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  background: var(--white);
  border: 2px solid var(--blue);
  border-left: none;
  border-radius: 0 50px 50px 0;
  padding: 0 20px;
}
#toggleLocalidade:hover {
  background: var(--blue);
}
#toggleLocalidade:focus-visible {
  box-shadow: none;
}

#toggleLocalidade:hover img {
  filter: brightness(0) invert(1);
}


.error {
  color: red;
  margin: 10px auto -20px auto;
  font-size: 11px;
  width: 100%;
}
/* section 1 */
.section1 {
  padding: 100px 0;
  text-align: center;
}
.title {
  margin-bottom: 50px;
}
.title h3 {
  font-size: 35px;
  font-weight: 700;
  color: var(--blue);
}
.sec1-img svg {
  max-width: 100%;
} 
.st3, .st4, .st5, .st8, .st2 {
  transition: fill 0.4s ease;
}
#recheio-casa:hover .st3,
#recheio:hover .st3,
#casa:hover .st3,
.active .st3 {
  fill: var(--blue);
}
#recheio-casa:hover .st4,
#recheio:hover .st4,
#casa:hover .st4,
#recheio-casa:hover .st8,
#recheio:hover .st8,
#casa:hover .st8,
#casa:hover .st6,
#casa:hover .st7,
#recheio:hover .st6,
#recheio:hover .st7,
.active .st4,
.active .st6,
.active .st7,
.active .st8 {
  fill: var(--white);
}
#recheio-casa:hover .st5,
#recheio:hover .st5,
#casa:hover .st5,
.active .st5 {
  fill: var(--lightblue);
}
#recheio-casa:hover .st2,
#recheio:hover .st2,
#casa:hover .st2,
.active .st2 {
  fill: var(--white);
}
.custom-dots {
  text-align: center;
  margin-top: 20px;
}
.custom-dots .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.custom-dots .slick-dots li {
  margin: 0 5px;
}
.custom-dots .slick-dots li button {
  background-color: var(--extralightblue); 
  border: none;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  display: block;
  padding: 0;
  cursor: pointer;
  font-size: 0;
  transition: all 0.5s ease;
}
.custom-dots .slick-dots li.slick-active button {
  background-color: var(--blue);
  width: 18px;
  border-radius: 8px;
}
/* section2 */
.section2 {
  background: url('/img/prelp/metis-back.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
}
.sec2-value h2 {
  font-size: 120px;
  font-weight: 700;
}
.sec2-value h2 span {
  font-size: 100px;
} 
.sec2-txt {
  padding-left: 60px;
}
.sec2-txt h5 {
  font-size: 35px;
  font-weight: 700;
  max-width: 90%;
}
.sec2-txt p {
  font-size: 25px;
  font-weight: 400;
  margin: 0;
}
/* section 3 */
.section3 {
  padding: 100px 0;
  text-align: center;
}
.vants {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
}
.vants hr {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 6px;
  border: none;
  background: var(--extralightblue);
  opacity: 1;
}
.vant-icon {
  text-align: center;
  cursor: pointer;
  z-index: 33;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 100% !important;
}
.vant-icon:hover .vant-txt p {
  opacity: 1;
}
.vant-txt {
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
#vant1 {
  background: url('/img/prelp/1.svg');
}
#vant2 {
  background: url('/img/prelp/2.svg');
}
#vant3 {
  background: url('/img/prelp/3.svg');
}
#vant4 {
  background: url('/img/prelp/4.svg');
}
.vant-txt p {
  color: var(--white);
  opacity: 0;
  background: var(--blue);
  font-size: 20px;
  font-weight: 400;
  margin: 0 auto;
  line-height: 1.1;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 25px;
  transition: all 0.4s ease;
}
/* section 4 */
.section4 {
  padding: 20px 0 80px 0;
  text-align: center;
}
.accordion {
  border-top: 2px solid var(--extralightblue);
  border-bottom: 2px solid var(--extralightblue);
}
.accordion-item {
  border: none;
  border-bottom: 2px solid var(--extralightblue);
}
.accordion-button:not(.collapsed) {
  background: transparent;
  font-weight: 700;
  color: var(--blue);
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
}
.accordion-button::after {
  background-image: url('/img/prelp/down.svg');
  background-size: 18px;
  background-position: center;
}
.accordion-button:not(.collapsed)::after {
  background-image: url('/img/prelp/down.svg');
  background-size: 18px;
  background-position: center;
}
.accordion-body p {
  text-align: left;
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
}
.accordion-body p span {
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
}
/* footer */
.footer {
  background: url('/img/prelp/footer.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-txt h3 {
  color: var(--white);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 30px 0;
}
.footer-txt button {
  width: 290px;
  height: 60px;
  color: var(--blue);
  background: var(--white);
  border: none;
  font-size: 24px;
  font-weight: 700;
  border-radius: 100px;
  transition: all 0.5s ease;
}
.footer-txt button:hover {
  background: var(--lightblue);
  color: var(--white);
  transform: scale(1.1);
}
/* Adstrategy */
#section-ads {
  padding: 30px 0;
  text-align: center;
}
/* Media Queries */
@media only screen and (min-width: 1800px) {
  .header-txt {
    margin-left: -15%;
  }
  .footer {
    min-height: 350px;
  }
}
@media only screen and (max-width: 1440px) {
  .header {
    background-size: 750px, cover;
    background-position: center right, right top;
  }
  .footer-txt {
    margin-left: 60px;
  }
}
@media only screen and (max-width: 1330px) {
  .header {
    background-size: 750px, cover;
    background-position: center right, center top;
  }
  .header-txt h5 {
    max-width: 70%;
  }
  .sec2-txt h5 {
    max-width: 100%;
    font-size: 32px;
  }
}
@media only screen and (max-width: 1200px) {
  .header-txt {
    padding: 80px 0 230px 10px;
  }
  .header-txt h1 {
    max-width: 65%;
  }
  .sec2-txt h5 {
    font-size: 26px;
  }
  .sec2-value h2 {
    font-size: 100px;
  }
  .sec2-value h2 span {
    font-size: 80px;
  }
  .vant-txt, .vant-txt p {
    width: 160px;
    height: 160px;
  }
  .vant-txt p {
    font-size: 15px;
    padding: 15px;
  }
}
@media only screen and (max-width: 1080px) {
  #price-over {
    height: 320px;
  }
  #contactform {
    width: 100%;
    padding: 30px;
  }
  .header {
    background-position: 150% center, center top;
  }
  .selo {
    left: -20px;
  }
}
@media only screen and (max-width: 991px) {
  .header {
    background-size: 800px, cover;
    background-position: 399px center, 40% top;
  }
  .vant-txt, .vant-txt p {
    width: 120px;
    height: 120px;
  }
  .vant-txt p {
    font-size: 13px;
    padding: 10px;
  }
  .title h3 {
    font-size: 30px;
  }
  .section2 {
    background-position: center left;
  }
  .sec2-txt h5 {
    font-size: 25px;
  }
  .sec2-txt p {
    font-size: 18px;
    line-height: 1.2;
  }
  .footer-txt {
    margin: 0;
  }
  .footer-txt h3 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .header {
    background: var(--grey);
    text-align: center;
    padding: 20px 0 0;
  }
  .header-txt {
    padding: 0;
  }
  .header-txt h1 {
    max-width: 90%;
    margin: 0 auto;
  }
  .header-txt h5 {
    max-width: 100%;
    margin: 20px auto;
  }
  .header-txt img{
      margin-bottom: 30px;
  }
  #family {
    width: 80%;
    margin: 40px auto 0;
  }
  .selo {
    position: unset;
    box-shadow: 0px 0px 20px var(--extralightblue);
    width: 260px;
    margin: 20px auto 30px auto;
    background: var(--white);
    height: auto;
    left: 0;
    padding: 20px 10px;
    border-radius: 20px 0 20px 0;
  }
  #contactform {
    position: relative;
    z-index: 99;
  }
  .section2 {
    text-align: center;
    min-height: auto;
    padding: 50px 0;
  }
  .sec2-txt {
    padding-left: 0;
  }
  .section3 .title h3 {
    max-width: 80%;
    margin: 0 auto;
  }
  .vants {
    flex-wrap: wrap;
  }
  .vant-txt, .vant-txt p {
    width: 180px;
    height: 180px;
    margin: 15px auto;
  }
  .vant-txt p {
    font-size: 15px;
    padding: 15px;
  }
  .vants hr {
    display: none;
  }
  .footer {
    background: url('/img/prelp/footer-m.svg'), var(--darkblue);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: auto;
    padding: 60px 0;
    text-align: center;
  }
  .footer-txt h3 {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
  
  #nav .img-fluid{
      margin-bottom: 0px !important;
  }
}
@media only screen and (max-width: 550px) {
  .header-txt h5 {
    max-width: 80%;
  }
  .sec2-txt{
      padding: 0;
      text-wrap: balance;
  }
  .sec2-value h2{
      font-size: 65px;
  }
  .sec2-value h2 span{
      font-size: 50px;
  }
  .header-txt img{
      margin-bottom: 20px;
  }
  #contactform{
      box-shadow: 0px 0px 20px 0px var(--extralightblue);
      margin-bottom: 50px;
  }
.header-txt h1 {
    max-width: 95%;
    text-wrap: balance;
    font-size: 30px;
  }
}
@media only screen and (max-width: 475px) {
  .header-txt h5 {
    max-width: 90%;
  }
  #contactform h3{
    font-size: 24px;
  }
  .accordion-button::after {
    padding-left: 30px;
  }
  .header-txt h1{
      font-size: 24px;
      max-width: 400px;
  }
  .header-txt h5{
      text-wrap: balance;
      font-size: 16px;
  }
  #contactform{
      height: 300px;
  }
  .price h6{
      font-size: 30px;
  }
  .selo{
      margin: 10px auto 10px auto;
  }
}
@media only screen and (max-width: 460px) {
  #contactform h3 {
    font-size: 22px;
  }
  #contactform {
    padding: 30px 20px;
  }
}
@media only screen and (max-width: 414px) {
  #contactform h3 {
    font-size: 20px;
  }
  .header-txt h5 {
    max-width: 75%;
  }
  .sec2-value h2 {
    font-size: 80px;
  }
  .sec2-value h2 span {
    font-size: 60px;
  }
  .section3 .title h3 {
    max-width: 100%;
  }
  .vant-txt, .vant-txt p {
    width: 200px;
    height: 200px;
  }
  .vant-txt p {
    font-size: 18px;
    padding: 25px;
  }
  .accordion-button::after {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 375px) {
  .title h3 {
    font-size: 25px;
  }
  .sec2-txt h5 {
    font-size: 20px;
  }
  .sec2-txt p {
    font-size: 16px;
  }
  .footer-txt h3 {
    max-width: 100%;
  }
  .footer-txt button {
    width: 90%;
  }
}
@media only screen and (max-width: 345px) {

  .accordion-button {
    font-size: 16px;
  }
  .header-txt h5 {
    max-width: 95%;
    font-size: 18px;
  }
}