@charset "UTF-8";
* {
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: auto;
  margin: 0;
  padding: 0;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
ul,
li {
  margin: 0;
  padding: 0;
}

section {
  font-family: "Raleway", sans-serif;
  padding-inline: 52px;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 1000px) {
  section {
    padding-top: 56px;
    padding-bottom: 56px;
    padding-inline: 16px;
  }
}

.container {
  max-width: 1254px;
  width: 100%;
}

header {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: 1;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  top: 16px;
}
header a {
  color: #ffffff;
}
header .container {
  display: flex;
  justify-content: space-between;
  margin-inline: 52px;
  gap: 56px;
}
@media (min-width: 1000px) and (max-width: 1280px) {
  header .container {
    gap: 10px;
  }
  header .container img {
    max-width: 90%;
  }
}
@media (max-width: 1000px) {
  header .container {
    margin-inline: 0;
  }
  header .container.desk-header {
    display: none;
  }
}
header .container.mobile-header {
  display: none;
}
@media (max-width: 1000px) {
  header .container.mobile-header {
    display: flex;
    justify-content: space-between;
    padding-inline: 16px;
  }
  header .container.mobile-header .menu-wrapper {
    display: flex;
    justify-content: end;
  }
}
header .container > div {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
header .container > div:first-child {
  max-width: 645px;
}
header .container > div:first-child ul {
  display: flex;
  width: 100%;
  max-width: 360px;
  justify-content: space-between;
}
@media (min-width: 1000px) and (max-width: 1280px) {
  header .container > div:first-child ul {
    font-size: 14px;
    justify-content: flex-start;
    gap: 16px;
  }
}
header .container > div:first-child ul li {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
  padding-block: 16px;
}
header .container > div:first-child ul a {
  text-decoration: none;
  transition: all 0.3s;
}
header .container > div:first-child ul a:hover {
  text-decoration: underline;
}
header .container > div:last-child {
  max-width: 529px;
}
header .container > div:last-child a {
  text-transform: uppercase;
  transition: all 0.3s;
}
header .container > div:last-child a:hover {
  font-weight: 500;
}
@media (min-width: 1000px) and (max-width: 1280px) {
  header .container > div:last-child a {
    font-size: 14px;
  }
}
header .container > div:last-child .contact {
  border: 0.5px solid #ffffff;
  border-radius: 4px;
  padding: 11px 19px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
}
@media (min-width: 1000px) and (max-width: 1280px) {
  header .container > div:last-child .contact {
    padding: 9px 17px;
  }
}
header .container > div:last-child .contact img {
  width: 26px;
  height: 26px;
}
header .container > div:last-child .contact:hover {
  background: #233154;
}
header .container > div:last-child button {
  background: #80b92b;
  transition: all 0.2s;
  border-radius: 4px;
  padding: 10px 30px;
  border: none;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 16px;
  height: 48px;
}
header .container > div:last-child button:hover {
  background: #6a9924;
}

.header-mobile {
  transition: all 0.3s;
  background: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  position: fixed;
  z-index: 1000;
  padding: 18px 20px;
}
@media (min-width: 1100px) {
  .header-mobile {
    display: none;
  }
}
.header-mobile .img-close {
  position: absolute;
  right: 18px;
  cursor: pointer;
}
.header-mobile .container-mobile {
  margin-top: 50px;
}
.header-mobile .accordion-item {
  border-bottom: 1px solid #f4f4f4;
}
.header-mobile .accordion-item-header {
  background: #fff;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 44px;
  letter-spacing: 0.1px;
  color: #233154;
}
.header-mobile .accordion-item-body-content {
  padding: 0px;
}
.header-mobile .accordion-item-body {
  background: #fff;
  overflow: hidden;
  transition: 0.3s;
  max-height: 0;
}
.header-mobile .accordion-item-body a {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 44px;
  /* identical to box height, or 272% */
  letter-spacing: 0.1px;
  /* blue/233154 */
  color: #233154;
  margin-left: 20px;
  text-decoration: none;
}
.header-mobile .itemArrow {
  position: relative;
}
.header-mobile .itemArrow::after {
  content: url(../../assets/header/CaretDownMobile.svg);
  position: absolute;
  right: 0px;
  transition: 0.3s;
}
.header-mobile .itemArrow.active::after {
  transform: rotate(180deg);
}
.header-mobile .container-links {
  display: flex;
  flex-direction: column;
}
.header-mobile .container-links a {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 44px;
  /* identical to box height, or 272% */
  letter-spacing: 0.1px;
  /* blue/233154 */
  color: #233154;
  text-decoration: none;
  border-bottom: 1px solid #f4f4f4;
  margin-top: 20px;
}
.header-mobile .container-links .solicitarContato {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1px;
  /* white */
  color: #ffffff;
  height: 48px;
  background: #076ea0;
  /* shadow/header e cta */
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  border: none;
  margin-bottom: 15px;
}
.header-mobile .container-links .area-cliente {
  margin-top: 55px;
  color: #076ea0;
  border: 0.5px solid #076ea0;
  box-sizing: border-box;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.07);
  border-radius: 2px;
  text-align: center;
  display: block;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mobile .container-links .area-cliente img {
  margin-right: 8px;
}
.header-mobile .container-links .contato-link {
  color: #233154;
  text-align: center;
  border-bottom: 1px solid var(--blue-dark);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 0px;
  line-height: 20px;
  margin-bottom: 15px;
}

#dpo-paterns-popup,
#dpo-course-popup {
  position: fixed;
  width: auto;
  display: none;
  flex-direction: column;
  background-color: #ffffff;
  padding: 16px;
  border-radius: 6px;
  gap: 12px;
  top: 60px;
  opacity: 0;
  transition: all 0.3s;
}
#dpo-paterns-popup li,
#dpo-course-popup li {
  padding-block: 8px;
}
#dpo-paterns-popup a,
#dpo-course-popup a {
  color: #233154;
  font-weight: bold;
  text-decoration: none;
  pointer-events: none;
}
#dpo-paterns-popup a:hover,
#dpo-course-popup a:hover {
  text-decoration: underline;
}

#dpo-paterns:hover #dpo-paterns-popup {
  display: flex !important;
  opacity: 1;
  display: flex;
}
#dpo-paterns:hover #dpo-paterns-popup a {
  pointer-events: all;
}

#dpo-course:hover #dpo-course-popup {
  opacity: 1;
  display: flex;
}
#dpo-course:hover #dpo-course-popup a {
  pointer-events: all;
}

.hero {
  flex-direction: column;
  align-items: center;
  background: linear-gradient(273.97deg, #076ea0 -40.91%, #233154 68.54%);
  color: #ffffff;
  padding-top: 160px;
  position: relative;
  overflow: hidden;
  /*     .banner::before {
        position: absolute;
        background-color: #ffffff;
        height: 50%;
        width: 100%;
        bottom: 0;
        content: "";
    } */
}
@media (max-width: 1000px) {
  .hero {
    padding-top: 115px;
  }
}
.hero .container {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 1000px) {
  .hero .container {
    flex-direction: column;
  }
}
.hero .container .hero-texts {
  width: 100%;
}
@media (max-width: 1000px) {
  .hero .container .hero-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.hero .container .hero-texts .titles {
  display: flex;
  flex-direction: column-reverse;
  gap: 24px;
  max-width: 592px;
  align-self: flex-start;
}
.hero .container .hero-texts .titles h1 {
  font-weight: 400;
  font-size: 40px;
  line-height: 56px;
}
.hero .container .hero-texts .titles h1 span {
  font-weight: 700;
  background-color: #076ea0;
}
.hero .container .hero-texts .titles h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.1px;
  background: rgba(41, 127, 185, 0.21);
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 12px;
}
.hero .container .hero-texts button {
  padding: 20px 32px;
  background: #80b92b;
  transition: all 0.2s;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  margin: 42px 0 72px;
  border: none;
}
.hero .container .hero-texts button a {
  all: unset;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .hero .container .hero-texts button {
    margin: 32px 0;
  }
}
.hero .container .hero-texts button:hover {
  background: #6a9924;
}
.hero .container .hero-texts .hero-bullets {
  display: flex;
  gap: 16px;
  width: 100%;
}
@media (max-width: 1000px) {
  .hero .container .hero-texts .hero-bullets {
    flex-direction: column;
  }
}
.hero .container .hero-texts .hero-bullets ul {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero .container .hero-texts .hero-bullets li {
  list-style: none;
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 8px;
}
@media (max-width: 1000px) {
  .hero .container .hero-texts .hero-bullets li {
    align-items: flex-start;
  }
}
.hero .container .hero-imgs-wrapper {
  position: absolute;
  width: 100%;
  max-width: 1254px;
  top: 60px;
}
.hero .container .hero-imgs-wrapper img {
  position: absolute;
  margin-right: -50px;
  right: 0;
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .hero .container .hero-imgs-wrapper img {
    width: 45%;
  }
}
@media (max-width: 1000px) {
  .hero .container .hero-imgs-wrapper {
    position: relative;
    top: 0;
    right: auto;
    display: flex;
    justify-content: flex-end;
  }
  .hero .container .hero-imgs-wrapper img {
    position: relative;
    margin-right: -16px;
    margin-top: -32px;
    margin-bottom: -4px;
  }
}
.hero .banner {
  position: relative;
  margin-top: 85px;
  padding: 56px 40px;
  background: #ffffff;
  box-shadow: 0px 4px 10px rgba(18, 86, 130, 0.08);
  border-radius: 6px;
  max-width: 1254px;
  width: 100%;
}
@media (max-width: 1000px) {
  .hero .banner {
    margin-top: auto;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .hero .banner img {
    width: 10%;
  }
}
.hero .banner h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #233154;
  margin-bottom: 23px;
  text-align: center;
}
.hero .banner h3 strong {
  background: rgba(41, 127, 185, 0.15);
}
.hero .banner .companies {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .hero .banner .companies {
    flex-wrap: wrap;
  }
}

.hero::before {
  background-color: #ffffff;
  bottom: 0;
  position: absolute;
  height: 110px;
  width: 100%;
  content: "";
}
@media (max-width: 500px) {
  .hero::before {
    height: 200px;
  }
}

.personalized-solution {
  padding-block: 65px 112px;
}
@media (max-width: 1000px) {
  .personalized-solution {
    padding-block: 40px 56px;
  }
}
.personalized-solution .container .content {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1000px) {
  .personalized-solution .container .content {
    flex-direction: column;
  }
}
.personalized-solution .container .content .texts {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1 0 0%;
}
@media (max-width: 1000px) {
  .personalized-solution .container .content .texts {
    align-items: center;
  }
}
.personalized-solution .container .content .carousel {
  width: 100%;
  display: block;
}
.personalized-solution .container .content .carousel .img-wrapper {
  display: flex;
  justify-content: center;
}
@media (min-width: 1000px) {
  .personalized-solution .container .content .carousel {
    flex: 0 0 45%;
    max-width: 45%;
  }
}
.personalized-solution .container .content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.personalized-solution .container .content ul li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #233154;
}
.personalized-solution .container .content button {
  max-width: 340px;
}
.personalized-solution .container .numbers {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 49px;
  gap: 22px;
}
@media (max-width: 1000px) {
  .personalized-solution .container .numbers {
    flex-direction: column;
    gap: 16px;
  }
}
.personalized-solution .container .numbers .number-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(41, 127, 185, 0.15);
  border-radius: 4px;
  padding: 16px 12px;
  width: 100%;
}
@media (max-width: 1000px) {
  .personalized-solution .container .numbers .number-card {
    padding-block: 24px;
  }
}
.personalized-solution .container .numbers .number-card .number {
  font-weight: 600;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 0.0762173px;
  color: #076ea0;
}
.personalized-solution .container .numbers .number-card .legend {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 17px;
  text-align: center;
  color: #233154;
}

@media (max-width: 1000px) {
  .swiper {
    margin-top: 32px;
  }
}
.swiper .swiper-wrapper img {
  max-width: 100%;
  height: auto;
}
.swiper .swiper-pagination {
  margin-top: 10px;
  position: relative;
  left: 44%;
  transform: translateX(-50%);
}
@media (max-width: 1000px) {
  .swiper .swiper-pagination {
    left: 50%;
  }
}

.social-proof {
  background: rgba(41, 127, 185, 0.05);
  overflow: hidden;
  /*   .swiper-slide {
    width: 746px !important;
    @media (max-width: 1000px) {
      width: 100% !important;
    }
  } */
}
.social-proof .container {
  padding-block: 112px 96px;
}
@media (max-width: 1000px) {
  .social-proof .container {
    padding-block: 0;
  }
}
.social-proof .container .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 1000px) {
  .social-proof .container .title-wrapper {
    text-align: center;
  }
}
.social-proof .container .feedback-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #ffffff;
  padding: 50px 20px;
  height: 100%;
}
@media (max-width: 1000px) {
  .social-proof .container .feedback-card {
    flex-direction: column-reverse;
    width: 100%;
    height: 100%;
    padding: 32px 16px;
    align-items: flex-start;
    gap: 20px;
    justify-content: center;
  }
}
.social-proof .container .feedback-card .imgs {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1000px) {
  .social-proof .container .feedback-card .imgs {
    flex-direction: row;
    align-items: center;
  }
  .social-proof .container .feedback-card .imgs div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .social-proof .container .feedback-card .imgs > picture img {
    width: 96px;
    height: 96px;
    max-width: none;
  }
}
.social-proof .container .feedback-card .feedback-text {
  display: flex;
  gap: 20px;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  color: #233154;
  max-width: 496px;
}
@media (max-width: 1000px) {
  .social-proof .container .feedback-card .feedback-text {
    max-width: 100%;
  }
}
.social-proof .container .feedback-card .feedback-text div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.social-proof .container .feedback-card .feedback-text .text {
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
}
.social-proof .container .feedback-card .feedback-text p {
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.011em;
  color: #233154;
}
.social-proof .container .feedback-card .author,
.social-proof .container .feedback-card .company {
  color: #233154;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.011em;
}
@media (max-width: 1000px) {
  .social-proof .container .feedback-card .author,
  .social-proof .container .feedback-card .company {
    font-size: 16px;
  }
}
@media (max-width: 1000px) {
  .social-proof .container .feedback-card .company.desk,
  .social-proof .container .feedback-card .author.desk {
    display: none;
  }
}
@media (min-width: 1000px) {
  .social-proof .container .feedback-card .author.mobile {
    display: none;
  }
}
.social-proof .container .navigation-buttons-wrapper {
  position: relative;
  margin-top: 40px;
  width: 108px;
  margin-inline: auto;
  height: 42px;
}
@media (max-width: 1000px) {
  .social-proof .swiper-wrapper {
    height: 625px;
  }
}
.social-proof .swiper-button-next:after {
  content: url(../assets/icons/right-arrow.webp);
}
.social-proof .swiper-button-prev:after {
  content: url(../assets/icons/left-arrow.webp);
  margin-bottom: -2px;
}
.social-proof .swiper-social-proof {
  overflow: visible;
}
.social-proof .swiper-social-proof .swiper-slide {
  height: auto;
}

.title_segmento {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.1px;
  color: #233154;
  text-align: center;
  margin-bottom: 32px;
}

.segmento-negocios {
  background: linear-gradient(0deg, rgba(41, 127, 185, 0.05), rgba(41, 127, 185, 0.05)), #ffffff;
  padding: 80px 52px 112px 52px;
}
.segmento-negocios .selecioneSegmento {
  text-align: left;
}
.segmento-negocios .container_select {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21.5px;
}
.segmento-negocios select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  outline: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  text-align: center;
  text-align: -webkit-center;
  height: 55px;
  position: relative;
  width: 322px;
}
.segmento-negocios select option {
  font-family: "Raleway";
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  width: 293px;
  height: 41px;
  color: #233154;
  text-align: center;
  text-align: -webkit-center;
}
.segmento-negocios select::-ms-expand {
  display: none;
}
.segmento-negocios .select {
  width: 319px;
  height: 56px;
  display: flex;
  align-items: center;
  border-radius: 0.25em;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1.1;
  background-color: #076ea0;
  color: #fff;
  position: relative;
}
.segmento-negocios .select::after {
  content: url("../assets/segmento/arrow_select.svg");
  width: 0.8em;
  height: 0.5em;
  position: absolute;
  right: 10px;
  top: 14px;
}
.segmento-negocios .content {
  display: flex;
  margin: 56px 0;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.segmento-negocios .content ul {
  list-style: none;
}
.segmento-negocios .content .content_forItem li {
  color: #233154;
  align-items: flex-start;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.segmento-negocios .content_forItem {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 609px;
}
.segmento-negocios .content_forItem p {
  font-style: normal;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.011em;
  color: #233154;
}
.segmento-negocios .content_forItem p strong {
  font-weight: 700;
}
.segmento-negocios .content_forItem li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.segmento-negocios .content_forItem li + li {
  margin-top: 10px;
}
.segmento-negocios .card_price {
  width: 35%;
  padding: 32px 24px;
  /* blue/297FB9 • 15% */
  background: rgba(41, 127, 185, 0.15);
  border: 2px solid rgba(41, 127, 185, 0.15);
}
.segmento-negocios .card_price h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #233154;
  margin-bottom: 32px;
}
.segmento-negocios .card_price .titleCard {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  text-align: center;
  color: #233154;
  width: 100%;
  justify-content: center;
}
.segmento-negocios .card_price .selectCard {
  width: 270px;
  height: 40px;
  background: rgba(41, 127, 185, 0.15);
  border: 1px solid rgba(41, 127, 185, 0.15);
  border-radius: 6px;
  margin: 0 auto;
  display: flex;
  margin-bottom: 32px;
  padding: 0;
  font-weight: 600;
  position: relative;
}
.segmento-negocios .card_price .selectCard select {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #233154;
  height: auto;
}
.segmento-negocios .card_price .selectCard::after {
  content: url("../assets/segmento/arrow-select-blue.svg");
  position: absolute;
  width: 6.78px;
  height: 11.84px;
  top: 6px;
  right: 36px;
}
.segmento-negocios .card_price .priceCard {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  /* identical to box height, or 43% */
  color: #233154;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.segmento-negocios .card_price .priceCard span {
  font-size: 20px;
}
.segmento-negocios .card_price .none {
  display: none;
}
.segmento-negocios .card_price .btn-segmento {
  width: 100%;
  height: 64px;
  background: #80b92b;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  margin: 32px 0;
}
.segmento-negocios .card_price .btn-segmento.none {
  display: none;
}
.segmento-negocios .card_price li {
  padding: 8px 0;
  border-top: 1px solid rgba(41, 127, 185, 0.15);
  gap: 8px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: flex-start;
  color: #233154;
}
.segmento-negocios h3 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.011em;
  color: #233154;
  text-align: center;
}

@media (max-width: 1210px) {
  .segmento-negocios .content_forItem {
    max-width: 500px;
  }
}
@media (max-width: 1100px) {
  .segmento-negocios .content {
    flex-direction: column-reverse;
    gap: 56px;
  }
  .segmento-negocios .content_forItem,
  .segmento-negocios .card_price {
    max-width: 100%;
    width: 100%;
  }
  .segmento-negocios .card_price h2 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .segmento-negocios {
    padding: 56px 16px;
  }
  .segmento-negocios h3 {
    text-align: left;
  }
  .segmento-negocios .card_price h2 {
    text-align: center;
    justify-content: center;
  }
  .container_select img {
    display: none;
  }
  .title_segmento {
    font-size: 28px;
  }
}
.why-dponet {
  padding-top: 112px;
  padding-bottom: 112px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .why-dponet {
    padding-top: 48px;
    padding-bottom: 56px;
  }
}
.why-dponet .water-mark {
  position: absolute;
  right: 0;
  top: 0;
  margin-right: -130px;
  margin-top: -40px;
}
.why-dponet .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 52px;
}
@media (max-width: 1000px) {
  .why-dponet .container {
    gap: 40px;
  }
}
.why-dponet .container .content {
  display: flex;
  color: #233154;
}
@media (max-width: 1220px) {
  .why-dponet .container .content {
    flex-direction: column;
    gap: 40px;
  }
}
.why-dponet .container .content .col {
  width: 100%;
}
.why-dponet .container .content h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 24px;
}
.why-dponet .container .content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.why-dponet .container .content ul li {
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding-block: 5px;
  color: #233154;
}
@media (max-width: 1000px) {
  .why-dponet .container .content ul li {
    align-items: flex-start;
  }
  .why-dponet .container .content ul li span {
    margin-top: -2px;
  }
}
.why-dponet .container .content ul li:nth-child(odd) {
  background: rgba(41, 127, 185, 0.05);
}

.how-works {
  padding-block: 112px;
}
@media (max-width: 1000px) {
  .how-works {
    padding-block: 56px;
  }
}
.how-works .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.how-works .container .title-wrapper {
  text-align: center;
}
.how-works .container .title-wrapper h2 {
  max-width: 900px;
}
.how-works .container .video-thumb-wrapper {
  position: relative;
  margin-top: 40px;
}
.how-works .container .video-thumb-wrapper .play-button {
  position: absolute;
  top: 40%;
  left: 48%;
}
@media (max-width: 1000px) {
  .how-works .container .video-thumb-wrapper .play-button {
    left: 45%;
  }
}
.how-works .container .tab-fold {
  margin-top: 80px;
  width: 100%;
}
.how-works .container .tab-fold .menu-tab-wrapper {
  width: 100%;
  overflow-x: auto;
}
.how-works .container .tab-fold .menu-tab {
  display: flex;
  justify-content: center;
}
@media (max-width: 1000px) {
  .how-works .container .tab-fold .menu-tab {
    justify-content: flex-start;
  }
}
.how-works .container .tab-fold .menu-tab .tab {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  border-bottom: 2px solid rgba(41, 127, 185, 0.15);
  padding-bottom: 21.6px;
  padding-inline: 20px;
  gap: 12px;
  cursor: pointer;
}
.how-works .container .tab-fold .menu-tab .tab span {
  font-weight: 700;
  font-size: 20px;
  line-height: 19px;
  letter-spacing: 0.1px;
  color: #233154;
}
.how-works .container .tab-fold .menu-tab .tab.active,
.how-works .container .tab-fold .menu-tab .tab.active:hover {
  border-bottom: 2px solid #80b92b;
}
.how-works .container .tab-fold .menu-tab .tab:hover {
  border-bottom: 2px solid #ddd;
}
.how-works .container .tab-fold .tab-content::before {
  background: rgba(41, 127, 185, 0.15);
  width: 324px;
  height: 333px;
  content: "";
  position: absolute;
  right: 0;
  z-index: -1;
}
@media (max-width: 1000px) {
  .how-works .container .tab-fold .tab-content::before {
    bottom: 0;
    width: 80%;
    height: 35%;
  }
}
.how-works .container .tab-fold .tab-content {
  z-index: 1;
  position: relative;
  width: 100%;
  background: linear-gradient(273.97deg, #076ea0 -40.91%, #233154 68.54%);
  mix-blend-mode: normal;
  border: 1px solid rgba(41, 127, 185, 0.15);
  border-radius: 4px;
  color: #ffffff;
  padding: 50px 48px;
  display: none;
  align-items: center;
  margin-top: 30px;
  animation: fadeEffect 1.5s;
}
@media (max-width: 1000px) {
  .how-works .container .tab-fold .tab-content {
    flex-direction: column;
    width: 100%;
    padding-inline: 16px;
  }
  .how-works .container .tab-fold .tab-content div:last-child {
    width: 100%;
    height: 100%;
    margin-top: 80px;
  }
  .how-works .container .tab-fold .tab-content div:last-child img {
    width: 100%;
    height: 100%;
  }
}
.how-works .container .tab-fold .tab-content div:first-child {
  max-width: 545px;
}
.how-works .container .tab-fold .tab-content div:first-child h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.1px;
  max-width: 545px;
  margin-bottom: 25px;
}
@media (max-width: 1000px) {
  .how-works .container .tab-fold .tab-content div:first-child h3 {
    margin-bottom: 25px;
  }
}
.how-works .container .tab-fold .tab-content div:first-child span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1px;
}
.how-works .container .tab-fold .tab-content div:first-child ul {
  margin-top: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1000px) {
  .how-works .container .tab-fold .tab-content div:first-child ul {
    margin-top: 16px;
  }
}
.how-works .container .tab-fold .tab-content div:first-child ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.how-works .container .tab-fold .tab-content div:first-child ul li span {
  margin-top: -2px;
  font-weight: 300;
}
@media (max-width: 1000px) {
  .how-works .container .tab-fold .tab-content div:first-child ul li span {
    font-size: 16px;
    line-height: 24px;
  }
}
.how-works .container .tab-fold .tab-content div:first-child button {
  margin-top: 25px;
}
@media (max-width: 1000px) {
  .how-works .container .tab-fold .tab-content div:first-child button {
    width: 100%;
    max-width: 326px;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .how-works .container .tab-fold .tab-content div:last-child {
    width: 70%;
  }
  .how-works .container .tab-fold .tab-content div:last-child img {
    width: 100%;
  }
}
.how-works .container .tab-fold .tab-content.active {
  display: flex;
}

@keyframes fadeEffect {
  from {
    opacity: 0.8;
    color: #233154;
  }
  to {
    opacity: 1;
  }
}
.full-solution {
  padding-bottom: 112px;
}
@media (max-width: 1000px) {
  .full-solution {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
.full-solution .container .title-wrapper {
  text-align: center;
}
.full-solution .container .title-wrapper h2 {
  max-width: 800px;
}
.full-solution .container .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 1000px) {
  .full-solution .container .cards {
    gap: 20px;
  }
}
.full-solution .container .cards .card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  max-width: 48%;
  background: rgba(41, 127, 185, 0.15);
  mix-blend-mode: normal;
  border: 1px solid rgba(41, 127, 185, 0.15);
  border-radius: 4px;
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .full-solution .container .cards .card {
    max-width: 47%;
  }
}
@media (max-width: 1000px) {
  .full-solution .container .cards .card {
    padding: 32px 16px;
    max-width: 100%;
  }
}
.full-solution .container .cards .card div {
  width: 60px;
  height: 60px;
  background-color: rgba(30, 144, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.full-solution .container .cards .card h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 0.1px;
  color: #233154;
  margin-bottom: 8px;
}
.full-solution .container .cards .card span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: #233154;
}

.faq {
  padding-top: 112px;
  padding-bottom: 150px;
  background: #ffffff;
}
@media (max-width: 1000px) {
  .faq {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
.faq p span {
  display: flex;
}

.faq__content {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  margin-top: 56px;
}
@media (max-width: 1000px) {
  .faq__content {
    flex-direction: column;
    gap: 40px;
  }
}
.faq__content > div {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 47%;
}
@media (max-width: 1000px) {
  .faq__content > div {
    max-width: 100%;
  }
}
.faq__content .accordion {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}
@media (max-width: 1000px) {
  .faq__content .accordion {
    max-width: 342px;
  }
}
.faq__content .accordion p {
  width: 100%;
}
.faq__content .accordion .accordion-item {
  border-bottom: none;
  width: 100%;
}
.faq__content .accordion .accordion-item .accordion-item-header {
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
  color: #233154;
  cursor: pointer;
  padding: 1.5rem 3rem 1.5rem 1.5rem;
}
.faq__content .accordion .accordion-item .accordion-item-header .plus {
  position: absolute;
  right: -15px;
  background: #f4f4f4;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.12);
}
.faq__content .accordion .accordion-item .accordion-item-header .plus::after {
  transition: 0.3s;
  content: "";
  width: 12px;
  height: 3px;
  background-color: #233154;
  left: 50%;
  bottom: 37.67%;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 10px;
}
.faq__content .accordion .accordion-item .accordion-item-header .plus::before {
  transition: 0.3s;
  content: "";
  width: 12px;
  height: 3px;
  background-color: #233154;
  left: 30%;
  bottom: 42%;
  transform: translate(-50%, -50%);
  transform: rotate(90deg);
  position: absolute;
  border-radius: 10px;
}
.faq__content .accordion .accordion-item .active .plus::before {
  left: 30%;
  bottom: 42%;
  transform: rotate(0deg);
}
.faq__content .accordion .accordion-item .accordion-item-body {
  overflow: hidden;
  transition: 0.3s;
  max-height: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #666666;
}
.faq__content .accordion .accordion-item .accordion-item-body-content {
  padding: 0 3rem 1.5rem 1.5rem;
}

.get-out {
  background-color: #233154;
  padding-block: 80px;
  position: relative;
  height: 436px;
}
@media (max-width: 1000px) {
  .get-out {
    padding-block: 40px 176px;
    height: auto;
  }
}
.get-out .bg-img {
  position: absolute;
  left: 0;
  top: 0;
}
.get-out .bg-img img {
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}
@media (max-width: 1000px) {
  .get-out .bg-img {
    top: auto;
    bottom: 0;
    width: 100%;
  }
  .get-out .bg-img img {
    -webkit-mask-image: none;
            mask-image: none;
    opacity: 0.1;
    margin-bottom: -4px;
    width: 100%;
  }
}
.get-out .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  z-index: 1;
}
.get-out .container h2 {
  color: #ffffff;
  max-width: 782px;
  text-align: center;
  font-weight: 600;
}
.get-out .container ul {
  color: #ffffff;
  list-style: none;
  display: flex;
  gap: 32px;
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .get-out .container ul {
    gap: 16px;
    font-size: 14px;
  }
}
@media (max-width: 1000px) {
  .get-out .container ul {
    flex-direction: column;
    align-self: flex-start;
  }
}
.get-out .container ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 24px;
}

.news {
  padding-block: 56px;
  overflow: hidden;
}
@media (min-width: 1000px) {
  .news {
    padding-block: 112px;
  }
}
.news .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.news .container h2 {
  text-align: center;
  order: 0;
}
.news .container .swiper-news {
  width: 100%;
  order: 1;
}
.news .container .swiper-news .card {
  position: relative;
  height: 100%;
  padding: 32px;
  background: rgba(41, 127, 185, 0.15);
  border: 1px solid rgba(41, 127, 185, 0.15);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 16px;
  transition: 0.3s;
}
@media (min-width: 1000px) {
  .news .container .swiper-news .card {
    gap: 24px;
  }
}
.news .container .swiper-news .card p {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1px;
  color: #233154;
}
@media (min-width: 480px) {
  .news .container .swiper-news .card p {
    font-size: 24px;
  }
}
.news .container .swiper-news .card a {
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  color: #233154;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
@media (min-width: 480px) {
  .news .container .swiper-news .card a {
    font-size: 18px;
  }
}
.news .container .swiper-news .card a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.news .container .swiper-news .card:hover {
  background: rgba(41, 127, 185, 0.2);
  border: 1px solid rgba(41, 127, 185, 0.2);
}
.news .container .swiper-news .card:hover a {
  font-weight: 700;
}
.news .container .swiper-news .swiper-wrapper {
  height: auto;
}
.news .container .swiper-news .swiper-slide {
  height: auto;
}
.news .container .swiper-news .swiper-buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.news .container .swiper-news .swiper-buttons .swiper-prev,
.news .container .swiper-news .swiper-buttons .swiper-next {
  cursor: pointer;
}
@media (min-width: 1000px) {
  .news .container .swiper-news .swiper-wrapper {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 0fr 0fr;
    grid-template-areas: "saude exame exame" "saude startup startup";
    gap: 24px;
  }
  .news .container .swiper-news .swiper-slide {
    width: auto !important;
  }
  .news .container .swiper-news .swiper-slide:first-child {
    grid-area: saude;
  }
  .news .container .swiper-news .swiper-slide:nth-child(2) {
    grid-area: exame;
  }
  .news .container .swiper-news .swiper-slide:last-child {
    grid-area: startup;
  }
  .news .container .swiper-news .swiper-buttons {
    display: none;
  }
}
.news .container .observation {
  order: 0;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 16px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.1px;
  color: #657786;
}
.news .container .observation strong {
  padding-inline: 4px;
}
@media (min-width: 1000px) {
  .news .container .observation {
    order: 2;
  }
}

.ceo-fold {
  position: relative;
  background: #233154;
  padding: 0;
}
@media (max-width: 1000px) {
  .ceo-fold {
    background: linear-gradient(52.01deg, rgba(29, 41, 83, 0.66) 33.55%, rgba(29, 41, 83, 0.594164) 45.3%, rgba(29, 41, 83, 0) 71.39%), linear-gradient(34.46deg, rgba(29, 41, 83, 0.66) 7.03%, rgba(29, 41, 83, 0.594164) 18.2%, rgba(29, 41, 83, 0) 48.14%), url("../assets/ceoFold/ceo-mobile.webp"), #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media (max-width: 1000px) {
  .ceo-fold {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.ceo-fold .container {
  max-width: 100%;
  display: flex;
  align-items: center;
  color: #ffffff;
  justify-content: flex-start;
  gap: 2rem;
  padding: 0;
}
.ceo-fold .container .img-wrapper {
  width: auto;
  max-width: 50%;
  margin: -4rem 0;
}
@media (max-width: 1000px) {
  .ceo-fold .container .img-wrapper {
    display: none;
  }
}
.ceo-fold .container .img-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 696px;
  max-height: 655px;
}
.ceo-fold .container .content {
  width: 50%;
  max-width: 40rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1000px) {
  .ceo-fold .container .content {
    width: 56%;
    padding: 0;
  }
}
.ceo-fold .container .content img {
  width: 48px;
  height: 40px;
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  .ceo-fold .container .content img {
    width: 17px;
    height: 15px;
  }
}
.ceo-fold .container .content h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  .ceo-fold .container .content h2 {
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 11px;
  }
}
.ceo-fold .container .content span {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}
@media (max-width: 1000px) {
  .ceo-fold .container .content span {
    line-height: 18px;
  }
  .ceo-fold .container .content span:last-child {
    margin-top: 13px;
  }
}

.any-questions {
  padding-block: 64px;
  background: linear-gradient(277.15deg, #233154 34.16%, #076ea0 121.95%), #233154;
}
@media (max-width: 1000px) {
  .any-questions {
    padding-block: 56px;
  }
}
.any-questions .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .any-questions .container {
    flex-direction: column;
  }
}
@media (min-width: 1000px) and (max-width: 1280px) {
  .any-questions .container .img-wrapper {
    width: 90%;
  }
  .any-questions .container .img-wrapper img {
    width: 100%;
  }
}
.any-questions .container .content {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  max-width: 610px;
  width: 100%;
}
.any-questions .container .content h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 24px;
}
@media (max-width: 1000px) {
  .any-questions .container .content h2 {
    font-size: 32px;
    line-height: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.any-questions .container .content h3 {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 32px;
}
@media (max-width: 1000px) {
  .any-questions .container .content h3 {
    font-size: 20px;
    line-height: 24px;
  }
}
.any-questions .container .content button {
  max-width: -moz-max-content;
  max-width: max-content;
  white-space: nowrap;
  margin-bottom: 16px;
}
@media (max-width: 1000px) {
  .any-questions .container .content button {
    align-self: center;
  }
}
.any-questions .container .content span {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 1000px) {
  .any-questions .container .content span {
    text-align: center;
  }
}

footer {
  background: #233154;
  position: relative;
}
footer .wrapper {
  padding-block: 24px;
  border-bottom: 1px solid #657786;
  display: flex;
  justify-content: center;
  padding-inline: 56px;
}
@media (max-width: 1000px) {
  footer .wrapper {
    padding-inline: 0;
  }
}
footer .wrapper > div {
  max-width: 1254px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  footer .wrapper > div {
    align-items: center;
    padding-inline: 16px;
    flex-wrap: wrap;
  }
}
footer .wrapper .main-footer {
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1000px) {
  footer .wrapper .main-footer .logo {
    order: 1;
  }
}
footer .wrapper .main-footer .links {
  width: 100%;
  max-width: 599px;
  display: flex;
  justify-content: space-between;
}
footer .wrapper .main-footer .links a {
  color: #f4f4f4;
}
@media (max-width: 1000px) {
  footer .wrapper .main-footer .links {
    flex-direction: column;
    gap: 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    order: 3;
  }
}
footer .wrapper .main-footer .social-medias {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 211px;
}
@media (max-width: 1000px) {
  footer .wrapper .main-footer .social-medias {
    max-width: 151px;
    order: 2;
  }
}
footer .wrapper .cnpj {
  justify-content: center;
  text-align: center;
}
footer .wrapper .cnpj a {
  color: #f4f4f4;
  text-decoration: none;
}
@media (max-width: 1000px) {
  footer .wrapper .cnpj {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
  }
}
footer .wrapper .selo {
  justify-content: center;
  padding-bottom: 20px;
}
@media (max-width: 1000px) {
  footer .wrapper .selo {
    align-items: center;
    padding-bottom: 0;
  }
}
@media (max-width: 1000px) {
  footer img.desk {
    display: none;
  }
}
@media (min-width: 1000px) {
  footer img.mobile {
    display: none;
  }
}

.form-popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  z-index: 99;
  padding: 0;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
@media (min-width: 1000px) {
  .form-popup-wrapper {
    padding: 2rem 0;
  }
}
.form-popup-wrapper.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.form-popup-wrapper.is-open .form-popup {
  opacity: 1;
  transform: translate(0);
}
.form-popup-wrapper .backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.form-popup-wrapper .close-form-button {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
.form-popup-wrapper .form-popup {
  position: relative;
  padding: 78px 58px;
  margin: auto;
  width: 100%;
  max-width: 1254px;
  background-color: #ffffff;
  opacity: 0;
  transform: translateY(20%);
  transition: 0.3s;
}
@media (max-width: 1000px) {
  .form-popup-wrapper .form-popup {
    padding: 56px 16px;
    max-width: 100%;
  }
}
.form-popup-wrapper .form-popup h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 42px;
  letter-spacing: 0.1px;
}
.form-popup-wrapper .form-popup .content {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .form-popup-wrapper .form-popup .content {
    flex-direction: column;
    gap: 40px;
  }
}
.form-popup-wrapper .form-popup .content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 408px;
}
@media (max-width: 1000px) {
  .form-popup-wrapper .form-popup .content ul {
    gap: 20px;
  }
}
.form-popup-wrapper .form-popup .content ul li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.1px;
  color: #000000;
}
.form-popup-wrapper .form-popup .content ul li span {
  margin-top: -4px;
}
.form-popup-wrapper .form-popup .content form {
  max-width: 683px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 1000px) {
  .form-popup-wrapper .form-popup .content form {
    max-width: 100%;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.form-popup-wrapper .form-popup .content form label {
  display: flex;
  flex-direction: column;
}
.form-popup-wrapper .form-popup .content form label span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1px;
  color: #657786;
  background-color: #ffffff;
  margin-bottom: -4px;
  z-index: 2;
  margin-left: 17px;
  padding-inline: 8px 26px;
  width: -moz-max-content;
  width: max-content;
}
.form-popup-wrapper .form-popup .content form label .error {
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
  color: #ff0000;
  background: none;
  width: 100%;
  margin-top: 8px;
  display: none;
}
.form-popup-wrapper .form-popup .content form label input:invalid.focus-out + span.error {
  display: block;
}
.form-popup-wrapper .form-popup .content form input,
.form-popup-wrapper .form-popup .content form select {
  border: 0.5px solid #657786;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1px;
  padding: 12px 18px;
  background: none;
}
.form-popup-wrapper .form-popup .content form select {
  height: 50px;
}
.form-popup-wrapper .form-popup .content form .form-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1000px) {
  .form-popup-wrapper .form-popup .content form .form-row {
    flex-direction: column;
    gap: 20px;
  }
}
.form-popup-wrapper .form-popup .content form .form-row .email {
  width: 55%;
}
@media (max-width: 1000px) {
  .form-popup-wrapper .form-popup .content form .form-row .email {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .form-popup-wrapper .form-popup .content form .form-row .company {
    width: 100%;
  }
}
.form-popup-wrapper .form-popup .content form .form-row .wpp {
  width: 40%;
}
@media (max-width: 1000px) {
  .form-popup-wrapper .form-popup .content form .form-row .wpp {
    width: 100%;
  }
}
.form-popup-wrapper .form-popup .content form .form-row .n-employee {
  max-width: 317px;
}
@media (max-width: 1000px) {
  .form-popup-wrapper .form-popup .content form .form-row .n-employee {
    width: 100%;
    max-width: 100%;
  }
}
.form-popup-wrapper .form-popup .content form .button-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-popup-wrapper .form-popup .content form button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  background: #076ea0;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.12);
  border: 0;
  border-radius: 8px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.1px;
}
.form-popup-wrapper .form-popup .content form p {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.1px;
  color: #233154;
}

.section-title {
  color: #233154;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
}
@media (max-width: 1000px) {
  .section-title {
    font-size: 32px;
    line-height: 40px;
  }
}
.section-title span {
  font-weight: 700;
}

.section-title.highlighter span,
.section-title.highlighter strong {
  background: rgba(41, 127, 185, 0.15);
}

.title-wrapper {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1000px) {
  .title-wrapper {
    gap: 28px;
  }
}

.tag {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: #233154;
  background: rgba(128, 185, 43, 0.2);
  padding: 4px 12px;
  width: -moz-fit-content;
  width: fit-content;
}

.cta-button {
  font-family: "Raleway", sans-serif;
  padding: 20px 32px;
  background: #80b92b;
  transition: all 0.2s;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  border: 0;
  text-transform: uppercase;
}
.cta-button a {
  all: unset;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .cta-button {
    font-size: 18px;
    line-height: 24px;
  }
}

.cta-button:hover {
  background: #6a9924;
}/*# sourceMappingURL=main-style.css.map */