/* configuração  */
:root {
  --main-color: #f05a22;
  --secondary: #224752;
  --bg-light-gray: #f4f4f4;
  --bg-light-blue: #eef7f9;
  --text-color: #333333;
  --text-secondary: #545454;
  --white: #ffff;
  --black: #070707;
  --red-300: #fe2020;
}
html {
  scroll-behavior: smooth;
  scroll-padding: 12rem;
}
body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
}
*:focus {
  outline: none;
}
a {
  color: #0066cc;
  text-decoration: none;
}
button {
  cursor: pointer;
  border: none;
}
section {
  margin-top: 5rem;
}
.main-button {
  padding: 0 1.5rem;
  border-radius: 8px;
  font-weight: 800;
  height: 3.25rem;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.main-button:hover {
  transition: 1s ease-in-out;
}
.primary-button,
.primary-button[type="submit"] {
  box-shadow: 6px 10px 32px 0px #f05a2233;
  background: var(--main-color);
  color: #fff;
}
.primary-button:hover {
  background: #cc4d29;
}
.primary-button::selection {
  background: #f07343;
}
.secondary-button,
.secondary-button[type="submit"] {
  box-shadow: 6px 10px 32px 0px #00a29133;
  background: var(--secondary);
  color: #fff;
}
.secondary-button:hover {
  background: #1d3c46;
}
.secondary-button:focus {
  transition: none;
}
.secondary-button::selection {
  background: #43636c;
}
.outline-button {
  border: 1px solid #3a798a;
  color: #3a798a;
  border-radius: 8px;
  transition: 1s ease-in-out;
}
.outline-button:hover {
  background: #e9edee;
}
.main-field {
  background: #fff;
  color: var(--text-color);
  height: 3.25rem;
  width: 100%;
  border-radius: 8px !important;
  padding: 0.5rem;
  border: 1.5px solid #b0b0b0 !important;
}
.main-field::placeholder {
  color: #545454;
  font-size: 1rem;
}
.wrapper {
  max-width: 100%;
}
.arrow-carousel img {
  margin: 0;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .wrapper {
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
  }
  .arrow-carousel {
    display: flex;
    background: #a6a6a6b2;
    color: #fff;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
  }
  .arrow-animation {
    transform: rotate(-90deg);
  }
}

.section-container {
  padding: 0 1rem;
}
.logo {
  width: 11.188rem;
  height: 2rem;
}
.main-checkbox {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  width: 1.5rem !important;
  height: 1.5rem !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border-radius: 8px !important;
  border: 2px solid var(--text-secondary) !important;
  outline: none !important;
  cursor: pointer;
}
.main-checkbox::before {
  content: url("/assets/images/check-icon.svg");
  position: absolute;
  display: none;
  width: 1rem;
}
.main-checkbox:checked {
  height: 1.5rem !important;
  width: 1.5rem !important;
  position: relative !important;
  border: 8px !important;
  border: 1px solid var(--main-color) !important;
  background: var(--main-color) !important;
  outline: none !important;
  transition: background-color 0.3s ease-out;
}
.main-checkbox:checked::before {
  display: block;
}
select:invalid {
  color: #8a8a8a;
}
.main-header {
  background: var(--main-color);
  padding: 0 1rem;
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0;
}
.navbar-line {
  border: 1px solid #e6e6e6;
  position: absolute;
  left: 0;
  right: 0;
}
.nav-links ul li {
  text-align: start !important;
  cursor: pointer;
}
.nav-links-line {
  height: 0.8px;
  border-color: #e6e6e6;
}
.nav-buttons {
  display: none;
}
.nav-buttons a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 8px;
  font-weight: 800;
}
.header-tools {
  flex: 1;
  margin: 0 1rem;
}
@media screen and (min-width: 1050px) {
  .header-tools {
    margin: 0 1.5rem;
  }
}
.consult-button {
  color: #fff;
  background: none;
  border: 2px solid #fff;
}
.login-button {
  color: #000;
  background: #fff;
}
.navbar .menu-hamburger {
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .nav-links {
    position: fixed;
    background-color: #fff;
    color: var(--main-color);
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    z-index: 9999;
    margin-right: -100%;
    overflow-y: auto;
  }
  .nav-links::-webkit-scrollbar,
  .menu-categories-list::-webkit-scrollbar {
    width: 5px;
  }
  .nav-links::-webkit-scrollbar-thumb,
  .menu-categories-list::-webkit-scrollbar-thumb {
    background-color: #e6e6e6;
    border-radius: 10px;
  }
  .nav-links::-webkit-scrollbar-track,
  .menu-categories-list::-webkit-scrollbar-track {
    background-color: #fff;
  }

  .nav-links ul a {
    color: var(--text-color);
    font-size: 1.25rem !important;
  }
}
.mobile-menu {
  margin-right: 0;
  transition: margin-right 0.5s ease;
}
.nav-links.mobile-menu {
  margin-left: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .nav-links {
    width: 50%;
  }
}
@media screen and (min-width: 1025px) {
  .navbar {
    max-width: 90rem;
  }

  .nav-links {
    color: #fff;
    gap: 2rem;
    min-width: 25rem;
  }

  .nav-links a {
    color: #fff;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s, color 0.3s;
    font-size: 0.875rem;
  }
  .nav-buttons {
    display: flex;
    gap: 1rem;
  }

  .link-active,
  .nav-links a:hover {
    color: #fff;
    border-bottom: 2px solid #fff !important;
    border-color: #fff;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 1px 16px 23px -13px #0000001a;
    z-index: 9999;
    padding: 1rem 1.25rem;
    min-width: 11.625rem;
    border-radius: 8px;
    height: auto;
  }

  .dropdown-content a {
    color: var(--text-color) !important;
    display: block;
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0.5rem 0;
  }

  .dropdown-content a:hover {
    color: var(--text-color) !important;
  }

  #dropdownToggle:after {
    display: inline-block;
    margin-left: 0.3em;
    content: "";
    border-top: 0.4em solid;
    border-right: 0.4em solid transparent;
    border-bottom: 0;
    border-left: 0.4em solid transparent;
  }
}
.main-hero {
  background: var(--main-color);
  padding: 5.5rem 1rem 0 1rem;
  position: relative;
}
.hero-left,
.hero-right {
  width: 100%;
}
@media screen and (min-width: 1050px) {
  .nav-buttons {
    display: flex;
    gap: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .hero-left,
  .hero-right {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .main-hero::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #f8b399;
    filter: blur(200px);
  }
}
@media screen and (max-width: 768px) {
  .hero-content h1 {
    margin: 0 auto;
  }
}
.hero-title {
  max-width: 450px;
}
@media screen and (min-width: 1025px) {
  .hero-title {
    max-width: 620px;
  }
}
@media screen and (min-width: 1450px) {
  .hero-title {
    max-width: 650px;
  }
}
.creditors-logo-slide {
  animation: slideshow 60s linear infinite;
  white-space: nowrap;
  width: calc(200px * 2 * var(--size));
}

.paused .creditors-logo-slide {
  animation-play-state: paused;
}

.creditors-logo-slide img {
  padding: 0 16px;
  max-width: initial;
}

@keyframes slideshow {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-200px * var(--size)));
  }
}

.creditors-logos::before,
.creditors-logos::after,
.slider::after {
  height: 146px;
  width: 15px;
  position: absolute;
  content: "";
  background: linear-gradient(90deg, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}

.creditors-logos::before {
  left: 0;
  top: 0;
}

.creditors-logos::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.reasons-deal-title span {
  color: var(--main-color);
}

.reasons-container {
  color: #000;
}

.reasons-container .bg-circle {
  background: linear-gradient(224.98deg, #20809a 24.55%, #2b3b44 95.75%);
  padding: 1.5rem;
  margin: 0 auto 0.5rem;
  height: 5.5rem;
  width: 5.5rem;
  border-radius: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 1440px) {
  .reasons-container .bg-circle {
    height: 8.125rem;
    width: 8.125rem;
  }

  .reasons-container .bg-circle img {
    height: 4rem;
    width: 4rem;
  }
}

.section-steps {
  background: var(--main-color);
  overflow: hidden;
  position: relative;
}
.steps-container-section {
  padding: 2.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.section-steps::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 382px;
  background: linear-gradient(
    360deg,
    #f37b4e 69.95%,
    rgba(243, 123, 78, 0) 86.64%
  );
  border-radius: 0;
}
.steps-left img {
  margin: 0 auto;
}
.bullet {
  background: none;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  font-weight: 700;
  border: 1px solid #fff;
}

.bullet-active {
  background: #fff;
  color: var(--main-color);
}
.progress-line {
  border: 1px solid #fff;
  width: 1px;
  height: 32px;
  margin: 2px auto;
}
.progress-title {
  font-size: 1.25rem;
  font-weight: 700;
}
.progress-text {
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .steps-container-section {
    padding: 4rem 2.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
  }
  .section-steps::before {
    content: "";
    width: 0;
    height: 0;
  }
  .steps-left img {
    margin: 0;
  }
  .progress-title {
    font-size: 1.5rem;
  }
  .progress-text {
    font-size: 1.25rem;
  }
  .steps-left {
    max-width: 25.063rem;
  }
  .steps-right {
    max-width: 40.75rem;
  }
}

@media screen and (min-width: 1024px) {
  .section-steps::before {
    content: "";
    position: absolute;
    top: 185px;
    width: 110%;
    height: 1669px;
    background: linear-gradient(
      360deg,
      #f37b4e 69.95%,
      rgba(243, 123, 78, 0) 86.64%
    );
    border-radius: 50%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 50%);
    transform: translate(-5%);
  }
}

.section-where-we-appeared {
  background: var(--bg-light-gray);
  padding: 2.5rem 1rem;
  margin-top: 0;
}
.where-we-appeared-container h3 {
  color: var(--text-secondary);
}
.where-we-appeared-carousel {
  overflow-x: scroll;
  scroll-behavior: smooth;
  transition: scroll-left 0.5s ease-in-out;
  will-change: scroll-position;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transform: translateZ(0);
  display: grid;
  gap: 2rem;
  grid-auto-flow: column;
  grid-template-rows: 1fr 1fr;
  grid-auto-columns: max-content;
  align-items: center;
}
.where-we-appeared-carousel-card {
  backface-visibility: hidden;
}
.where-we-appeared-carousel::-webkit-scrollbar {
  width: 100%;
  height: 4px;
}
.where-we-appeared-carousel::-webkit-scrollbar-track {
  background: #e6e6e6;
}
.where-we-appeared-carousel::-webkit-scrollbar-thumb {
  background-color: #b0b0b0;
  border-radius: 24px;
}

@media screen and (min-width: 768px) {
  .where-we-appeared-carousel {
    width: 100%;
    grid-template-rows: 1fr;
    grid-auto-columns: max-content;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .where-we-appeared-carrousel-wrapper {
    max-width: 100rem;
    margin: 0 auto;
  }
  .where-we-appeared-carousel::-webkit-scrollbar {
    display: none;
  }
}

.numbers_qq-quantity img {
  display: inline;
}

@media screen and (min-width: 768px) {
  .numbers_qq-quantity {
    width: 30%;
  }
}

.customer-testimonial-wrapper {
  max-width: 100rem;
}
.testimonial-carousel {
  overflow-x: scroll;
  scroll-behavior: smooth;
  transition: scroll-left 0.5s ease-in-out;
  will-change: scroll-position;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transform: translateZ(0);
}
.testimonial-carousel::-webkit-scrollbar {
  display: none;
}
.testimonial-carousel-card {
  background: var(--bg-light-gray);
  border-radius: 24px;
  padding: 2rem 1rem;
  max-width: 16rem;
  backface-visibility: hidden;
}
.testimonial-text {
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  display: -webkit-box;
}

.testimonial-carousel-card a {
  text-decoration: underline;
}

@media screen and (min-width: 1024px) {
  .testimonial-carousel-card {
    max-width: 23%;
  }
}

.faq {
  border-bottom: 1px solid #b0b0b0;
  cursor: pointer;
}

.faq .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease;
}

.answer p {
  color: var(--text-secondary);
}

.answer a {
  text-decoration: underline;
}

.faq.active .answer {
  max-height: 1000px;
}

.help-section-card {
  background: var(--bg-light-gray);
  border-radius: 24px;
}

.disabled-arrow {
  opacity: 0.5;
  pointer-events: none;
}

.section-news {
  background: var(--bg-light-blue);
}
.news-carrousel-wrapper {
  max-width: 100rem;
}
.news-carousel {
  overflow-x: scroll;
  scroll-behavior: smooth;
  transition: scroll-left 0.5s ease-in-out;
  will-change: scroll-position;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transform: translateZ(0);
}
.news-carousel::-webkit-scrollbar {
  display: none;
}
.news-carousel-card {
  background: #fff;
  box-shadow: 12px 18px 40px 0px #c3c3c333;
  border-radius: 16px;
  max-width: 60%;
  min-height: 21rem;
  position: relative;
  backface-visibility: hidden;
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
  .news-carousel-card {
    max-width: 45%;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .news-carousel-card {
    max-width: 30%;
  }
}
@media screen and (min-width: 1280px) {
  .news-carousel-card {
    width: 24%;
  }
}

.news-carousel-card img {
  width: 100%;
  height: 9.5rem;
  object-fit: cover;
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
}
.news-card-topic {
  background: #f37b4e;
  color: #fff;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
}
.news-card-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin-bottom: 2rem;
}
.read-news-btn {
  display: flex;
  color: var(--main-color);
  font-weight: 700;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.subscribe-section {
  background: linear-gradient(180deg, #b0e9f9 19.38%, #8ac6d7 100%);
}
.subscribe-field-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}

.subscribe-checkbox-label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
.subscribe-checkbox-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--text-secondary);
  border-radius: 4px;
}
.inner-square {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 14px;
  height: 14px;
  background-color: #000;
  display: none;
  border-radius: 2px;
}
.subscribe-checkbox input[type="checkbox"] {
  display: none;
}
input[type="checkbox"]:checked + .subscribe-checkbox-label .inner-square {
  display: block;
}

@media screen and (min-width: 1024px) {
  .subscribe-section {
    background: linear-gradient(289.61deg, #66acc0 20.31%, #8ac6d7 61.56%);
  }
  .subscribe-field-container {
    flex-direction: row;
  }
}

.section-awards {
  background: var(--bg-light-gray);
}
.awards-text {
  text-align: center;
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 700;
}
.awards-logos {
  overflow-x: scroll;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.awards-logos::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .awards-logos {
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 1536px) {
  .awards-text {
    text-align: left;
    max-width: 11.25rem;
    line-height: 1.5 !important;
  }
}

.footer {
  background: var(--main-color);
  padding: 0 1rem;
}

.footer-content {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 0;
}

.footer-content a {
  color: #fff;
}

.footer-message {
  background: #f8b399;
  padding: 8px;
  border-radius: 8px;
  max-width: max-content;
}

.social-medias img {
  width: 1.5rem;
  height: 1.5rem;
}

.footer-block-third ul li {
  list-style: none;
  margin-bottom: 1.75rem;
}

.footer-badges img {
  max-width: 10.039rem;
  height: 3rem;
}

.footer-contact p {
  font-size: 0.75rem;
  margin: 8px 0;
}

@media screen and (max-width: 768px) {
  #qrcode-modal {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer-block-first {
    width: 100%;
  }

  .footer-block {
    width: fit-content;
  }
  #qrcode-modal {
    max-width: 24.813rem;
    border-radius: 1rem;
    background: #fff;
    padding: 2.5rem 2rem;
  }
  .qrcode-modal::backdrop {
    background: rgba(0, 0, 0, 0.4);
  }
}

@media screen and (min-width: 1024px) {
  .footer-content {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .footer-block-first {
    max-width: 22.75rem;
  }
}
.partners-section {
  padding-top: 90px;
}

.header-credor {
  padding: 0 1rem;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--white);
}
.nav-links-credor li a {
  color: var(--text-color);
  font-size: 0.875rem;
}

.nav-links-credor li a:hover {
  color: initial;
}

.consult-button-credor {
  color: var(--white);
  background: var(--main-color);
}

.credor-logo-line {
  border-color: #b0b0b0;
  border-width: 1px;
  height: 56px;
}
.hero-credor {
  padding: 5.5rem 1rem 0 1rem;
  position: relative;
  background: var(--hero-bg-color);
  color: var(--hero-text-color);
}
.hero-left,
.hero-right {
  width: 100%;
}
.hero-button {
  background: var(--button-bg-color);
  color: var(--button-text-color);
}

.how-it-works-container {
  background: var(--bg-light-blue);
  border-radius: 24px;
  padding: 2.5rem;
}

.how-it-works-container li::before {
  content: "\2022";
  font-size: 16px;
  margin-right: 5px;
}

.best-discounts-container {
  background-color: rgba(0, 104, 255, 0.1);
  border-radius: 24px;
}

.discounts-cards {
  max-width: 55rem;
  margin: 2.5rem auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .discounts-cards {
    flex-direction: row;
  }
}

.discounts-card-total {
  background: var(--white);
  margin: 0 auto;
  text-align: start;
  border-radius: 16px;
  padding: 1.75rem;
}

.discounts-card-negotiation {
  background: var(--main-color);
  color: var(--white);
  box-shadow: 0px 4px 20px 0px rgba(240, 90, 34, 0.4);
  margin: 0 auto;
  text-align: start;
  position: relative;
  border-radius: 16px;
  padding: 1.75rem;
}

.discount-label {
  background: var(--secondary);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  min-width: 13.375rem;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  position: absolute;
  right: -1rem;
}

.topic-content li::before {
  content: "\2022";
  font-size: 16px;
  margin-right: 5px;
}

.type-of-debt-container {
  background: #e6f0ff;
  border-radius: 24px;
}

.type-of-debt-content li::before {
  content: "\2022";
  font-size: 16px;
  margin-right: 5px;
}

.type-of-debt-line {
  border-color: #000;
  border-width: 1px;
  height: 21px;
}

.about-carrousel-wrapper {
  max-width: 100rem;
}
.about-carousel {
  overflow-x: scroll;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: scroll-left 0.5s ease-in-out;
  will-change: scroll-position;
}
.about-carousel::-webkit-scrollbar {
  display: none;
}
.about-carousel-card {
  background: #eef7f9;
  border-radius: 24px;
  width: 80%;
  min-height: 300px;
  box-sizing: border-box;
  padding: 2rem;
  backface-visibility: hidden;
}
.about-us-img img {
  object-fit: cover;
  border-radius: 2rem;
}

@media screen and (min-width: 600px) {
  .about-carousel-card {
    width: 388px;
  }
}

@media screen and (min-width: 1024px) {
  .about-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 118px; /* Largura do efeito na borda */
    pointer-events: none;
  }
  .about-carousel.right-side::after {
    right: 45px;
    background: linear-gradient(90deg, #f05a22 0%, rgba(240, 90, 34, 0) 100%);
    transform: scaleX(-1); /* Inverte o gradiente para o lado direito */
  }
}

.copyright-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 1024px) {
  .copyright-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.credit-cards-container {
  display: flex;
  gap: 1.25rem;
  margin-top: 3.5rem;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
}

.credit-cards-container::-webkit-scrollbar {
  display: none;
}

.credit-cards-container .credit-card {
  min-height: 422px;
  width: 100%;
  border-radius: 1rem;
  padding: 1.5rem;
  background: #00a291;
  border: 1px solid #00a291;
  margin-left: auto;
  margin-right: auto;
}
.credit-btn {
  background: #fff;
  color: #00443d;
  border: 1px solid #00443d;
  width: 179px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 4px 5px 29px -10px #00000026;
  position: absolute;
  bottom: 1.5rem;
  margin-top: 2rem;
}

.credit-card--title {
  font-size: 0.8rem;
  font-weight: bold;
  background: #fff;
  border-radius: 1.5rem;
  padding: 4px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  min-width: 200px;
  height: 33px;
}

.credit-card--values {
  border: 1px solid #fff;
  background: var(--main-color);
  border-radius: 8px;
  max-width: 278px;
  padding: 1rem;
  margin: 0 auto;
}

.credit-simulate-offer--container {
  background: rgba(0, 162, 145, 0.1);
  padding: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.5rem;
  gap: 2rem;
}

.credit-simulate-offer--card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 366px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

@media screen and (max-width: 768px) {
  .credit-simulate-offer--container {
    flex-direction: column;
  }
  .credit-simulate-offer--card {
    min-width: 100%;
  }
}

@media screen and (max-width: 1350px) {
  .credit-card {
    min-width: 322px;
  }
}

.range-container {
  position: relative;
  width: 100%;
}

.credit-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: #d9d9d9;
  border-radius: 4px;
  outline: none;
}

.credit-range-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 4px;
}

.credit-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 4px 16px 0px #0000001f;
  cursor: pointer;
  margin-top: -18px;
  position: relative;
}

.credit-range-slider::-moz-range-thumb {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -18px;
  position: relative;
}

.partners-form-container {
  background: var(--main-color);
  padding: 5.5rem 1rem 0 1rem;
  min-height: 70vh;
  display: flex;
  position: relative;
}

.partners-form {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  max-width: 535px;
  z-index: 1;
  display: flex;
  align-items: center;
}

.partners-form-label {
  display: block;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.partners-form-field {
  border-radius: 8px;
  border: 1.5px solid var(--black-50, #e6e6e6);
  background: var(--white, #fff);
  padding: 8px;
  width: 100%;
}

.partners-form-select {
  border-radius: 8px;
  border: 1.5px solid var(--black-50, #e6e6e6);
  background: var(--white, #fff);
  width: 100%;
}

@media screen and (max-width: 767px) {
  .partners-form-section {
    height: 980px;
  }
  .partners-form-container {
    height: 718px;
  }
}

@media screen and (max-width: 420px) {
  .partners-form-section {
    height: 1100px;
  }
}

@media screen and (min-width: 1024px) {
  .partners-form-container::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #f8b399;
    filter: blur(200px);
  }
}

.desenrola-content p {
  margin: 1rem 0;
}

.static-discounts-carousel {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 30px;
  line-height: 45px;
  height: 60px;
}
.static-discounts-carousel .pre {
  position: absolute;
  top: 0;
  right: 52%;
  height: 60px;
  text-shadow: 1px 1px 1px #3c2254;
  font-weight: 300;
}
.static-discounts-carousel .change_outer {
  position: absolute;
  top: 0;
  text-align: left;
  height: 60px;
  overflow: hidden;
}
.static-discounts-carousel .change_outer .change_inner {
  position: relative;
  animation: rotate 28.2s ease-in-out infinite;
}
.static-discounts-carousel .change_outer .element {
  display: block;
}

@keyframes rotate {
  1%,
  7%,
  100% {
    transform: translateY(0);
  }
  9.8%,
  16.8% {
    transform: translateY(-60px);
  }
  19.6%,
  26.6% {
    transform: translateY(-120px);
  }
  29.4%,
  36.4% {
    transform: translateY(-180px);
  }
  39.2%,
  46.2% {
    transform: translateY(-240px);
  }
  49%,
  56% {
    transform: translateY(-300px);
  }
  58.8%,
  65.8% {
    transform: translateY(-360px);
  }
  68.6%,
  75.6% {
    transform: translateY(-420px);
  }
  78.4%,
  85.4% {
    transform: translateY(-480px);
  }
  88.2%,
  95.2% {
    transform: translateY(-540px);
  }
}

.our-manifest-content p {
  margin-bottom: 1rem;
}

.security-hero {
  padding: 5rem 1rem 0 1rem;
  position: relative;
}

.security-background {
  height: 50vh;
  background: var(--main-color);
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
}

.security-content {
  margin: 54px 0;
}

.security-info-container {
  border-radius: 2rem;
  padding: 2.5rem;
  background: linear-gradient(
    106deg,
    #092229 21.4%,
    #224752 58.81%,
    #3a798a 96.23%
  );
}

.hero-app {
  background: var(--main-color);
  padding: 12rem 1rem 9rem 1rem;
  position: relative;
}

.app-hero-left {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .app-hero-left {
    width: 50%;
  }
}

.banner-app {
  position: relative;
}

.banner-image {
  min-width: 450px;
  position: absolute;
  right: 45px;
  bottom: -190px;
}

.qrcode-content {
  background-color: #1f4d5a;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.qr-code-img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
}

.qrcode-content p {
  color: white;
  font-weight: 700;
  width: 100px;
  margin-bottom: 0;
}

@media screen and (max-width: 1023px) {
  .hero-app {
    padding: 8rem 1rem 5rem 1rem;
  }
  .banner-app {
    text-align: center;
    display: flex;
    max-width: 296px;
    margin: 0 auto;
  }

  .banner-image {
    position: initial;
    margin-right: 1rem;
    margin-left: -1rem;
    min-width: 291px;
    height: 296px;
  }

  .qrcode-content {
    padding: 1rem 0.5rem;
    flex-direction: column;
    text-align: center;
    max-width: 117px;
    gap: 8px;
    position: absolute;
    right: 0;
    margin-top: 3.5rem;
  }

  .qrcode-content p {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 318px) {
  .banner-image {
    min-width: 200px;
  }
  .qr-code-content {
    max-width: 100px;
  }
}

.politic-content blockquote {
  padding: 0 2rem;
}

.politic-content p {
  margin: 1rem 0;
}

.politic-content ul {
  padding: 0 2rem;
}

.politic-content ul li {
  list-style: disc;
  margin: 0.5rem 0;
}

.blog-main-news-section {
  padding: 5rem 1rem 0 1rem;
}
.blog-card {
  width: 100%;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
}
.blog-img img {
  object-fit: cover;
}

.blog-img img {
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
}
.blog-article {
  margin-top: 5rem;
}
.blog-article-container,
.blog-article-content {
  width: 100%;
}
.blog-article-content img {
  border-radius: 1rem !important;
}
.article-content {
  margin: 2rem 0;
}
.article-text {
  font-size: 1rem;
}
.article_links a {
  color: #f05a22;
}
.blog-steps-content .blog-step {
  color: var(--main-color);
  font-weight: 700;
  background: #feefe9;
  border-radius: 4px;
  padding: 2px 4px;
  font-size: 0.875rem;
  margin-right: 6px;
}
.blog-steps-content .blog-step-title {
  font-weight: 700;
}
.blog-steps-content {
  color: #565656;
}

.categories-content {
  padding: 1rem;
}

@media screen and (min-width: 1025px) {
  .blog-article-container {
    max-width: 68.125rem;
  }
  .blog_article_post {
    max-width: 40rem;
  }
}

@media screen and (min-width: 1200px) {
  .blog_article_post {
    max-width: 45rem;
  }
}

@media screen and (min-width: 768px) {
  .blog-card {
    width: fit-content;
    border-radius: 1rem;
  }
}

.search-field {
  display: flex;
  height: 52px;
  border-radius: 8px;
  border: none;
  color: var(--text-color);
}

.select-news-btn {
  color: var(--text-secondary);
  font-weight: 700;
  border: 1px solid #8ac6d7;
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.select-news-btn[data-active="true"] {
  background-color: #c9e5ec;
  color: #224752;
}

.label_blog_category {
  color: var(--main-color);
  border: 1px solid #f8b399;
  padding: 4px;
  font-size: 0.75rem;
  border-radius: 4px;
}

.label_blog_category_destack {
  color: white;
  background-color: var(--main-color);
  padding: 4px;
  font-size: 0.75rem;
  border-radius: 4px;
}

.blog_news_btn {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
}

.blog-consult {
  border-radius: 24px;
  background: linear-gradient(270deg, #224752 0%, #27788f 100%);
  max-width: 1090px;
  margin: 0 auto;
  padding: 1.5rem;
}
.category-carousel-card {
  min-width: 128px;
  padding: 0 1rem;
  color: var(--text-color);
}
.category-circle {
  border-radius: 62px;
  background: #f37b4e;
  padding: 18px;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.category-carousel {
  overflow-x: scroll;
  scroll-behavior: smooth;
  transition: scroll-left 0.5s ease-in-out;
  will-change: scroll-position;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transform: translateZ(0);
}
.category-carousel-wrapper {
  width: 100%;
}
.category-carousel::-webkit-scrollbar {
  display: none;
}
.select-category-active {
  border: 1px solid #f37b4e;
  background: #f4f4f4;
  padding: 1rem;
  border-radius: 12px;
  width: 128px;
  height: 122px;
  transform: scale(0.95);
  transition: transform 0.2s ease-in-out;
}
.search-categories {
  border: none;
  border-radius: 8px;
  width: 298px;
  padding-left: 50px;
}
.search-icon {
  position: absolute;
  left: 12px;
}

@media screen and (min-width: 1024px) and (max-width: 1536px) {
  .highlight_new {
    width: 40%;
  }
  .right_side_news {
    width: 50%;
  }
}

@media screen and (min-width: 1536px) {
  .highlight_new {
    width: 70%;
  }
  .right_side_news {
    width: 50%;
  }
}

@media screen and (min-width: 1024px) {
  .blog-consult {
    position: relative;
  }
  .category-carousel-wrapper {
    width: 80%;
  }
}

.audio-player {
  max-width: 26.313rem;
  background: var(--secondary);
  color: var(--white);
}
.audio-player .timeline {
  background: var(--white);
  height: 0.5rem;
  width: 100%;
  border-radius: 1.313rem;
  position: relative;
  cursor: pointer;
}
.audio-player .timeline .progress {
  background: var(--main-color);
  width: 0%;
  height: 100%;
  transition: 0.25s;
}
.play-container svg {
  cursor: pointer;
}

.related-posts-container {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  row-gap: 2rem;
  column-gap: 1rem;
}
.related-posts-card {
  background: #fff;
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  min-height: 188px;
}
.related-card-title {
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .related-posts-container {
    grid-template-columns: repeat(auto-fill, minmax(47%, 1fr));
  }
}

.category-scroll-desktop-container {
  box-shadow: 0px 4px 4px 0px #00000040;
  padding: 0.5em 1rem;
  top: 5.5rem;
  width: 100%;
  z-index: 10;
  background: #fff;
  position: fixed;
  transition: top 0.3s ease;
}
.category-scroll-desktop-container.hidden,
.category-scroll-mobile-container.hidden {
  opacity: 0;
}
.category-scroll-carousel-card a {
  color: #8a8a8a;
  font-weight: 700;
  font-size: 0.8rem;
}
.category-scroll-carousel-wrapper {
  max-width: 60rem;
}
.category-scroll-carousel {
  overflow-x: scroll;
  scroll-behavior: smooth;
  transition: transform 0.5s ease;
  will-change: scroll-position;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.category-scroll-carousel-card {
  min-width: 80px;
  display: flex;
  justify-content: center;
}
.category-scroll-carousel::-webkit-scrollbar {
  display: none;
}

.category-scroll-mobile-container {
  position: fixed;
  top: 5rem;
  z-index: 10;
  width: 100%;
  padding: 1rem;
  background: #f4f4f4;
  transition: top 0.3s ease;
  position: fixed;
}
.category-scroll-mobile-container input {
  padding: 8px 12px 8px 40px;
  border: none;
  border-radius: 8px;
  width: 100%;
}
.menu-category {
  background: #fff;
  width: 0;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 80px;
  overflow: hidden;
  transition: width 0.3s ease;
  z-index: 11;
}
.menu-categories-list {
  overflow-y: auto;
}
.menu-category.open {
  width: 100%;
}
.menu-category-opened {
  background: #f4f4f4;
  height: 72px;
  padding: 1rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .menu-category.open {
    width: 50%;
  }
}
.expandable-input-container {
  height: 1.5rem;
  margin-left: 1.5rem;
  position: absolute;
  top: 0;
  right: 1px;
  width: 100%;
  max-width: 300px;
  z-index: 1;
}
.blog-search {
  padding: 8px 12px 8px 40px;
  border: none;
  border-radius: 8px;
  width: 100%;
}
.blog-search-bar {
  position: absolute;
  right: 1px;
  top: 0;
  bottom: 0;
  width: 100%;
  transition: width 0.5s ease-in-out;
}
.expandable-input-container.active {
  width: 100%;
}
.search-enter-icon.active {
  background: #e6e6e6;
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: 4px;
  transition: opacity 0.5s;
  opacity: 1;
}

.announcement-container {
  width: 100%;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3cline x1='0' y1='0' x2='100%25' y2='0' stroke='%23C0C0C0' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3cline x1='0' y1='100%25' x2='100%25' y2='100%25' stroke='%23C0C0C0' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border: none;
  padding: 2rem 1rem;
}

.additional-content p {
  margin: 1rem 0;
}

@media screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
}

.extra-income-hero {
  padding: 7rem 1rem;
  background: var(--main-color);
}

.extra-income-services-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

@media screen and (min-width: 1024px) {
  .extra-income-services-container {
    justify-content: end;
  }
  .extra-income-hero {
    padding: 2rem 1rem;
  }
}

.extra-income-services-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 202px;
  border: 1px solid #c9e5ec;
  flex-shrink: 0;
  border-radius: 8px;
  padding: 1.5rem;
}
.help-search-categories-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease-in-out;
}

.help-search-categories-container.visible {
  max-height: 300px;
}

.close-category-btn {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.help-search-categories {
  overflow-x: scroll;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
..help-search-categories::-webkit-scrollbar {
  display: none;
}

.help-search-categories a {
  color: #fff;
  font-weight: 700;
  border: 2px solid #fff;
  padding: 8px 12px;
  border-radius: 8px;
  flex-shrink: 0;
}

.help-search-categories::-webkit-scrollbar {
  display: none;
}

.categories-links--container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1rem;
}

.categories-links---card {
  border: 2px solid #b0b0b0;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  color: #333333;
}

@media screen and (min-width: 1024px) {
  .categories-links--container {
    gap: 2rem;
  }
}

@media screen and (max-width: 590px) {
  .categories-links--container {
    grid-template-columns: repeat(auto-fill, minmax(47%, 1fr));
    gap: 1rem;
  }
}

/* .help-search-container {
  height: 500px;
} */

/* @media screen and (min-width: 448px) and (max-width: 768px) {
  .help-search-container {
    height: 440px;
  }
} */

/* @media screen and (max-width: 448px) {
  .help-search-container {
    height: 460px;
  }
} */

@media screen and (min-width: 1024px) {
  .help-breadcumb-back-btn {
    display: none;
  }
}

.popular-topics-container {
  overflow: hidden;
}

.popular-topics-card-container {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  overflow: scroll;
}

.popular-topics-card-container::-webkit-scrollbar {
  display: none;
}

.popular-topics-card {
  background: var(--white);
  padding: 1rem;
  min-width: 142px;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

@media screen and (min-width: 768px) {
  .popular-topics-card {
    min-width: 200px;
    padding: 1.5rem;
  }
  .help-topics-img {
    width: 40px;
    height: 40px;
  }
}

@media screen and (min-width: 1200px) {
  .popular-topics-card {
    width: 100%;
  }
}

.sac-section-container {
  padding: 2.5rem;
  border-radius: 24px;
  background: linear-gradient(225deg, #20809a 24.55%, #2b3b44 95.75%);
}

.sac-section {
  color: var(--white);
  background: var(--main-color);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.875rem;
}

@media screen and (max-width: 768px) {
  .sac-section-container {
    padding: 2.5rem 1.5rem;
  }
}

@media screen and (min-width: 1200px) {
  .sac-section {
    width: 100%;
  }
}

#webchat-container {
  display: none;
}
.webchat-content {
  position: fixed;
  bottom: 1rem;
  right: 8rem;
  z-index: 10000;
  overflow-y: auto;
}
.web-chat-iframe {
  width: 430px;
  height: 611px;
}
.web-chat-label {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  width: 67px;
  height: 67px;
  position: fixed;
  right: 2.5rem;
  bottom: 2.5rem;
  box-shadow: 0px 4px 24px 0px #00000033;
  background: linear-gradient(164.29deg, #e64408 10.98%, #fe6c35 79.5%);
  z-index: 10000;
}
@media screen and (max-width: 768px) {
  .webchat-content {
    top: 0;
    left: 0;
    right: 0;
  }
  .web-chat-iframe {
    width: 100%;
    height: 100%;
  }
  .web-chat-label {
    display: none;
  }
}
.webchat-close-btn {
  position: absolute;
  top: 3.5rem;
  right: 1rem;
  display: none;
}
body.no-scroll {
  overflow: hidden;
}
.js-hidden {
  display: none;
}
.reclame-aqui-section-title {
  line-height: 56px;
}
.reclame-aqui-section-content {
  line-height: 36px;
}
#reclame-aqui-section.initial {
  margin-top: 0 !important;
  opacity: 0;
  height: 0;
}
#reclame-aqui-section.visible {
  margin-top: 5rem;
  opacity: 1;
  transition: opacity 1s ease-in-out;
  height: auto;
}
.lp-alert {
  background: #f0d160;
  width: 100%;
}

.feirao-creditor--container {
  border-radius: 40px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}

.feirao-creditor--left {
  background: linear-gradient(270deg, #ff964f 48.37%, #f66400 74.98%);
  border-radius: 40px;
}

.feirao-creditor--content {
  background: #fff;
  padding: 24px;
  border-radius: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feirao-creditor--content button {
  max-width: 264px;
  margin: 2rem auto 0;
}

.feirao-creditor--image img {
  max-width: 500px;
  position: absolute;
}

@media screen and (max-width: 450px) {
  .feirao-creditor--image {
    height: 200px !important;
  }
  .feirao-creditor--image img {
    max-width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .feirao-creditor--image {
    height: 330px;
  }

  .feirao-creditor--image img {
    bottom: -3rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
}

@media screen and (min-width: 1024px) {
  .feirao-creditor--container {
    background: linear-gradient(270deg, #ff964f 48.37%, #f76400 74.98%);
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
  }

  .feirao-creditor--left {
    background: none;
  }

  .feirao-creditor--content {
    padding: 32px;
    width: 50%;
    justify-content: start;
  }

  .feirao-creditor--content button {
    max-width: auto;
    margin: 2rem 0 0;
  }

  .feirao-creditor--content h2 {
    font-size: 1.5rem;
  }

  .feirao-creditor--image img {
    max-width: 618px;
    bottom: 0;
    right: 0;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .feirao-creditor--image img {
    max-width: 500px;
  }
}

.email-success-modal {
  max-width: 517px;
  border-radius: 1rem;
  background: #fff;
  padding: 2.5rem;
  text-align: center;
}
.email-success-modal::backdrop {
  background: rgba(0, 0, 0, 0.4);
}
.email-success-modal--button {
  font-size: 1rem;
  color: #545454;
  font-weight: 700;
  border-radius: 8px;
  border: 1.504px solid #545454;
  box-shadow: 4px 7px 16px 0px rgba(34, 71, 82, 0.1);
  margin-top: 2rem;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  dialog {
    top: auto;
    bottom: 0;
    left: 0;
    transform: none;
    border-radius: 8px 8px 0 0;
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
  .email-success-modal {
    max-width: 100%;
    border-radius: 1rem 1rem 0 0;
    padding: 2.5rem;
  }
}

.download-app-section--container {
  background: var(--main-color);
  border-radius: 1.5rem;
}

.download-app-buttons {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 1rem;
}

.download-app-section-image {
  position: absolute;
  padding: 0 1rem;
}

.download-app-section-mobile-img::before {
  content: "";
  border-radius: 326px;
  background: radial-gradient(
    45.12% 45.12% at 50% 50%,
    rgba(240, 90, 34, 0.8) 0%,
    rgba(240, 90, 34, 0) 100%
  );
  background-blend-mode: multiply;
  width: 326px;
  height: 314.454px;
  display: block;
  position: absolute;
  z-index: -1;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1024px) {
  .download-app-section---ellipse {
    width: 400px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    mix-blend-mode: overlay;
  }
}

@media screen and (min-width: 1024px) {
  .download-app-section--container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .download-app-section-image {
    width: 290px;
    bottom: 0;
    right: 0;
  }
  .download-app-section-image img {
    position: relative;
    z-index: 1;
  }
}

@media screen and (min-width: 1100px) {
  .download-app-buttons {
    flex-direction: row;
    align-items: center;
  }
}

.ezze-info-container {
  color: #ffff;
  background: #545454;
  border-radius: 24px;
  min-height: 177px;
}

.ezze-info-container a {
  color: #ffff !important;
  text-decoration: underline !important;
}

.impactful-number--field {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #1495ff 14.41%, #1065ab 100%);
}

@media screen and (min-width: 768px) {
  .impactful-number--field {
    width: 350px
  }
  .impactful-numbers--description  {
    width: 25%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .impactful-number--field {
    gap: 0.5rem;
    padding: 16px;
  }
}

.insurance-hero {
  background: linear-gradient(180deg, #1065ab 14.41%, #1495ff 100%),
    linear-gradient(180deg, #1495ff 14.41%, #7fb8e6 100%),
    linear-gradient(180deg, #f05a22 14.41%, #ffa280 100%);
  color: #fff;
  padding: 5.5rem 1rem 0 1rem;
}

.insurance-benefits-container {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.1) 100%
    ),
    #fff;
  box-shadow: 4px 4px 56px 0px rgba(0, 0, 0, 0.06);
  padding: 56px 40px;
}

.insurance-benefits {
  border-radius: 24px;
  border: 4px solid #006bc3;
}

.insurance-benefits-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 32px;
}

@media screen and (max-width: 1024px) {
  .insurance-benefits-cards-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    gap: 16px;
    padding: 32px;
  }
}

.insurance-benefits-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #8ebfe6;
  box-shadow: 4px 4px 56px 0px rgba(20, 149, 255, 0);
}

.insurance-benefits-card-icon {
  border-radius: 8px;
  background: #e4f3ff;
  display: flex;
  align-content: center;
  padding: 8px;
  width: 40px;
  height: 40px;
}

.insurance-benefits--values {
  background: #006bc3;
  border-radius: 20px;
  margin-bottom: -1px;
  padding: 30px;
  color: #ffff;
  text-align: center;
  width: 100%;
}

.insurance-hero-btn {
  padding: 0 1.5rem;
  border-radius: 8px;
  height: 3.25rem;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  color: var(--color);
  border: 1px solid var(--color);
}

.insurance-benefits-wrapper {
  background: linear-gradient(180deg, #1495ff 0%, #fff 95.05%),
    linear-gradient(180deg, #ffa280 0%, #fff 95.05%);
}

.insurance-page-contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  border-radius: 80px;
  background: #2fbf52;
  box-shadow: 4px 7px 16px 0px rgba(34, 71, 82, 0.1);
  color: #fff;
  font-weight: 700;
  height: 52px;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.insurance-page-contact-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 768px) {
  .insurance-page-contact-btn {
    display: none;
  }
}
.lazy-loading {
  display: none;
}
