@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@200..1000&display=swap');

:root {
  --blue: #02b3f0;
  --turquesa: #6ab7c0;
  --darkblue: #1d4355;
  --white: #fff;
}

html,
body {
  margin: 0;
  padding: 0 !important;
  font-family: "Mulish", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
  min-height: 100vh;
}

a:hover {
  color: #000000;
}

::-moz-selection {
  /* Code for Firefox */
  color: #ffffff;
  background: var(--blue);
}

::selection {
  color: #ffffff;
  background: var(--blue);
}

/* Cookie bar */
.cky-btn {
  border-color: var(--blue) !important;
}

.cky-btn-customize,
.cky-btn-reject,
.cky-btn-preferences {
  color: var(--blue) !important;
}

.cky-btn-accept {
  background: var(--blue) !important;
}

.cky-switch input[type="checkbox"] {
  display: block !important;
}

.custom-container {
  --max-width: 1500px;
  --padding: 2rem;
  width: min(var(--max-width), 100% - (2 * var(--padding)));
  margin: 0 auto;
}

/* Header */
.header {
  min-height: 690px;
  background: url(/img/ES/banner_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding: 50px 0 185px 0;
  position: relative;
}



.person-img-mobile {
  display: none;
}

.overlay {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 299px;
  margin-top: -296px;
  background: url(/img/overlay.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: 2;
  pointer-events: none;
}

.logo-comparador {
  width: 510px;
  height: auto;
  position: absolute;
  top: -50px;
  left: -20px;
}

.header-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
  width: 100%;
  margin-top: 220px;
}

.header-info ul {
  list-style: none;
  padding: 0;
  margin-left: 25px;
}

.header-info li {
  background: url("/img/ES/icons/header-list.png") no-repeat left center;
  background-size: 30px 30px;
  padding-left: 40px;
  margin-bottom: 10px;
}

.header-info li {
  color: #FFF;
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
}


.header-info h2 {
  color: #FFF;
  font-size: 40px;
  font-weight: 800;
}

.header-info h3 {
  color: #FFF;
  font-weight: 900;
  font-size: 35px;
  max-width: 80%;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

#header-txt {
  position: relative;
}

.person-img {
  position: absolute;
  bottom: -144px;
  left: 62%;
  width: 600px;
  z-index: 1;
}


#contactform {
  width: 420px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  padding: 35px 20px;
  margin: 0 0 0 auto;
}

#contactform hr {
  opacity: 1;
  color: var(--blue);
  max-width: 300px;
  margin: 0 auto 25px;
}

#contactform h3 {
  color: var(--blue);
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 10px;
  text-wrap: balance;
  line-height: 1;
}

.form-header p {
  font-weight: 400;
  font-size: 18px !important;
  margin-bottom: 30px;
}

#contactform p {
  line-height: 1.3;
  font-weight: 400;
  font-size: 20px;
}

#form-group {
  margin-bottom: 15px;
}


#form-group input {
  width: 100%;
  height: 45px;
  margin: auto;
  border-radius: 100px;
  border: 1px solid #E0E0E0;
  background-color: transparent;
  color: #383838;
  font-size: 16px;
  font-weight: 400;
  padding-left: 15px;
}

#form-group input::placeholder {
  color: #383838;
}

#contactform .form__question {
  color: #1A1C1E;
  text-align: center;
  font-size: 25px;
  font-weight: 900 !important;
  margin-bottom: 20px;
  text-wrap: balance;
}

.form-check label {
  margin: 5px 0 0 -10px;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  color: #032239;
  font-size: 12px;
}

.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 #032239;
  border-radius: 2px;
  padding-right: 5px;
  color: #000000;
}

.form-check input[type=checkbox]:checked+.checkmark:after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 15px;
  margin-left: 1px;
  margin-top: -2px;
}

/* radio buttons */
.radio-btn-wrapper {
  display: flex;
  justify-content: space-evenly;
}

.radio-button span {
  font-size: 38px !important;
  margin-right: 10px;
}

.radio-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  line-height: 1.1;
  width: 100%;
  height: 50px;
  font-size: 16px;
  border-radius: 30px;
  margin: 0 auto;
  padding: 0 25px;
  background-color: #fff;
  color: var(--blue);
  transition: all 0.3s ease;
  border: 1px solid var(--blue);
}

.radio-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-button:hover {
  background-color: var(--blue) !important;
  color: #fff !important;
  border: 1px solid var(--blue);
}

.radio-button:hover span {
  color: var(--white);
}

.radio-input:checked+.radio-button {
  background-color: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
}

.radio-input:checked+.radio-button span {
  color: var(--white);
}

.radio-btn-wrapper.radio-column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  row-gap: 15px;
}

.form-group {
  width: 100%;
}

.radio-btn-wrapper.radio-column .radio-button {
  width: 100%;
  max-width: 300px;
  justify-content: flex-start;
  flex-direction: row;
  padding: 0 1rem;
  height: 55px;
  font-size: 16px;
  text-align: left;
  text-wrap: balance;
  color: var(--blue);
  background-color: #fff;
  transition: all 0.3s ease;
}

.form-header h5 {
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 15px;
}

.radio-btn-wrapper .material-symbols-outlined {
  font-size: 60px; 
}

.radio-btn-wrapper.radio-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
  justify-content: space-evenly;
}

.small-radio {
  width: 100px !important;
  height: 45px;
  margin: 0;
}

.radio-btn-wrapper.radio-column .small-radio span {
  text-align: center;
}

.other-question {
  margin-top: 30px;
}

#politica-link {
  color: #000000;
}

#politica-link:hover {
  color: var(--blue);
}

#form-box {
  z-index: 50;
  min-height: 496px;
}

.testimony-select ul {
  display: flex;
  list-style: none;
  max-width: 240px;
  margin: auto;
  gap: 25px;
  justify-content: center;
}

.testimony-select button {
  border: none;
  background-color: #383838;
  font-size: 0;
  width: 20px;
  height: 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.testimony-select .slick-active button {
  background-color: var(--blue);
}

.form-button {
  margin: 30px auto 0 auto;
  width: 100%;
  height: 60px;
  border-radius: 100px;
  background: var(--blue);
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  border: none;
}

.form-button:hover {
  background: #ffffff;
  color: var(--blue);
}

.error,
#termos-error {
  font-size: 10px;
  line-height: 1;
  color: red;
}

#terms-error {
  display: block;
}

.ty {
  width: 480px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
}

.ty-title {
  width: 90%;
  color: #032239;
  font-size: 35px;
  font-weight: 800;
  line-height: 1;
  margin: 0 auto 20px auto;
}

.ty-p {
  width: 90%;
  color: #888;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
}

.pill-title {
  position: relative;
  padding-left: 60px;
  font-weight: 900;
  color: var(--darkblue);
  font-size: 30px;
}

.pill-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 22px;
  background: var(--darkblue);
  border-radius: 999px;
}

/* section 1 */
.section1 {
  padding: 30px 0 50px 0;
  background: linear-gradient(to bottom,
      transparent 0%,
      transparent 35%,
      var(--blue) 35%,
      var(--blue) 85%,
      transparent 85%,
      transparent 100%);
}

.videoContainer {
  margin: 50px 0 0;
}

.videoContainer video {
  border: 10px solid var(--darkblue);
  border-radius: 15px;
}

/* section 2 */
.section2 .container {
  --bs-gutter: 0rem;
  --bs-gutter-x: 0;
}

.containerB {
  position: relative;
  width: 700px;
  height: 700px;
  margin: 80px auto;
  border-radius: 500px;
  border: 20px solid var(--darkblue);
}

.circle {
  position: absolute;
  width: 170px;
  height: 170px;
  background-color: var(--blue);
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

.circle.active {
  background-color: orange;
  /* Change to your desired active color */
}

.circle img {
  filter: invert(1);
  width: 85px;
}

.circle:nth-child(1) {
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
}

.circle:nth-child(2) {
  top: 35%;
  left: -10%;
  transform: translateY(-50%);
}

.circle:nth-child(3) {
  top: 35%;
  right: -10%;
  transform: translateY(-50%);
}

.circle:nth-child(4) {
  bottom: 0%;
  left: 90%;
  transform: translateX(-50%);
}

.circle:nth-child(5) {
  bottom: -10%;
  left: -5%;
  transform: translateY(-50%);
}

.circle:nth-child(6) {
  bottom: 0%;
  right: -5%;
  transform: translateY(-50%);
}

.central-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.central-content p {
  margin: 0;
  font-size: 16px;
}

.central-content .img-container {
  background-color: var(--blue);
  padding: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.central-content img {
  filter: invert(1);
  width: 80px;
}

.slider h1 {
  font-weight: 900;
}

.central-content h1 {
  color: var(--darkblue, #004861);
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.central-content p {
  color: var(--darkblue, #004861);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
}

.circle-content {
  display: none;
  /* Hide the content by default */
}

.section2 .slider {
  padding: 15px 20px;
}
.modal-content{
    background-color: rgba(255,255,255, 0.9) !important;
    color: var(--darkblue) !important;
}
.modal button.close{
    color: var(--darkblue) !important;
}
.modal .btn{
    background-color: var(--darkblue) !important;
    color: #fff !important;
}
.modal .btn:hover{
    background-color: var(--blue) !important;
}
.section2 .slider .card {
  width: 400px !important;
  height: 400px !important;
  max-width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  margin: 25px;
  text-align: center;
  border: none;
  border-radius: 40px;
  filter: drop-shadow(0px 1px 15px rgba(0, 0, 0, 0.25));
}

.section2 .slider .card .img-container {
  color: white;
  background-color: var(--blue);
  width: 120px;
  height: 120px;
  padding: 20px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 65px;
  margin: 20px 0;
}

.section2 .slider .card .img-container img {
  filter: invert(1);
  width: 100%;
}

.section2 .swiper .swiper-slide {
  width: 100%;
  display: flex;
  justify-content: center;
}

.section2 .slick-slide[aria-hidden="true"] {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* section3 */
.section3 {
  text-align: center;
}

.sec3-txt h5 {
  color: #032239;
  font-size: 18px;
  position: relative;
  font-weight: 900;
  margin-left: 90px;
}

.sec3-txt h5::before {
  content: "";
  position: absolute;
  top: 5px;
  margin-left: -90px;
  width: 80px;
  height: 10px;
  background: var(--blue);
}

.sec3-txt h3 {
  color: #032239;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  margin: 15px 0 0 0;
}


.icon-step img {
  max-height: 70px;
  margin: 20px 0;
}

.icon-step h6 {
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}

.icon-step p {
  color: #888;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
  width: 160px;
  margin: 0 auto;
}

.section3 .card {
  width: 90%;
  max-width: 220px;
  height: 170px;
  margin: auto;
  border-radius: 25px;
  border: 2px solid var(--darkblue);
}

.section3 .card .cardTop {
  background-color: var(--darkblue);
  height: 90px;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}

.section3 .cardTop img {
  filter: invert(1);
  width: 70px;
  max-height: 70px;
}

.section3 .card h4 {
  margin: auto;
  font-size: 22px;
  font-weight: 900;
}

#section3_Right {
  transform: rotate(180deg);
}

/* Section 4 */
/*NOVO TESTEMUNHOS */
.testemunhos {
  padding-top: 100px;
  margin-bottom: -80px;
}

.testemunho-slider .slick-track {
  padding: 40px 0;
}

.arrows img {
  height: 50px;
  transition: all 0.6s ease;
  cursor: pointer;
}

.arrows-prev {
  transform: rotate(180deg);
  margin-right: 20px;
}

.arrows-next:hover {
  transform: scale(1.1);
}

.arrows-prev:hover {
  transform: rotate(180deg) scale(1.1);
}

.testemunhos-txt h3 {
  font-size: 26px;
  color: var(--darkblue);
  line-height: 1.2;
  font-weight: 400;
  text-wrap: balance;
}

.arrows {
  margin-bottom: 30px;
}

.testemunhos-txt img {
  max-width: 300px;
  margin: auto;
}

.testemunhos-txt h3 span {
  color: var(--blue);
  font-weight: 900;
}

.testemunho-box {
  text-align: center;
  text-wrap: balance;
  padding: 30px;
  background: var(--white);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  position: relative;
  margin: 0 auto;
  max-width: 80%;
}

.testemunho-box h2 {
  font-size: 90px;
  line-height: 0;
  margin: 0;
  color: var(--blue);
  font-weight: 900;
  padding-top: 120px;
}

.testemunho-box h5 {
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 10px;
}

.testemunho-box h3 {
  font-size: 25px;
  font-weight: 900;
  margin: 0;
}

.testemunho-box p {
  font-size: 14px;
  line-height: 1.2;
  text-wrap: balance;
}

.testemunho-box p b {
  color: var(--blue);
}

.persona {
  width: 120px;
  aspect-ratio: 1;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

.persona1 {
  background: url('/img/ES/persona1.png');
  background-size: contain;
}

.persona2 {
  background: url('/img/ES/persona2.png');
  background-size: contain;
}

.persona3 {
  background: url('/img/ES/persona3.png');
  background-size: contain;
}

/* footer */
.footer {
  background: url(/img/ES/footerbg.png);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1440/220;
  display: flex;
  align-items: center;
  background-position: top;
  margin: 50px 0 0;
  padding: 20px 0 20px 0;
  overflow: hidden;
}

.footer-logos {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  align-items: center;
}

.footer-logos span {
  color: #ffffff;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
}


#footer-cta-box {
  display: flex;
  justify-content: center;
}

#footer-img img {
  width: 100%;
  position: relative;
  bottom: -80px;
}

#footer-txt h3 {
  color: #FFF;
  font-size: 32px;
  margin-left: 45px;
  font-weight: 800;
  max-width: 100%;
  margin-bottom: 0;
}

.foot-cta {
  width: 300px;
  height: 60px;
  border-radius: 100px;
  background: #fff;
  border: none;
  color: var(--darkblue);
  font-size: 20px;
  font-weight: 900;
  margin-right: 70px;
  transition: all 0.2s ease;
}

.foot-cta:hover {
  background: var(--turquesa);
  color: #fff;
}

/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}

/* thanks page */
main.thankyou-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.footer.footer-ty {
  padding: 80px 0 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  gap: 60px;
}


/* .footer.footer-ty>.custom-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1rem;
} */

.message-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex: 1;
  margin-bottom: 50px;
  min-height: 350px;
}

.message-wrapper img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.message-wrapper-mobile {
  margin-bottom: 250px;
  gap: 50px;
}

.logo-wrapper p {
  font-size: 26px;
  font-weight: 900;
}

.message-box,
.particular-box {
  border-radius: 40px;
  background-color: var(--blue);
  color: var(--white);
  max-width: 420px;
  padding: 30px;
  text-align: center;
  text-wrap: balance;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* #particular-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
} */

.particular-box {
  background-color: var(--white);
  color: #000;
}

.particular-box h3 {
  color: var(--blue);
  font-weight: 900;
}

.particular-box p {
  font-size: 24px;
  line-height: 1.2;
}

.message-box h5 {
  font-size: 25px;
  font-weight: 900;
}

.message-box p {
  margin: 0;
  font-size: 18px;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-img__thanks {
  max-width: 400px !important;
  margin-top: -77px !important;
}


.step-number {
  font-size: 45px;
  font-weight: 800;
  color: var(--blue);
}



@media only screen and (max-width: 768px) {
  .header-info h3 {
    max-width: 100%;
  }

  #form-box {
    min-height: 0;
  }

  .personTestimony img {
    margin: 0 auto 20px;
  }

  .stars {
    margin: 0 auto 25px;
  }

  .testimony h6 {
    margin-top: 20px;
  }

  .message-wrapper {
    flex-direction: column;
  }
}

.icon-row2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 50px auto 0 auto;
  position: relative;
}


.icon-step {
  height: 175px;
  padding: 0 10px;
  border-radius: 20px;
  background: transparent;
  text-align: center;
  transition: all 0.7s ease-in-out, background-size 0.9s ease;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.progressBar {
  width: 120%;
  position: relative;
}

.progressBar::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 62px;
  width: 100%;
  height: 15px;
  background-color: var(--white);
  z-index: 0;
}

.icon-step img {
  max-height: 70px;
  margin: 20px 0;
}

.icon-step h6 {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
  text-wrap: balance;
  max-width: 84%;
  line-height: 1.3;
}

.icon-step p {
  color: #888;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
  width: 160px;
  margin: 0 auto;
}

/* Progress bar em mobile */
.steps-mobile {
  display: none;
}

.icons-vertical {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.progressBar-mobile {
  width: 100%;
}

/** Media Queries **/
@media only screen and (max-width: 1590px) {
  .section1_icon {
    margin: 0;
    width: 25%;
  }
}

@media only screen and (max-width: 1400px) {

  /* .person-img {
    max-width: 440px;
    left: 20%;
  } */

  .header-info h2 {
    font-size: 32px;
  }

  #left-space1 {
    margin-left: -450px;
  }

  .icon-step {
    padding: 0;
  }

  #firstHR {
    width: 50%;
    left: 50%;
  }

  #preLastHR {
    width: 50%;
  }

  #lastHR {
    width: 100%;
    right: 50%;
    border: 10px #032239;
    border-style: none none dashed;
    color: #fff;
    background-color: #fff;
  }

  #footer-txt h3 {
    font-size: 26px;
  }
}

@media only screen and (max-width: 1250px) {
  #footer-txt h3 {
    font-size: 22px;
    margin-left: 10px;
  }

}

@media only screen and (max-width: 1200px) {

  .ty,
  #form-group input,
  .form-button,
  .foot-cta {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    aspect-ratio: unset;
    min-height: 260px;
    text-align: center;
    margin-top: 40px;
  }

  #footer-txt h3 {
    max-width: 100%;
    text-align: center;
  }

  #sec1-txt h5 {
    text-align: center;
    margin-top: 25px;
  }

  .section1_icon .icon {
    margin: 0 auto 25px;
  }

  .col-auto.section1_icon.slick-slide {
    transition: all 1.3s ease;
  }

  .section1-slider .section1_icon:not(.slick-active) {
    opacity: 0;
  }

  .col-auto.section1_icon.slick-slide.slick-active {
    opacity: 1;
  }

  #sec1-txt h3 {
    text-align: center;
    margin: 0 auto 25px;
  }

  .person-img {
    width: 390px;
    right: -10px;
  }

  #contactform h3 {
    font-size: 25px;
  }

  .form-button {
    font-size: 23px;
  }

  #sec1-txt h3,
  #section2-1 h3,
  #sec2-2-txt h3,
  .sec3-txt h3 {
    font-size: 25px;
  }

  /* .icon-box {
    width: 195px;
  } */

  #footer-img img {
    width: 330px;
  }


  #footer-txt h3 {
    font-size: 28px;
    margin-left: 0;
  }


  .foot-cta {
    font-size: 20px;
    margin: 20px 0 0;
    width: 300px;
  }

  .socials {
    display: flex;
    align-items: center;
    gap: 0px;
    width: 165px;
  }

}

@media only screen and (max-width: 1180px) {
  .header-info {
    flex-direction: column;
    align-items: start;
    margin-top: 190px;
    margin-left: 30px;
  }

  .header-info h3 {
    max-width: 90%;
  }

  #sec1-txt h3 {
    max-width: 100%;
    text-wrap: balance;
  }

  #contactform {
    width: 440px;
    margin: 0 auto;
  }

  #contactform h3 {
    font-size: 22px;
  }

  .icon-box {
    margin-bottom: 30px;
  }

  .section1_icon {
    margin: 10px;
    width: 25%;
  }
}

@media only screen and (max-width: 1080px) {
  .person-img {
    width: 402px;
    bottom: -121px;
    right: -13px;
  }

  #contactform {
    width: 410px;
  }

  .form-button {
    font-size: 21px;
  }

  #contactform h3 span {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .icon-box img {
    max-width: 350px;
  }

  .pill-title::before {
    display: none;
  }

  .pill-title {
    padding: 0;
    text-align: center;
    width: auto;
    margin: 0 auto 15px;
  }

  .section2 h5 {
    text-align: center;
  }

  .header {
    padding: 80px 0 105px 0;
  }

  .logo-comparador {
    width: 300px;
    top: -80px; 
  }

  .header-info,
  .header-info ul {
    margin: 0;
  }

  .header-info h3 {
    font-size: 24px;
    margin-top: 80px;
  }

  .person-img {
    display: none;
  }

  .section1 {
    background: linear-gradient(to bottom, transparent 0%, transparent 42%, var(--blue) 42%, var(--blue) 85%, transparent 85%, transparent 100%);
  }

  .person-img-mobile {
    display: block;
    transform: scaleX(-1);
    width: unset;
  }

  #contactform {
    padding: 35px 20px;
    max-width: 400px;
    width: 100%;
  }

  .radio-button {
    font-size: 16px;
  }

  .form-button {
    font-size: 18px;
  }

  .header-info {
    display: block;
  }

  .header-info li {
    font-size: 18px;
  }

  #logo {
    width: 300px;
    margin-bottom: 10px;
  }

  #sec1-txt,
  #sec2-2-txt {
    margin: 0;
  }

  #footer-img img {
    margin: -70px 0 1px -40px;
    width: 250px;
  }

  .footer-img__thanks {
    width: 320px !important;
  }

  #footer-txt h3 {
    font-size: 32px;
    max-width: 100%;
    line-height: 1.1;
    text-wrap: balance;
  }

  #preLastHR {
    margin-left: -450px;
    width: 350%;
  }


  .foot-cta {
    font-size: 19px;
  }


}

@media only screen and (max-width: 830px) {
  .header-info {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .message-wrapper {
    gap: 50px;
  }

  .radio-button {
    max-width: 300px;
  }

  #section3_Left,
  #section3_Right {
      margin-top: 20px;
    max-height: 40px;
  }

  .progress-desktop {
    display: none;
  }

  .header-info h3 {
    text-wrap: balance;
    max-width: 100%;
  }

  #contactform {
    max-width: 500px;
  }

  .footer-img__thanks {
    display: none;
  }

  .steps-mobile {
    display: block;
  }

  .person-img-mobile {
    display: none;
  }

  .header {
    text-align: center;
  }

  #header-txt {
    margin-bottom: 40px;
  }

  .header-info {
    margin-top: 15px;
    margin-left: 0;
  }

  .header-info h2 {
    width: 80%;
    font-size: 40px;
    margin: 0 auto 32px auto;
  }

  #logo {
    max-width: 320px;
    margin-bottom: 10px;
  }

  #contactform {
    width: 100%;
  }

  .section2 {
    padding-bottom: 30px;
  }

  .section3 {
    margin: 0;
  }

  .testemunhos {
    text-align: center;
    padding-top: 50px;
  }

  .testemunhos-txt {
    margin-bottom: 30px;
  }

  #sec1-txt h3,
  #section2-1 h3,
  #sec2-2-txt h3,
  .sec3-txt h3 {
    font-size: 28px;
  }

  #section2-1 h3 {
    text-wrap: balance;
  }

  .section1,
  .section3 {
    text-align: center;
  }

  .section2 {
    background-size: 300%;
  }

  .footer {
    text-align: center;
    background-size: cover;
    background-position: center bottom;
  }

  .testimony h4,
  .testimony p,
  .testimony h6 {
    text-align: center;
  }

  .section4 {
    padding-top: 20px;
  }

  #footer-img {
    display: none;
  }

  #footer-img img {
    max-width: 200px;
    margin: -100px auto 0 auto;
  }

  .footer-ty {
    background-size: cover;
    background-position: -4px bottom;
  }

  .footer-ty {
    background-size: cover;
    background-position: -4px bottom;
  }
}

@media only screen and (max-width: 550px) {
  #footer-cta-box {
    display: flex;
    justify-content: center;
  }

  .header-info h2 {
    width: 90%;
  }

  .testimony img.d-inline {
    display: none !important;
  }


  .section1 {
    background: linear-gradient(to bottom, transparent 0%, transparent 50%, var(--blue) 50%, var(--blue) 80%, transparent 80%, transparent 100%);

  }

  #footer-txt h3 {
    font-size: 24px;
  }

  .pill-title,
  .section2 h5 {
    padding: 0;
    text-align: center;
    text-wrap: balance;
  }
}

@media only screen and (max-width: 520px) {
  .header-info h2 {
    width: 100%;
    font-size: 35px;
  }

  .header {
    padding-top: 110px;
  }

  .logo-comparador {        
      width: 390px;
        top: -110px;
        left: -40px;
  }

  .foot-cta {
    width: 280px;
  }

    .form-header h5{
        font-size: 10px;
    }
    #contactform .form__question{
        font-size: 20px;
    }
    .section1 h5{
        font-size: 14px;
    }
}

@media only screen and (max-width: 430px) {
  .header-info li {
    font-size: 16px;
    line-height: 27px;
  }
  .testimony h4 {
    font-size: 24px;
  }

  .testimony p {
    font-size: 16px;
  }

  .testimony-slider {
    padding: 0 !important;
  }

  .testimony-slider .p-4 {
    padding: 10px !important;
  }

  #firstHR {
    width: 200%;
  }

  .progressBar hr,
  #left-space1,
  #preLastHR {
    margin-left: -200px;
  }

  #firstHR,
  #lastHR {
    margin-left: 0;
  }

  .custom-container {
    --padding: 15px;
  }

  .section1 {
    padding-inline: 15px;
  }

  .pill-title {
    font-size: 24px;
  }

  h5 {
    font-size: 18px;
    line-height: 1.1
  }

  .testemunhos-txt h3 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 414px) {

  .custom-container {
    --padding: 1rem;
  }

  .header-info h2 {
    font-size: 30px;
  }

  #contactform h3 span {
    font-size: 15px;
  }

  #contactform h3 {
    font-size: 20px;
  }

  .form-check label {
    font-size: 10px;
    padding-left: 15px;
  }

  .form-button {
    font-size: 18px;
  }

  .icon-box {
    margin: 0 20px;
    padding: 40px 15px 0 15px;
  }

  .logo-comparador {
    width: 100%;
    top: -190px;
    left: -50px;
  }

  #contactform {
    padding: 30px 15px;
  }

  #contactform h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 375px) {
  #logo {
    max-width: 250px;
  }

  .section1 {
    background: linear-gradient(to bottom, transparent 0%, transparent 60%, var(--blue) 60%, var(--blue) 80%, transparent 80%, transparent 100%);
  }

  .header-info h2 {
    font-size: 28px;
  }

  .header-info li {
    font-size: 15px
  }

  .header-info ul {
    margin-bottom: 0;
  }

  #contactform {
    padding: 30px 25px;
    border-radius: 30px;
  }

  #contactform h3 span {
    font-size: 18px;
  }

  .form-check {
    text-align: left;
  }

  .form-check label {
    font-size: 12px;
    padding-left: 20px;
  }

  .form-button {
    font-size: 16px;
  }
}

@media only screen and (max-width: 325px) {
  .header-info h2 {
    font-size: 25px;
  }

  #contactform h3 {
    font-size: 22px;
  }

  #contactform h3 span {
    font-size: 16px;
  }

  .foot-cta {
    width: 100%;
  }

  .form-button {
    font-size: 14px;
    height: 50px;
  }

  #sec1-txt h3,
  #section2-1 h3,
  #sec2-2-txt h3,
  .sec3-txt h3 {
    font-size: 20px;
  }

}