@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --white: #fff;
  --black: #000;
  --blue: #262261;
  --acqua: #0B9;
  --grey: #EBEEFA;
  --lightgrey: #F5F7FF;
  --gradient: linear-gradient(90deg, var(--blue) 0%, var(--acqua) 100%);
  --backgradient: linear-gradient(0deg, var(--acqua) 14%, rgba(255, 255, 255, 0.0) 10%);
  --ff-primary: "Montserrat";
  --divider: 100px;
}

body {
  margin: 0;
  padding: 0 !important;
  font-family: var(--ff-primary), sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  color: var(--blue);
  text-wrap: balance;
}

html,
body {
  overflow-x: hidden !important;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a:hover {
  color: #000000;
}

#section-ads {
  display: flex;
  justify-content: center;
  width: 100%;
}

#section-ads a {
  width: unset;
  padding: 20px;
}

.custom-container {
  --max-width: 1240px;
  --padding: 2rem;
  width: min(var(--max-width), 100% - (2 * var(--padding)));
  margin-inline: auto;
}

.title {
  font-size: 40px;
  font-weight: 800;
}

.subtitle {
  font-size: 20px;
  line-height: normal;
}

.cta {
  border-radius: 50px;
  background: white;
  padding: 16px 32px;
  line-height: 1.2;
  color: var(--blue);
  font-size: 22px;
  font-weight: 800;
  border: none;
  transition: all .2s ease;
}

.cta:hover {
  background-color: var(--blue);
  color: white;
}

/* nav */
.nav {
  padding: 20px 0;
  background: var(--white);
}

.nav-logo img {
  height: 55px;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.nav-menu ul li img {
  height: 20px;
  margin-left: 5px;
}

.nav-menu ul li {
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border-bottom: 2px solid var(--white);
  transition: all 0.5s ease;
}

.modal .btn:hover {
  color: var(--white);
  background-color: var(--acqua);
}

.nav-menu ul li:hover {
  border-bottom: 2px solid var(--acqua);
}

.nav-menu ul li:last-child {
  border: none;
}

.nav-menu ul li:last-child:hover {
  transform: scale(1.1);
}

.nav-menu ul li:last-child img {
  height: 30px;
  margin: 0;
}

/* google */
.google-review {
  padding: 15px 0;
  background: var(--blue);
}

.google-img img {
  height: 25px;
}

.google-txt {
  text-align: right;
}

.google-txt p {
  margin: 0 auto 0 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
}

/* header */
.header {
  background: var(--lightgrey);
  min-height: 525px;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.step-menu {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.step-menu p {
  margin: 0 5px 0 0;
  font-size: 11px;
  line-height: 1;
  color: var(--black);
  font-weight: 400;
}

.step-menu img {
  height: 20px;
  margin: 0 5px 0 0;
}

.step-menu img:nth-child(2),
.step-menu img:nth-child(4) {
  transform: rotate(-90deg);
  height: 15px;
}

.header-content {
  display: flex;
  align-items: center;
}

.header-txt {
  width: 60%;
  padding-right: 20px;
}

.header-txt--description {
  font-size: 15px;
  line-height: 1.2;
  margin-top: 16px;
}

.header-txt ul {
  padding: 0;
  margin: 30px 0 20px 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}

.header-txt ul li {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
}

.header-txt h6 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 15px 0;
}

.header-txt h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--blue);
}

.header-txt h1 span {
  color: var(--acqua);
}

.header-img {
  width: 45%;
}

.header-img img {
  position: absolute;
  max-width: 410px;
  margin-left: -10px;
  bottom: 0;
}

/* form */
#contactform,
.message-wrapper {
  width: 100%;
  max-width: 390px;
  min-height: 420px;
  padding: 40px;
  margin: 0 0 0 auto;
  border-radius: 30px;
  box-shadow: 0px 0px 15px 0 rgba(0, 0, 0, 0.25);
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 99;
}

.form-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
}

.form-title span {
  color: var(--acqua);
}

.form-subtitle {
  font-size: 16px;
  margin-bottom: 25px;
  font-weight: 500;
  line-height: 1.2;
  text-wrap: auto;
}

.form-step {
  display: none;
  width: 100%;
}

.form-step.active {
  display: block;
}

.question {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.answers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-buton input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-buton label {
  background: var(--blue);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  padding: 12px;
  transition: all 0.3s ease;
}

.radio-buton label img {
  height: 15px;
  margin: -1px 10px 0 0;
}

.radio-buton label:hover {
  background: var(--acqua);
}

.radio-buton input[type="radio"]:checked+label {
  background: var(--acqua);
  color: var(--white);
}

.dropdown-toggle:hover::after {
  filter: brightness(0) invert(1);
}

.dropdown-menu {
  width: 100%;
  padding: 0;
  overflow-y: scroll;
  cursor: pointer;
}

.dropdown-menu li {
  font-size: 16px;
  color: var(--blue);
  padding: 6px 15px;
}

.dropdown-menu li:hover {
  color: var(--white);
  background: var(--blue);
}

.form-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.slider {
  width: 100% !important;
  margin: 10px 0 !important;
  height: auto !important;
}

input[type=range] {
  -webkit-appearance: none;
  width: 80%;
  margin: 10px 0;
  height: 8px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--acqua) 0%, var(--acqua) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%);
}

input[type=range]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--acqua) 0%, var(--acqua) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%);
}

input[type=range]::-moz-range-track {
  height: 8px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--acqua) 0%, var(--acqua) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%);
}

input[type=range]::-ms-track {
  height: 8px;
  border-radius: 12px;
  background: transparent;
  border: none;
  color: transparent;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  margin: -6px 0 0 -1px;
}

input[type=range]::-ms-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  margin: -6px 0 0 -1px;
}

.value-display {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: 1px solid var(--blue);
  color: var(--blue);
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.value-display span:focus-visible {
  outline: none !important;
}

#final-step-title {
  max-width: 85%;
  margin: 0 auto;
}

.form-input input {
  width: 100%;
  height: 45px;
  border-radius: 50px;
  border: 2px solid var(--blue);
  padding: 0 0 0 15px;
  text-align: left;
  font-size: 16px;
  color: var(--blue);
}

#telefono {
  padding-left: 54px;
  background-repeat: no-repeat;
  background-position: 14px 50%;
  background-size: 30px 25px;

  background-image: url("/img/icons/mexico.svg");
}


::-webkit-input-placeholder {
  color: #72858f;
}

:-moz-placeholder {
  color: #72858f;
  opacity: 1;
}

::-moz-placeholder {
  color: #72858f;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #72858f;
}

::-ms-input-placeholder {
  color: #72858f;
}

::placeholder {
  color: #72858f;
}

.form-input input:focus-visible,
.form-input select:focus-visible {
  outline: none !important;
}

.form-input .dropdown-toggle {
  background: #fff;
  color: #72858f;
  width: 100%;
  height: 40px;
  border-radius: 50px;
  border: 2px solid var(--blue);
  text-align: left;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.form-input .dropdown-toggle img {
  height: 20px;
}

.dropdown-toggle::after {
  display: none;
}

.form-input .dropdown-toggle:hover,
.form-option.selected,
.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: var(--blue);
}

.form-input .dropdown-menu {
  width: 100%;
  overflow-y: auto;
  max-height: 200px;
  cursor: pointer;
  border-radius: 20px;
  padding: 0;
  border: 2px solid var(--blue);
}

.form-option {
  padding: 10px 20px;
}

.form-option:hover {
  background: var(--blue);
  color: #fff;
}

.form-check {
  text-align: left;
  padding: 0;
}

.form-check label {
  margin: 0 0 0 12px;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--blue);
  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(--blue);
  border-radius: 2px;
  padding-right: 5px;
  color: var(--blue);
}

.form-check input[type=checkbox]:checked+.checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0.5px;
  margin-top: -0.1px;
  font-size: 12px;
}

#politica-link {
  color: var(--blue);
  text-decoration: none;
}

#politica-link:hover {
  color: var(--acqua);
  text-decoration: underline;
}

.form-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.form-button {
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 3px;
  width: 70px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.form-button img {
  height: 20px;
}

.prev img {
  transform: rotate(180deg);
}

.prev:hover {
  background: var(--grey);
}

.next {
  background: var(--blue);
}

.next img {
  filter: brightness(0) invert(1);
}

.next:hover {
  background: var(--acqua);
  border: 1px solid var(--acqua);
}

.error,
#termos-error {
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  color: red;
  width: 100%;
}

.final-button {
  width: 100%;
  margin-top: 15px;
}

/* Vantagens */
.vantagens {
  padding-block: var(--divider);
}

.vantagens__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.vantanges-header {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vantagens-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vantagem {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px;
  border-radius: 30px;
  background: #FFF;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  cursor: pointer;
}

.vantagem::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  border: 4px solid var(--blue);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}

.vantagem:hover {
  background: var(--blue);
  color: white;
  transform: scale(1.05);
}

.vantagem:hover::after {
  opacity: 1;
}

.vantagem:hover .corner {
  opacity: 0;
}

.vantagem-img {
  max-height: 75px;
}

.vantagem-txt {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vantagem-txt--title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.vantagem-txt--description {
  font-size: 14px;
  line-height: 1.2;
  text-wrap: auto;
}

.corner {
  position: absolute;
  width: 68px;
  height: 37px;
  border: 4px solid var(--blue);
}

/* os 4 cantos */
.corner.top-left {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 30px;
}

.corner.top-right {
  top: -2px;
  right: -2px;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 30px;
}

.corner.bottom-left {
  bottom: -2px;
  left: -2px;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 30px;
}

.corner.bottom-right {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 30px;
}

.about-us {
  padding-block: 50px;
  background: linear-gradient(0deg, rgba(176, 176, 176, 0.15) 0%, rgba(255, 255, 255, 0.15) 100%);
}

.about-us__wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 25px;
}

.about-us--img {
  max-width: 500px;
  height: 330px;
  object-fit: contain;
}

.about-us__content {
  max-width: 575px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-us__content--txt .subtitle {
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat {
  border-radius: 10px;
  background: linear-gradient(258deg, var(--acqua) 0%, var(--blue) 100%);
  padding: 10px 15px;
  color: white;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: transform .3s ease;
}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.stat p {
  font-size: 14px;
}

.stat:hover {
  background: var(--blue);
  transform: scale(1.05);
}

/* Como funciona */
.como-funciona {
  background: linear-gradient(180deg, rgba(176, 176, 176, 0.15) 0%, rgba(255, 255, 255, 0.15) 100%);
}

.como-funciona__wrapper {
  max-width: 1025px;
  margin-inline: auto;
}

.como-funciona--header {
  flex-direction: column;
  gap: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 45px;
}

.como-funciona-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* Dots do slider */
.como-funciona-dots,
.como-funciona-dots-reviews {
  text-align: center;
  margin-top: 40px;
}

.como-funciona-dots .slick-dots,
.como-funciona-dots-reviews .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.como-funciona-dots .slick-dots li,
.como-funciona-dots-reviews .slick-dots li {
  margin: 0 5px;
}

.como-funciona-dots .slick-dots li button,
.como-funciona-dots-reviews .slick-dots li button {
  background-color: var(--blue);
  border: none;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: block;
  padding: 0;
  cursor: pointer;
  font-size: 0;
  transition: all 0.5s ease;
}

.como-funciona-dots .slick-dots li.slick-active button,
.como-funciona-dots-reviews .slick-dots li.slick-active button {
  background-color: var(--acqua);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.step img {
  margin-bottom: 20px;
  height: 50px;
}

.step span {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
}

/* agendar */
.agendar {
  margin-top: var(--divider);
}

.agendar-box {
  border-radius: 50px;
  background: linear-gradient(87deg, var(--blue) 0%, var(--acqua) 100%);
  padding: 50px;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

/* FAQ */
.faq {
  padding-block: var(--divider);
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  background: transparent !important;
  border: none !important;
  margin: 15px auto;
}

.accordion-button {
  background: white;
  border: 3px solid var(--blue);
  border-radius: 30px !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  padding: 0 25px;
  height: 70px;
  justify-content: space-between;
  gap: 15px;
}

.accordion-body span {
  font-weight: 700;
}

.accordion-button .number {
  color: var(--acqua);
  font-size: 24px;
  font-weight: 900;
  line-height: 0;
}

.accordion-button:not(.collapsed),
.accordion-button:focus {
  color: var(--blue);
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--white);
}

.accordion-button::after {
  content: "";
  background-image: url("/img/icons/arrow-down.svg") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  width: 15px;
  height: 15px;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 20px 30px;
  color: var(--blue);
  font-size: 17px;
  line-height: 1.1;
  font-weight: 300;
  text-align: left;
  max-width: 95%;
  text-wrap: auto;
}


.accordion-flush>.accordion-item:first-child {
  border-top: 0;
  margin-top: 0;
}

/* Testimonials */
.testimonials {
  padding-block: var(--divider);
  background: rgba(176, 176, 176, 0.15);
}

.testimonials-box {
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 28px;
  border-radius: 50px;
  background: #FFF;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
}

.testimonial-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  max-width: 40%;
  flex: 0 0 auto;
  min-width: 0;
  align-items: flex-start;
}

.testimonials-wrapper {
  max-width: 60%;
}

.cta-secondary {
  border-radius: 50px;
  background: linear-gradient(268deg, var(--acqua) 0%, var(--blue) 100.05%);
  color: white;
  transition: none;
  transition: transform .2s ease-in;
}

.cta-secondary:hover {
  background: var(--blue);
  transform: scale(1.05);
}

.review-slider-box {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.review-slider::before,
.review-slider::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 50px;
  right: 0;
  left: 0;
  z-index: 4;
}

.review-slider::before {
  top: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 8%, rgba(255, 255, 255, 1) 37%, rgba(255, 255, 255, 1) 100%);
}

.review-slider::after {
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 8%, rgba(255, 255, 255, 1) 37%, rgba(255, 255, 255, 1) 100%);
}

.review-slider .slick-track {
  padding: 30px 0;
}

.review-outer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px auto;
}

.testimonial-box {
  background: var(--white);
  box-shadow: 0px 0px 10px 5px rgba(27, 38, 117, 0.2);
  width: 44%;
  margin: 0 auto;
  padding: 30px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.left-test {
  margin-top: -130px;
}

.testimonial {
  position: relative;
}

.testimonial-box p {
  font-size: 14px;
  line-height: 1.2;
  margin: 0 auto;
}

.persona {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 30px 0 0 0;
}

.testimonails-nome {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
}

.testimonails-nome p {
  margin: 0;
}

.persona h6 {
  font-style: italic;
  font-weight: 700;
  color: var(--blue);
  font-size: 14px;
}

.persona h6 span {
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  color: var(--black);
}

.footer {
  width: 100%;
  margin-top: var(--divider);
  margin-bottom: 45px;
}

.footer-box {
  width: 100%;
  border-radius: 50px;
  padding: 58px 145px;
  background: linear-gradient(87deg, var(--blue) 0%, var(--acqua) 100%);
  position: relative;
  display: flex;
  align-items: center;
  gap: 70px;
}

.footer-txt {
  color: white;
}

.hand {
  height: 200px;
  position: absolute;
  bottom: 0;
  right: 45px;
}

.message-wrapper {
  padding: 40px 30px;
}

.message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.message-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}

.message p {
  line-height: 1.2;
}


.contact-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 170px;
  padding: 14px 24px;

  border: none;
  border-radius: 999px;
  background: #262261;
  color: #fff;

  font-size: 16px;
  font-weight: 700;
  line-height: 1;

  cursor: pointer;
  overflow: hidden;

  box-shadow: 0 10px 25px rgba(38, 34, 97, 0.28);
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-btn img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: transform 0.25s ease;
}

.contact-btn span,
.contact-btn a {
  position: relative;
  z-index: 2;
}

.contact-btn a {
  display: none;
  color: #fff;
  text-decoration: none;
}

.contact-btn:hover,
.contact-btn:focus,
.contact-btn:active {
  background: #0b9;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0, 187, 153, 0.35);
}

.contact-btn:hover img,
.contact-btn:focus img,
.contact-btn:active img {
  transform: scale(1.12) rotate(-6deg);
}

.contact-btn:hover span,
.contact-btn:focus span,
.contact-btn:active span {
  display: none;
}

.contact-btn:hover a,
.contact-btn:focus a,
.contact-btn:active a {
  display: inline;
}

.contact-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.45s ease;
}

.contact-btn:hover::after {
  transform: translateX(100%);
}

@media (max-width: 1200px) {
  .footer-box {
    padding: 55px;
    gap: 30px;
  }

  .footer .title {
    font-size: 35px;
  }

  .footer .cta {
    font-size: 20px;
  }
}

@media(max-width: 992px) {
  .title {
    font-size: 35px;
  }

  .subtitle {
    font-size: 18px;
  }

  .header-img {
    display: none;
  }

  .header-txt {
    width: unset;
    padding-right: 0;
  }

  .header-txt h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .header-txt--description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .nav-menu ul li {
    font-size: 14px;
  }

  .vantanges-header {
    align-items: center;
    text-align: center;
  }

  .vantagem {
    gap: 20px;
    padding: 25px;
  }

  .vantagem-img {
    max-height: 55px;
  }

  .vantagem-txt--title {
    font-size: 18px;
  }

  .vantagens__wrapper {
    gap: 50px;
    flex-direction: column;
  }

  .about-us {
    padding-block: var(--divider);
  }

  .about-us--img {
    max-width: 50%;
  }

  .more {
    font-size: 15px;
    line-height: 1.2;
  }

  .stat-num {
    font-size: 20px;
  }

  .stat p {
    font-size: 12px;
    line-height: 1.2;
    text-align: start;
  }

  .testimonials {
    padding-top: 0;
  }

  .testimonials-box {
    flex-direction: column;
    padding-inline: 35px;
  }

  .testimonial-txt {
    width: 100%;
    text-align: center;
    align-items: center;
    max-width: 100%;
  }

  .testimonials-wrapper {
    max-width: 100%;
  }

  .footer {
    margin-top: 0;
    margin-bottom: 30px;
  }

  .footer-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media(max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-logo {
    text-align: center;
  }

  .header {
    padding-top: 35px;
  }

  .header-txt {
    text-align: center;
  }

  #contactform,
  .message-wrapper {
    margin-inline: auto;
  }

  .header-txt ul {
    padding: 0;
    margin: 20px 0 35px 0;
    gap: 12px;
  }

  .google-review {
    padding: 10px 0;
    text-align: center;
  }

  .vantagens {
    padding-bottom: 0;
  }

  .vantagem {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .about-us__wrapper {
    flex-direction: column-reverse;
  }

  .about-us__content {
    align-items: center;
    text-align: center;
  }

  .about-us--img {
    height: unset;
    margin-top: 30px;
  }

  .about-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .about-us--img {
    max-width: 100%;
  }

  .about-us .more {
    display: none;
  }

  .step {
    justify-content: flex-start;
    max-width: 80%;
    margin-inline: auto;
  }

  .step span {
    font-size: 18px;
    line-height: 1.2;
  }

  .step p {
    line-height: 1.2;
    font-size: 15px;
  }

  .como-funciona-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .accordion-button {
    font-size: 16px;
    gap: 5px;
    padding: 0 20px;
    text-wrap: auto;
  }

  .cta {
    font-size: 18px;
  }

  .agendar-box .title {
    font-size: 28px;
  }

  .footer-box {
    padding: 35px 55px;
  }

  .footer .title {
    font-size: 32px;
  }

  .footer .cta {
    font-size: 16px;
  }

  #contactform,
  .message-wrapper {
    min-height: unset;
  }
}

@media (max-width: 650px) {
  .footer .title {
    font-size: 25px;
  }

  .footer-box {
    gap: 12px;
    padding: 35px;
  }

  .review-outer {
    flex-direction: column;
    gap: 20px;
    margin: 14px auto;
  }

  .testimonial-box {
    width: 100%;
  }

  .left-test {
    margin-top: 0;
  }

  .footer-box {
    align-items: center;
    text-align: center;
  }

  .hand {
    display: none;
  }

}

@media (max-width: 480px) {
  .title {
    font-size: 32px;
  }

  .subtitle {
    font-size: 16px;
  }

  .nav {
    padding: 12px 0;
  }

  .nav-logo img {
    height: 35px;
  }

  .google-img img {
    height: 18px;
  }

  .header-txt h1 {
    font-size: 26px;
  }

  .header-txt--description {
    margin-bottom: 30px;
    font-size: 15px;
  }

  #contactform,
  .message-wrapper {
    padding: 40px 30px;
  }

  .vantagem-txt--title {
    font-size: 16px;
    text-wrap: auto;
  }

  .vantagem-img {
    max-height: 45px;
  }

  .agendar-box {
    padding: 35px;
  }

  .footer {
    margin-top: 0;
  }
}

@media(max-width: 420px) {
  .vantagens-grid {
    grid-template-columns: 1fr;
  }

  .vantagem {
    gap: 15px;
  }

  .vantagem-txt--description {
    font-size: 13px;
  }
}

@media (max-width: 335px) {
  .stat {
    width: 100%
  }

  .footer .cta {
    padding: 16px 24px;
  }
}