/* Last modified: 2025-01-17 17:23:41 */

@keyframes fadeInUp {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }

  to {
    opacity: 1;
    transform: translateY(10px);
  }
}


* {
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  appearance: none;
  padding: 0;
  outline: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
  -webkit-appearance: none;
}

body,
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll,
html.no-scroll {
  overflow: hidden;
}

    .logo {
      position: relative;
      width:100%;
      display:block;
      background-color:#fff;
      text-align:center;
      margin-bottom:7%;
    }

    .logo img{
       width:290px;
    }


.static-section {
  font-family: "Gotham", Sans-serif;
  flex-direction: column;
  color: #575757;
  display: flex;
  padding-bottom:60px;
}

.static-container {
  flex-direction: column;
  align-items: center;
  padding: 0;
  display: flex;
}

.static-container.noBottom {
  padding-bottom: 0;
}

.static-title {
  padding-bottom: 8%;
  text-align: center;
}

.static-title.custom {
  padding-bottom: 4%;
}

.static-title h2.static-h2,
.static-title h3.static-h3 {
  text-transform: uppercase;
  opacity: 0;
  margin: 0;
}

.static-title h2.static-h2 {
  font-family: "gotham-medium";
  padding-bottom: 30px;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 700;
  font-size: 16px;
}

.static-image p,
.static-title h3.static-h3 {
  font-family: "Seven-Goudy Old Style";
  font-weight: 400;
}

.static-title h3.static-h3 {
  line-height: 45px;
  font-size: 30px;
  color: #575757;
}

.static-title p {
  font-family: "Poppins-Regular";
  padding: 30px 0 0;
  letter-spacing: 0;
  line-height: 22px;
  font-weight: 100;
  font-size: 14px;
  opacity: 0;
}

.animate .static-title h2.static-h2 {
  animation: fadeInUp 1.25s forwards;
  animation-delay: 0.25s;
}

.animate .static-title h3.static-h3,
.animate .static-title p {
  animation: fadeInUp 1.25s forwards;
  animation-delay: 0.5s;
}

.animate .static-title p {
  animation-delay: 0.75s;
}

.animate .static-content .static-content-text,
.animate .static-content .static-ul {
  animation: fadeInUp 1.25s forwards;
  animation-delay: 1s;
}

.static-video {
  position: relative;
  aspect-ratio: 1.7777;
  max-width: 1450px;
  padding: 0 2%;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.static-iframe iframe,
.static-video video {
  background-color: #000;
  object-fit: cover;
  display: flex;
  border: 0;
  height: 100%;
  width: 100%;
}

.hide{display:none !important;}

/* ///////////////////////////////// CUSTOMIZADO ///////////////////////////////////////////// */


.modal-form {
    padding: 20px;
    width: 45%;
    min-width:400px;
    height: fit-content;
    background-color: #ffff;
    border-radius: 12px;
    position: fixed;
    top: 80px;
    margin-left: 27.5%;
    display: none;
    z-index: 999 !important;
    box-shadow: -1px 12px 24px 9px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: -1px 12px 24px 9px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -1px 12px 24px 9px rgba(0,0,0,0.75);
}

.modal-form .hs-fieldtype-text{ height:90px;}

.modal-form label{
  font-size: 14px;
  font-family: "gotham-light";
  font-weight:600;
}
    
.modal-form input[type="text"] {width: 100%; height:38px; padding:10px; 
  border:1px solid #cdcdcd; border-radius:6px; margin-bottom:14px; font-size:14px; margin-top:4px;}

.modal-form input[type="email"] {width: 100%; height:38px; padding:10px;
 border:1px solid #cdcdcd; border-radius:6px; margin-bottom:14px; font-size:14px; margin-top:4px;}

.modal-form input[type="tel"] {width: 74%; height:38px; padding:10px;
 border:1px solid #cdcdcd; border-radius:6px; margin-left:2%;  font-size:14px; margin-top:4px;}

.modal-form select{width: 23%; height:38px; padding:4px; 
  border:1px solid #cdcdcd; border-radius:6px;  font-size:14px; margin-top:4px; float:left;}

.modal-form input[type="submit"] {
  padding: 12px 24px;
  background-color: #4a90e2;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-top:20px;

}

.modal-form button[type="submit"] {
  padding: 12px 24px;
  background-color: #4a90e2;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-top:30px;
  font-weight:600;
  width:99%;
  text-transform:uppercase;
}

.modal-form input[type="submit"]:hover {
  background-color: #357ABD;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-form input[type="submit"]:active {
  background-color: #2c5ea8;
}


.mask{
  width:100%;
  height:1300px;
  position:fixed;
  z-index:98;
  background-color: rgba(000, 000, 000, 0.7);
  display:none;
  top:0px;
}

.modal-form,
.mask {
  opacity: 0;
  display: none;
  transition: opacity 1s ease;
}

.form-modal ul li label {color:red;}

.close-modal{cursor: pointer; font-size:18px; font-weight:bold;   font-family: "gotham-medium";
 top:8px; right:10px; position:absolute; display:block;}

.tit-modal-contact{width:100%; font-size:22px; margin-bottom:12px; text-align:center;  font-family: "gotham-medium"; color:#470a68;}

/* ////////////////////////////// MODAL MOBILE ///////////////////*/
@media  (min-width: 300px) and ( max-width:640px){
  
      .modal-form {
        padding: 20px;
        width: 96%;
        min-width:auto;
        height: 400px;
        background-color: #ffff;
        border-radius: 12px;
        position: fixed;
        bottom: 50px;
        right: 2%;
        display: none;
        z-index: 999 !important;
        box-shadow: -1px 12px 24px 9px rgba(0, 0, 0, 0.75);
        -webkit-box-shadow: -1px 12px 24px 9px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: -1px 12px 24px 9px rgba(0,0,0,0.75);
      }
  
  .modal-form input[type="text"] {
    width: 100%; height:38px; padding:10px; 
    border:1px solid #cdcdcd; border-radius:6px;  
    font-size:16px; margin-top:4px;
    }
  
  .modal-form input[type="email"] {width: 100%; height:38px; padding:10px;
 border:1px solid #cdcdcd; border-radius:6px; margin-bottom:14px; font-size:16px; margin-top:4px;}

.modal-form input[type="tel"] {width: 74%; height:38px; padding:10px;
 border:1px solid #cdcdcd; border-radius:6px; margin-left:2%;  font-size:16px; margin-top:4px;}

.modal-form select{width: 23%; height:38px; padding:4px; 
  border:1px solid #cdcdcd; border-radius:6px;  font-size:16px; margin-top:4px; float:left;}

  
  .modal-form button[type="submit"] {
  padding: 12px 24px;
  background-color: #4a90e2;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-top:30px;
  font-weight:600;
  width:99%;
  text-transform:uppercase;
}

  
  .modal-form .hs-fieldtype-text{ height:82px;}
}

/* /////////////////////////////// FIM CUSTOMIZADO ////////////////////////////////////////////// */

/* Visível com opacidade total */
.visible {
  display: block;
  opacity: 1;
}

/* Classe usada para desaparecer suavemente */
.fade-out {
  opacity: 0;
}

.static-content {
  flex-direction: column;
  align-items: center;
  display: flex;
  width: 100%;
  flex: 1;
}

.static-p {
  font-family: "gotham-light";
  text-align: center;
  padding: 0 0 6%;
  line-height: 30px;
  font-weight: 300;
  font-size: 16px;
  color: #575757;
  margin: 0;
}
.static-p b {
 font-weight:600;
}


.static-ul {
  list-style: none;
  display: flex;
  padding: 0;
  opacity: 0;
  margin: 0;
}

.static-ul li {
  padding: 0 30px 8%;
  text-align: center;
  margin: 0;
}

.static-ul li strong {
  line-height: 32px;
  font-weight: 600;
  font-size: 16px;
  font-family: "gotham-medium";
}

.static-content-text,
.static-image {
  flex-direction: column;
  align-items: center;
  display: flex;
  padding: 0 2%;
}

.static-image {
  position: relative;
  z-index: 10;
  max-width: 1140px;
  width:100%;
}

.static-image img,
.static-ol li figure img {
  display: block;
  height: 100%;
  width: 100%;
}

.static-image p {
  padding: 1.5% 0 0;
  font-size: 14px;
  color: #000;
}

.static-content-text {
  max-width: 943px;
  width: 100%;
  opacity: 0;
}

.static-h4,
.static-h5 {
  font-family: "gotham-book";
  text-align: center;
  padding: 5% 0 0;
  line-height: 24px;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
  color: #000;
}

.static-content-button {
  justify-content: space-around;
  align-items: center;
  max-width: 805px;
  display: flex;
  width: 100%;
}

.static-button {
  font-family: "Poppins-Regular";
  border-radius: 0 0 0 0;
  border-width: 1px;
  text-transform: uppercase;
  border-color: #7a7a7a;
  border-style: solid;
  transition: all 0.3s;
  text-align: center;
  padding: 10px 24px;
  font-weight: 500;
  font-size: 12px;
  color: #545454;
  fill: #545454;
}

.static-button.invert {
  background-color: #242424bf;
  color: #fff;
  font-size: 15px;
  border: 0;
}

.static-button.invert:hover {
  background-color: #fff;
  color: #545454;
}

.static-button:focus,
.static-button:hover {
  background-color: #545454;
  color: #fff;
}

.static-button.big {
    font-family: "Poppins-Regular";
    padding: 21px 60px;
    background-color: #8ccf6f;
    text-transform: uppercase;
    transition-duration: 1s;
    border-color: #8ccf6f;
    letter-spacing: 2px;
    margin: 3% 0 9%;
    font-weight: 400;
    font-size: 17px;
    color: #fff;
    fill: #fff;
}

.static-button.big:focus,
.static-button.big:hover {
  background-color: silver;
  border-color: #545454;
  color: #545454;
}

.static-ol {
  justify-content: space-between;
  padding: 0 2% 5%;
  max-width: 1800px;
  list-style: none;
  flex-wrap: wrap;
  display: flex;
  width: 100%;
  margin: 0;
  flex: 1;
}

.static-ol.custom {
  padding-bottom: 0;
  max-width: 1140px;
}

.static-ol.custom li {
  padding: 5% 0 0;
  max-width: 311px;
}

.static-ol.all li {
  display: block !important;
}

.static-ol.all + .static-content-button {
  display: none;
}

.static-ol li {
  padding: 5% 0 0;
  display: none;
  width: 31%;
  margin: 0;
}

.static-ol li:nth-child(-n + 3) {
  padding-top: 0;
}

.static-ol li:nth-child(-n + 9) {
  display: block;
}

.static-ol li figure {
  margin: 0 0 12%;
  display: block;
  width: 100%;
}

.static-box-text {
  text-align: center;
}

.static-box-text h3 {
  font-family: "Seven-Goudy Old Style";
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 26px;
  color: #575757;
}

.static-box-text p {
  font-family: "gotham-light";
  font-weight: 400;
  line-height: 24px;
  font-size: 16px;
  color: #575757;
}





@media only screen and (max-width: 767px) {
  .seniors a.static-button.big {
    padding: 15px 30px;
  }

  .seniors a.static-button.big span {
    font-weight: 500;
    font-size: 4vw;
  }

  .static-image p {
    padding: 1% 0 0;
    font-size: 12px;
  }

  .static-p {
    line-height: 22px;
    font-size: 14px;
  }

  .static-ul {
    flex-wrap: wrap;
    margin-bottom: 5%;
  }

  .static-ul li {
    width: 100%;
    padding: 0 10px;
    text-align: center;
    margin: 0;
  }

  .static-ul li strong {
    font-weight: 700;
  }

  .static-h4,
  .static-h5,
  .static-ul li strong {
    line-height: 22px;
    font-size: 14px;
  }

  .static-h4 br,
  .static-h5 br {
    display: none;
  }

  .static-title {
    padding: 0 10vw 10%;
  }

  .static-title.custom {
    padding-bottom: 4%;
  }

  .static-title h2.static-h2 {
    padding-bottom: 10px;
    line-height: 20px;
    font-size: 10px;
  }

  .static-title h3.static-h3 {
    line-height: 6vw;
    font-size: 5vw;
  }

  .static-title p {
    font-size: 12px;
    padding: 15px 0 0;
    letter-spacing: 0;
  }

  .static-content-button {
    flex-direction: column;
  }

  .static-button.big {
    padding: 8px 0;
    margin: 13% 0 16%;
    font-size: 14px;
    width: 84%;
  }

  .static-ol {
    padding-top: 5%;
  }

  .static-ol.custom li {
    width: 100%;
    max-width: 100%;
    padding: 0 0 15%;
  }

  .static-ol.custom li:nth-child(3) {
    padding: 0 0 15%;
  }

  .static-ol.custom li figure {
    margin-bottom: 5%;
  }

  .static-ol li {
    width: 30%;
  }

  .static-ol li:nth-child(3) {
    padding: 0;
  }

  .static-image.noPadding,
  .static-video {
    padding: 0;
  }

  .static-video video {
    background-color: #000;
    object-fit: cover;
    display: flex;
    border: 0;
    height: 100%;
    width: 100%;
  }

  .static-image.fix {
    padding-top: 4%;
  }

  .static-content-text {
    max-width: initial;
    padding: 0 6vw;
  }

  .static-box-text h3 {
    margin-bottom: 10px;
    font-size: 17px;
  }

  .static-box-text p {
    line-height: 22px;
    font-size: 14px;
  }

  .static-box-text.custom h3 {
    margin: 3% 0;
  }

  .static-box-text.custom h3 a {
    font-size: 15px;
  }

  .static-box-text.custom p {
    line-height: 10px;
    font-size: 8px;
  }

  .static-box-text.custom > a {
    justify-content: center;
    padding: 10px 0;
    display: flex;
  }
}








.static-section.o-metodo .static-title {
  position: relative;
  padding-bottom: 0;
  z-index: 20;
}


@media only screen and (max-width: 767px) {
  .static-section.o-metodo {
    padding-top: 0px;
  }

  .static-section.o-metodo .static-container {
    padding-top: 0;
  }


}



.modal-form {
    padding: 20px;
    width: 45%;
    height: fit-content;
    background-color: #ffff;
    border-radius: 12px;
    position: fixed;
    top: 80px;
    margin-left: 27.5%;
    display: none;
    z-index: 999 !important;
    box-shadow: -1px 12px 24px 9px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: -1px 12px 24px 9px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -1px 12px 24px 9px rgba(0,0,0,0.75);
}

.modal-form .hs-fieldtype-text{ height:90px;}

.modal-form label{
  font-size: 18px;
  font-family: "gotham-light";
}
    
.modal-form input[type="text"] {width: 100%; height:38px; padding:10px; 
  border:1px solid #cdcdcd; border-radius:6px;  font-size:18px; margin-top:4px;}

.modal-form input[type="email"] {width: 100%; height:38px; padding:10px;
 border:1px solid #cdcdcd; border-radius:6px;  font-size:18px; margin-top:4px;}


.modal-form input[type="submit"] {
  padding: 12px 24px;
  background-color: #4a90e2;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-top:20px;
}

.modal-form input[type="submit"]:hover {
  background-color: #357ABD;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-form input[type="submit"]:active {
  background-color: #2c5ea8;
}

.mask{
  width:100%;
  height:1300px;
  position:fixed;
  z-index:98;
  background-color: rgba(000, 000, 000, 0.7);
  display:none;
  top:0px;
}

.modal-form,
.mask {
  opacity: 0;
  display: none;
  transition: opacity 1s ease;
}

.form-modal ul li label {color:red;}

.close-modal{cursor: pointer; font-size:18px; font-weight:bold;   font-family: "gotham-medium";
 top:8px; right:10px; position:absolute; display:block;}

.tit-modal-contact{width:100%; font-size:24px; margin-bottom:12px; text-align:center;  font-family: "gotham-medium"; color:#470a68;}

/* ////////////////////////////// MODAL MOBILE ///////////////////*/
@media  (min-width: 300px) and ( max-width:640px){
  
      .modal-form {
        padding: 20px;
        width: 96%;
        height: fit-content;
        background-color: #ffff;
        border-radius: 12px;
        position: fixed;
        bottom: 50px;
        right: 2%;
        display: none;
        z-index: 999 !important;
        box-shadow: -1px 12px 24px 9px rgba(0, 0, 0, 0.75);
        -webkit-box-shadow: -1px 12px 24px 9px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: -1px 12px 24px 9px rgba(0,0,0,0.75);
      }
  
  .modal-form input[type="text"] {
    width: 100%; height:32px; padding:10px; 
    border:1px solid #cdcdcd; border-radius:6px;  
    font-size:18px; margin-top:4px;
    }
  
  .modal-form input[type="email"] {
    width: 100%; height:32px; padding:10px;
 border:1px solid #cdcdcd; border-radius:6px; 
    font-size:18px; margin-top:4px;
  }

  
  .modal-form input[type="submit"] {
      padding: 12px 24px;
      background-color: #4a90e2;
      color: white;
      font-size: 16px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
      margin-top:22px;
      width:100%;
    }
  
  .modal-form .hs-fieldtype-text{ height:82px;}
}


/* /////////////////////////////// FIM CUSTOMIZADO ////////////////////////////////////////////// */

/* Visível com opacidade total */
.visible {
  display: block;
  opacity: 1;
}

/* Classe usada para desaparecer suavemente */
.fade-out {
  opacity: 0;
}
