@import url('https://fonts.googleapis.com/css2?family=MuseoModerno:ital,wght@0,100..900;1,100..900&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 {
  --red: #FE646F;
  --green: #86B698;
  --white: #fff;
  --black: #000;
  --lightgrey: #F9F9F9;
  --lightblue: #5CADFF;
  --blue: #143259;
}

#pessoal {
  --lightblue: #62BEC1;
  --green: #FF7F11;
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.1;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
  background: var(--lightgrey);
}
body {
  position: relative;
}

a:hover {
  color: #000000;
}
::-moz-selection {
  color: var(--white);
  background: var(--green);
}
::selection {
  color: var(--white);
  background: var(--green);
}
/* genaral */
.CookiebotWidget-logo {
  min-width: auto;
}
.title {
  color: var(--blue);
  font-family: "MuseoModerno", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}
button {
  min-width: 180px;
  height: 45px;
  border-radius: 50px;
  padding: 0 20px;
  background: var(--lightblue);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  border: none;
  transition: all 0.4s ease;
}
button:hover {
  background: var(--green);
}
/* navbar */
.nav-bar {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.nav-bar .container {
  transition: all 0.4s ease;
  border-radius: 100px;
}
.nav-bar .container.scrolling {
  background: rgba(255, 255, 255, 0.6);
  padding: 15px 30px;
  backdrop-filter: blur(5px);
  box-shadow: rgba(31, 38, 135, 0.2) 0px 8px 32px, rgba(255, 255, 255, 0.3) 0px 4px 20px inset;
}
.nav-bar .container.scrolling img {
  height: 40px;
}
.nav-bar img {
  cursor: pointer;
}
.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 25px;
}
.nav-menu ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: var(--blue);
  position: relative;
  margin: 0;
  cursor: pointer;
  transition: color 0.4s ease;
}
.nav-menu ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease;
}
.nav-menu ul li:hover::after {
  width: 100%;
}
.nav-menu ul li:hover {
  color: var(--green);
}
.nav-menu ul li:last-of-type::after {
  display: none;
}
/* header */
.header {
  padding-top: 200px;
  min-height: 750px;
  background: url('/img/bg.svg') var(--white);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 120%;
}
#pessoal .header {
  background: url('/img/bg-orange.svg') var(--white);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 120%;
}
.header-content {
  color: var(--blue);
}
.header-txt-outer h1 {
  font-family: "MuseoModerno", sans-serif;
  font-size: 55px;
  font-weight: 700;
  line-height: 1.1;
}
.header-txt-outer h3 {
  font-size: 18px;
  font-weight: 300;
  margin: 30px 0;
  line-height: 1.2;
  width: 575px;
  max-width: 100%;
}
.header-txt-outer p {
  align-content: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 20px 0;
}
.header-txt-outer p img {
  margin: -5px 5px 0 0;
}
.header-img {
  text-align: right;
}
.header-img img {
  width: 88%;
}
/* google */
.google {
  background: var(--blue);
  padding: 15px 0;
  color: var(--white);
}
.google-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
}
.google-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 300;
}
/* section 1 */
.section1 {
  padding: 75px 0;
}
.section1  h3 {
  text-wrap: balance;
}
.vant-slider .slick-track {
  padding: 40px 0;
}
.vant {
  width: 95%;
  min-height: 165px;
  margin: 0 auto;
  border-radius: 20px;
  position: relative;
  text-align: center;
  align-content: center;
  color: var(--white);
  padding: 30px;
}
.vant::before {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  top: -8%;
  left: 50%;
  border-radius: 5px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--blue);
}
.vant-outer:nth-child(odd) .vant {
  background: var(--blue);
}
.vant-outer:nth-child(even) .vant {
  background: var(--green);
}
.vant-outer:nth-child(even) .vant::before {
  top: unset;
  bottom: -8%;
  background: var(--green);
}
.vant img {
  height: 49px;
  margin: 0 auto 20px auto;
}
.vant p {
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
  margin: 0;
  text-wrap: balance;
}
/* section 2 */
.section2 {
  background: var(--white);
  padding: 120px 0 75px 0;
}
.section2 .title {
  text-wrap: balance;
  margin-bottom: 30px;
}
.phone-info {
  text-align: right;
  position: relative;
}
.phone-txt {
  background: var(--blue);
  padding: 20px 25px;
  border-radius: 20px;
  width: 285px;
  height: 150px;
  text-align: left;
  color: var(--white);
  align-content: center;
  position: absolute;
  z-index: 10;
  transition: opacity 0.4s ease;
  opacity: 0;
}
.phone-txt.active {
  opacity: 1;
}
.phone-txt::before {
  content: '';
  width: 27px;
  height: 27px;
  position: absolute;
  left: 75%;
  bottom: -8%;
  background: var(--blue);
  border-radius: 5px;
  transform: rotate(45deg);
}
.phone-txt h6 {
  font-size: 22px;
  font-weight: 700;
  font-family: "MuseoModerno", sans-serif;
  margin-bottom: 10px;
}
.phone-txt p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.phone-txt1 {
  top: -30px;
  left: 100px;
}
.phone-txt2 {
  top: 140px;
  left: 20px;
}
.phone-txt2::before {
  left: 81%;
}
.phone-txt3 {
  left: 240px;
  bottom: 120px;
  z-index: 33;
}
.phone-txt4 {
  right: 75px;
  bottom: 190px;
}
.phone-txt4::before {
  left: 60%;
}
.phone-info-box {
  width: 500px;
  position: relative;
  margin: 0 0 0 auto;
}
.phone-info-box img {
  width: 100%;
}
.phone-icon {
  width: 85px;
  height: 85px;
  aspect-ratio: 1/1;
  border-radius: 85px;
  background: var(--white);
  border: 1px solid var(--blue);
  text-align: center;
  align-content: center;
  position: absolute;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 33;
  animation: float 3.5s ease-in-out infinite;
}
@keyframes float {
  0%   {transform: translateY(0);}
  50%  {transform: translateY(-8px);}
  100% {transform: translateY(0);}
}
.phone-icon img {
  height: 50px;
}
.phone-icon:hover, .phone-icon.active {
  background: var(--blue);
}
.phone-icon:hover img, .phone-icon.active img {
  filter: brightness(0) invert(1);
}
.phone-icon1 {
  top: 150px;
  left: 50px;
  animation-delay: 0s;
}
.phone-icon2 {
  top: 310px;
  left: 0px;
  animation-delay: 0.6s;
}
.phone-icon3 {
  left: 150px;
  bottom: 0px;
  animation-delay: 1.2s;
}
.phone-icon4 {
  left: 300px;
  bottom: 70px;
  animation-delay: 1.8s;
}
/* section3 */
.section3 {
  padding: 75px 0;
  text-align: center;
}
.section3 .container {
  position: relative;
  border-radius: 30px;
  background: rgba(20, 50, 89, 0.10);
  min-height: 225px;
  overflow: hidden;
  align-content: center;
}
.section3 .container video {
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 135%;
  object-fit: cover;
}
.section3 .container .row {
  position: relative;
  z-index: 10;
}
.section3 h3 {
  color: var(--white);
  margin-bottom: 30px;
}
/* section4 */
.section4 {
  padding: 75px 0;
  text-align: center;
  background: var(--white);
}
.section4 h6 {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--blue);
  width: 800px;
  max-width: 100%;
  margin: 20px auto 40px auto;
}
.partner-wrapper {
  position: relative;
  overflow: hidden;
}
.partner-slider::before, .partner-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 4;
}
.partner-slider::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
.partner-slider::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
.partner-outer img {
  max-width: 95%;
  margin: 0 auto;
}
.bdp {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  max-width: 75%;
  width: 500px;
  margin: 40px auto 0 auto;
}
.bdp p {
  margin: 0 0 0 20px;
  font-size: 15px;
  font-weight: 300;
  color: var(--blue);
  line-height: 1.2;
}
/* section4 */
.section5 {
  padding: 75px 0;
}
#pessoal .section5 {
  background: var(--white);
}
.sec5-txt {
  height: 450px;
  background: url('/img/faq.png');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  align-content: center;
  text-align: right;
}
#pessoal .sec5-txt {
  background: url('/img/faqb.png');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.sec5-txt h3 {
  color: var(--white);
  margin: 0 15px 0 0;
  font-size: 36px;
}
.accordion {
  max-width: 85%;
  margin: 0 0 0 auto;
}
.accordion-item {
  background: transparent;
  border-bottom: 1px solid var(--blue);
}
.accordion-button:not(.collapsed) {
  background: none;
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button::after {
  display: none;
}
.accordion-button {
  background: transparent;
  text-align: right;
  font-family: "MuseoModerno", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--blue);
  padding: 20px;
  text-wrap: balance;
  height: auto;
  justify-content: flex-end;
}
.accordion-button:hover {
  background: var(--bs-accordion-active-bg);
}
.accordion-body p {
  text-align: right;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--blue);
  margin: 0;
  padding-bottom: 20px;
}
/* steps section */
.steps {
  padding: 75px 0;
}
.steps .container {
  min-height: 550px;
  padding: 40px 80px;
  align-content: center;
  border-radius: 30px;
  background: url('/img/steps.jpg');
  background-size: 120%;
  background-repeat: no-repeat;
  background-position: -15% 40%;
  position: relative;
}
.steps .container::before {
  content: '';
  background: linear-gradient(270deg,rgba(20, 50, 89, 0) 20%, rgba(20, 50, 89, 0.9) 70%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 30px;
}
.steps .row {
  position: relative;
  color: var(--white);
  z-index: 99;
}
.steps .title {
  color: var(--white);
  text-wrap: balance;
  margin-bottom: 30px;
}
.steps h6 {
  font-weight: 700;
  font-size: 26px;
  margin: 30px 0;
}
.steps p {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 25px;
  text-wrap: balance;
}
/* footer */
.footer {
  padding: 30px 0;
}
#pessoal .footer {
  padding: 75px 0 30px 0;
}
.footer .row {
  border-radius: 20px;
  background: var(--white);
  align-content: center;
  min-height: 420px;
  padding: 30px 0;
}
.footer-txt {
  align-content: center;
}
/* form */
.form-outer {
  padding: 0;
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
#contactform {
  text-align: left;
  padding-left: 30px;
}
#contactform h3 {
  color: var(--blue);
  font-family: "MuseoModerno", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 30px;
}
.example {
  color: var(--blue);
  font-size: 11px;
  font-weight: 400;
  margin: -10px 0 20px 0;
}
#contactform h6 {
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 90%;
  text-wrap: balance;
}
/* custom dropdown input */
.form-input {
  width: 100%;
}
.form-input .dropdown-toggle {
  background: #fff;
  width: 100%;
  height: 40px;
  margin: 0 auto 0 0;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid var(--lightblue);
  color: var(--blue);
  text-align: left;
  padding: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown-toggle::after {
  display: none;
}
.form-option:hover, .form-option.selected, .form-input .dropdown-toggle:active {
  background: #cfe2ff !important;
  color: var(--blue) !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: var(--white);
  color: var(--blue);
}
.form-input .dropdown-menu {
  width: 100%;
  overflow-y: auto;
  max-height: 145px;
  cursor: pointer;
  border-radius: 0px;
  padding: 0;
  border: none;
  margin-top: -2px;
  overflow-x: hidden;
}
.form-input .dropdown-menu::-webkit-scrollbar {
  width: 10px;
}
.form-input .dropdown-menu::-webkit-scrollbar-track {
  border-radius: 10px;
  background: var(--lightgrey);
}
.form-input .dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--blue); 
  border-radius: 10px;
}
.form-input .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--lightblue); 
}
.form-option {
  padding: 15px 20px;
  font-size: 14px;
  line-height: 0.8;
  border-bottom: 1px solid var(--lightblue);
}
/* slider inputs */
.value-display {
  color: var(--lightblue);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px 0;
}
#prestValue {
  font-family: "MuseoModerno", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
}
#prestValue:focus-visible {
  outline: none;
}
.form-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-block: 30px;
}
.slider {
  width: 100% !important;
  margin: 10px 0 !important;
  height: auto !important;
}
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 10px 0;
  height: 8px;
  border-radius: 15px;
  background: transparent;
}
input[type=range]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 15px;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) var(--slider-value, 0%), var(--lightgrey) var(--slider-value, 0%), var(--lightgrey) 100%);
}

input[type=range]::-moz-range-track {
  height: 8px;
  border-radius: 15px;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) var(--slider-value, 0%), var(--lightgrey) var(--slider-value, 0%), var(--lightgrey) 100%);
}
input[type=range]::-ms-track {
  height: 8px;
  border-radius: 15px;
  background: transparent;
  border: none;
  color: transparent;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--lightblue);
  border: none;
  cursor: pointer;
  margin-top: -8px;
}
input[type=range]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--lightblue);
  border: none;
  cursor: pointer;
  margin-top: -8px;
}
input[type=range]::-ms-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--lightblue);
  border: none;
  cursor: pointer;
  margin-top: -8px;
}
/* radio buttons */
.radio-opt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.radio-buton {
  width: 45%;
}
.radio-buton input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-buton label {
  background: var(--white);
  border: 1px solid var(--lightblue);
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 0 20px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.radio-buton label img {
  height: 20px;
  margin: -2px 8px 0 0;
}
.radio-opt-normal .radio-buton label img {
  height: 20px;
}
.radio-buton label:hover, .radio-buton input[type="radio"]:checked + label {
    background: var(--lightblue);
    color: var(--white);
}
.radio-buton label:hover img, .radio-buton input[type="radio"]:checked + label img {
  filter: brightness(0) invert(1);
}
/* normal inputs */
.form-inputs {
  display: flex;
  flex-direction: column;
}
.form-inputs input {
  width: 100%;
  height: 40px;
  margin: 0 auto 0 0;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid var(--lightblue);
  color: var(--blue);
  line-height: 1;
  font-size: 16px;
  font-weight: 300;
}
.form-inputs input:focus-visible {
  outline: none !important;
}
::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
  line-height: 1;
}
:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
  line-height: 1;
}
::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
  line-height: 1;
}
:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
  line-height: 1;
}
::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
  line-height: 1;
}
::placeholder {
  color: rgba(0, 0, 0, 0.4);
  line-height: 1;
}
.form-check {
  text-align: left;
  padding: 0;
  margin-top: 10px;
}
.form-check label {
  margin: 0;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--black);
  font-size: 11px;
  font-weight: 400;
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--lightblue);
  border-radius: 3px;
  padding-right: 5px;
  color: var(--lightblue);
}
.form-check input[type=checkbox]:checked + .checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0px;
  margin-top: 0px;
  font-size: 14px;
}
#politica-link {
  color: var(--black);
  text-decoration: none;
}
#politica-link:hover {
  color: var(--lightblue);
  text-decoration: underline;
}
.form-inputs input.error {
  border-bottom: 2px solid var(--red);
  background-image: url('/img/icons/fail.svg');
  background-position: right center;
  background-size: 25px;
  background-repeat: no-repeat;
  margin: 5px auto 0 auto;
}
.form-inputs input.valid {
  border-bottom: 2px solid var(--green);
  background-image: url('/img/icons/sucess.svg');
  background-position: right center;
  background-size: 25px;
  background-repeat: no-repeat;
  margin: 5px auto;
}
label.error, #terms-error {
  width: 100%;
  font-size: 10px;
  color: var(--red);
  font-weight: 400;
  padding: 0;
  margin: 10px 0 0 0;
  line-height: 1;
}
.form-button {
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 0 auto;
}
.form-step:last-of-type .form-button {
  margin: 10px 0 0 auto;
}
.form-button:hover {
  background: var(--green) !important;
}
/* disclaimer */
.disclaimer {
  padding: 10px 0 0 0;
  text-align: center;
}
.disclaimer p {
  font-size: 9px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--blue);
}
/* chatbot start */
.chatbot {
  position: fixed;
  z-index: 999;
  right: 30px;
  bottom: 30px;
  display: none;
  opacity: 0;
  transition: all 0.5s ease;
}
.chatbot-start {
  width: 350px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  transition: all 0.5s ease;
}
.chatbot-start-message {
  width: 335px;
  min-height: 135px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px;
}
.chatbot-start-message img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
}
.chatbot-start-txt {
  margin-left: 20px;
}
.chatbot-start-txt p {
  font-size: 12px;
  line-height: 1.1;
  font-weight: 300;
  margin: 8px 0;
}
.chatbot-start-txt p b {
  font-weight: 500;
}
.chatbot-start-close {
  min-width: unset;
  width: 20px;
  height: 20px;
  background: var(--blue);
  border: none;
  padding: 10px;
  border-radius: 50px;
  align-content: center;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -5px;
  right: -5px;
}
.chatbot-start-close img {
  width: 10px;
  height: 10px;
  border-radius: 0;
  aspect-ratio: 1;
}
.chatbot-start-btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
  gap: 0 20px;
}
.chatbot-start-btns button {
  min-width: 95px;
  height: 30px;
  padding: 0 15px;
  font-size: 13px;
  line-height: 1;
  font-weight: 300;
  border-radius: 5px;
}
.support {
  color: var(--blue);
  border: 1px solid var(--blue);
  background: var(--white);
}
.chat {
  border: none;
  background: var(--lightblue);
  color: var(--white);
}
.chatbot-notification {
  text-align: right;
  opacity: 0;
  display: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
.chatbot-notification img {
  height: 60px;
}
.chatbot-messenger {
  display: none;
  opacity: 0;
  transition: all 0.5s ease;
}
/* message */
.message-box {
  width: 82%;
  max-width: 95%;
  color: var(--blue);
}
.message-box h3 {
  font-family: "MuseoModerno", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--blue);
  margin: 0 0 40px 0;
  text-wrap: balance;
}
.inner-message {
  padding: 40px 50px;
  background: var(--lightgrey);
  border-radius: 20px;
  border: 1px solid var(--blue);
  margin-bottom: 30px;
  width: 90%;
  max-width: 95%;
}
.inner-message p:last-of-type {
  margin-bottom: 0;
}
.inner-message button {
  margin-top: 20px;
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 20px 0 30px 0;
}
/* Media Queries */
@media only screen and (max-width: 1440px) {
  .header, #pessoal .header {
    min-height: 750px;
    background-position: center 100%;
  }
  .sec5-txt h3 {
    font-size: 28px;
  }
  .accordion-button {
    font-size: 22px;
  }
  .title {
    font-size: 36px;
  }
  .phone-txt {
    width: 240px;
    height: 120px;
  }
  .phone-txt h6 {
    font-size: 18px;
  }
  .phone-txt p {
    font-size: 14px;
  }
  .phone-txt1 {
    top: 0px;
    left: 55px;
  }
  .phone-txt2 {
    top: 160px;
    left: -25px;
  }
  .phone-txt3::before {
    left: 45%;
  }
  .vant {
    padding: 30px 15px;
  }
  .message-box {
    width: 100%;
  }
  .message-box h3 {
    font-size: 32px;
  }
  .header-img img {
    width: 100%;
  }
}
@media only screen and (max-width: 1200px) {
  .nav-menu ul li {
    font-size: 12px;
  }
  .nav-menu ul {
    gap: 0 20px;
  }
  .header-txt-outer h1 {
    font-size: 46px;
  }
  .header-txt-outer h3 {
    text-wrap: balance;
    font-size: 16px;
  }
  .vant {
    min-height: 180px;
  }
  .footer .row {
    justify-content: space-around !important;
  }
  #contactform {
    padding: 0;
  }
  #contactform h3 {
    font-size: 24px;
  }
  #contactform h6 {
    max-width: 100%;
    font-size: 16px;
  }
  .accordion {
    max-width: 95%;
  }
  .accordion-button {
    font-size: 20px;
  }
  .sec5-txt h3 {
    font-size: 24px;
  }
  .phone-txt1::before {
    left: 45%;
  }
  .phone-txt2 {
    top: unset;
    bottom: -20px;
    left: -205px;
  }
  .phone-txt2::before {
    left: 93%;
    bottom: 50%;
  }
  .phone-txt3 {
    left: 140px;
    bottom: 120px;
    z-index: 33;
  }
}
@media only screen and (max-width: 991px) {
  .nav-bar .container {
    max-width: 85%;
  }
  .nav-bar img {
    height: 50px;
  }
  .nav-bar button {
    font-size: 12px;
    padding: 0 10px;
  }
  .nav-menu ul li {
    font-size: 11px;
  }
  #pessoal .nav-menu ul li {
    font-size: 9px;
  }
  .header, #pessoal .header{
    padding-top: 130px;
    text-align: center;
  }
  .header-txt-outer h3 {
    width: 100%;
  }
  .header-img {
    text-align: center;
  }
  .header-img img {
    width: 70%;
    margin: 20px auto;
  }
  .google img {
    height: 25px;
  }
  .google-content p {
    font-size: 12px;
  }
  .section2 {
    text-align: center;
    padding: 75px 0;
  }
  .phone-info-box {
    margin: 60px 0 0 auto;
  }
  .phone-txt1 {
    top: 60px;
    left: 180px;
  }
  .phone-txt2 {
    top: 230px;
    left: 20px;
  }
  .phone-txt2::before {
    left: 81%;
    bottom: -8%;
  }
  .phone-txt3 {
    left: 275px;
    bottom: 110px;
    z-index: 33;
  }
  .phone-txt4 {
    right: 85px;
    bottom: 185px;
  }
  .phone-txt4::before {
    left: 60%;
  }
  .section4 h6, .title {
    text-wrap: balance;
  }
  .footer {
    padding: 0 0 30px 0;
    text-align: center;
  }
  .footer .row {
    padding: 40px;
  }
  .value-display {
    margin: 0 auto 20px auto;
  }
  #contactform {
    width: 85%;
    text-align: center;
    margin: 30px auto 0 auto;
  }
  .form-button {
    margin: 30px auto 0 auto;
  }
  .form-step:last-of-type .form-button {
    margin: 10px auto 0 auto;
  }
  .form-check {
    text-align: center;
  }
  .sec5-txt, #pessoal .sec5-txt  {
    background: none;
    height: auto;
    text-align: center;
  }
  .sec5-txt h3 {
    font-size: 36px;
    color: var(--blue);
    margin: 0;
    margin-bottom: 30px;
  }
  .sec5-txt h3 br {
    display: none;
  }
  .accordion-button {
    text-align: center;
    text-wrap: unset;
    font-size: 22px;
    padding: 15px 30px;
    justify-content: center;
    text-wrap: balance;
  }
  .accordion-body p {
    text-align: center;
  }
  .accordion {
    margin: 0 auto;
  }
  .message-box {
    margin: 0 auto 40px auto;
  }
  .steps .container {
    background-size: cover;
    text-align: center;
    padding: 30px;
    max-width: 95%;
  }
  .steps .container::before {
    background: linear-gradient(270deg,rgba(20, 50, 89, 0) 0%, rgba(20, 50, 89, 0.85) 0%);
  }
  .steps .title {
    margin-bottom: 40px;
  }
  .steps h6 {
    font-size: 23px;
  }
  .steps p {
    line-height: 1.8;
    max-width: 92%;
    margin: 15px auto;
  }
  .inner-message {
    margin: 0 auto;
    padding: 40px 20px;
    text-wrap: balance;
  }
  .inner-message button {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) {
  .nav-menu ul li {
    display: none;
  }
  .nav-menu ul li:last-of-type {
    display: flex;
  }
}
@media only screen and (max-width: 768px) {
  .section1 {
    text-align: center;
  }
  .google-content {
    flex-direction: column;
    gap: 15px 0;
  }
  .phone-info-box {
    margin: 50px auto 0px auto;
  }
  .phone-txt::before {
    content: none;
  }
  .phone-txt {
    text-align: right;
    width: 260px;
    height: 140px;
  }
  .phone-txt h6 {
    font-size: 20px;
  }
  .phone-txt p {
    font-size: 16px;
  }
  .phone-txt1, .phone-txt2, .phone-txt3, .phone-txt4 {
    left: unset;
    bottom: unset;
    top: 150px;
    right: -30px;
  }
}
@media only screen and (max-width: 550px) {
  .header, #pessoal .header {
    background-size: 380%;
  }
  .header-txt-outer h1 {
    font-size: 40px;
  }
  .title, .sec5-txt h3 {
    font-size: 32px;
  }
  .phone-txt {
    width: 230px;
    height: 120px;
  }
  .phone-txt h6 {
    font-size: 18px;
  }
  .phone-txt p {
    font-size: 14px;
  }
  .phone-txt1, .phone-txt2, .phone-txt3, .phone-txt4 {
    right: 30px;
  }
  .section4 h6 {
    font-size: 16px;
  }
  #contactform {
    width: 100%;
  }
  .accordion-button {
    font-size: 21px;
    padding: 15px 20px;
  }
  .phone-info-box {
    width: 100%;
  }
  .section3 {
    max-width: 95%;
    margin: 0 auto;
  }
  .bdp p {
    font-size: 14px;
  }
  .message-box {
    text-wrap: balance;
    padding: 30px;
  }
  .message-box button {
    font-size: 12px;
  }
  .message-box h3 {
    font-size: 26px;
  }
  .message-box p {
    font-size: 14px;
  }
  .inner-message {
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 475px) {
  .section1, .section2, .section3, .section4, .section5 {
    padding: 50px 0;
  }
  .section4 h6 {
    font-size: 14px;
  }
  .bdp p {
    font-size: 12px;
  }
  .accordion-button {
    font-size: 18px;
  }
  .accordion-body p {
    font-size: 13px;
  }
}
@media only screen and (max-width: 450px) {
  .phone-info-box {
    display: flex;
    justify-content: center;
    gap: 0 20px;
    flex-wrap: wrap;
  }
  .phone-icon {
    position: unset;
    width: 75px;
    height: 75px;
  }
  .phone-txt {
    text-align: center;
  }
  .phone-info-box img {
    margin-bottom: 20px;
  }
  .phone-txt1, .phone-txt2, .phone-txt3, .phone-txt4 {
    bottom: 21%;
    left: 50%;
    transform: translateX(-50%);
    right: unset;
    top: unset;
  }
  .phone-icon img {
    height: 40px;
    margin: 0;
  }
  .message-box {
    padding: 20px;
  }
  .message-box button {
    font-size: 11px;
  }
  .message-box h3 {
    font-size: 22px;
  }
  .message-box p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 414px) {
   .header-txt-outer h1 {
    font-size: 32px;
  }
  .header-txt-outer h3 {
    font-size: 14px;
  }
  .header-txt-outer p {
    font-size: 13px;
  }
  .nav-bar button {
    min-width: 160px;
  }
  .nav-bar img {
    height: 40px;
  }
  .phone-icon {
    width: 65px;
    height: 65px;
  }
  .phone-icon img {
    height: 35px;
  }
  .phone-info-box {
    gap: 0 15px;
  }
  .title, .sec5-txt h3 {
    font-size: 30px;
  }
  .footer .row {
    padding: 40px 15px;
    text-wrap: balance;
  }
  .bdp img {
    height: 70px;
  }
  .bdp p {
    font-size: 10px;
  }
  .form-input .dropdown-toggle {
    overflow: hidden;
  }
  .chatbot {
    right: 10px;
  }
  .chatbot-start-message, .chat-messaging {
    width: 90%;
  }
}
@media only screen and (max-width: 375px) {
  .radio-opt {
    flex-direction: column;
    gap: 20px 0;
  }
  .radio-buton {
    width: 90%;
  }
  .message-box button {
    font-size: 9px;
    height: 40px;
  }
  .message-box h3 {
    font-size: 20px;
  }
  .message-box p {
    font-size: 11px;
  }
}
@media only screen and (max-width: 345px) {
  .phone-info-box {
    gap: 20px 60px;
  }
  .phone-txt1, .phone-txt2, .phone-txt3, .phone-txt4 {
    bottom: 38%;
  }
  .title, .sec5-txt h3 {
    font-size: 28px;
  }
  .footer .title {
    font-size: 24px;
  }
  #contactform h3 {
    font-size: 20px;
  }
  .accordion-button {
    padding: 15px 10px;
  }
  .header-txt-outer p {
    font-size: 11px;
  }
  .nav-bar button {
    font-size: 11px;
    min-width: 120px;
    height: 40px;
  }
  .nav-bar .container.scrolling {
    padding: 15px;
  }
  .google-content p {
    font-size: 9px;
  }
  .google img {
    height: 20px;
  }
  .chatbot-start-message {
    padding: 10px;
    min-height: 90px;
  }
  .chatbot-start-message img {
    width: 60px;
    height: 60px;
  }
  .chatbot-start-txt p {
    font-size: 11px;
  }
  .chatbot-start-message, .chat-messaging {
    width: 80%;
  }
  .chatbot-start-close img {
    width: 9px;
  }
  .chatbot-messenger {
    margin: 0 0 0 auto;
    width: 95%;
  }
  .chatbot-notification img {
    width: 55px;
  }
}
@media only screen and (max-width: 320px) {
  .footer .title {
    font-size: 21px;
  }
}