@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --clr-primary: #373737;
  --clr-secondary: #9BBE34;
  --clr-terciary: #1D8EAC;
  --ff-primary: 'Raleway';
  --divider: 120px;
  --gradient: linear-gradient(259deg, var(--clr-secondary) 0%, var(--clr-terciary) 100%);
  --gradient-mobile: linear-gradient(356deg, var(--clr-secondary) -82.28%, var(--clr-terciary) 168%);
  --max-width: 1240px;
}

html {
  overflow-x: hidden !important;
}

body {
  margin: 0;
  padding: 0 !important;
  font-family: var(--ff-primary), sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 1.2;
  text-wrap: balance;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}

a:hover {
  color: #000000;
}

p,
h1,
h2,
h3 {
  margin: 0
}

#section-ads {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-block: 20px;
}

#section-ads a {
  width: unset;
  padding: 20px;
}

/* utility classes */
.custom-container {
  --padding: 2rem;
  width: min(var(--max-width), 100% - (2 * var(--padding)));
  margin-inline: auto;
}

.title {
  font-size: 40px;
  font-weight: 800;
  position: relative;
}

.title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 6px;
  background: var(--clr-secondary);
}

/* end */

.hero {
  margin-top: 60px;
}

.hero__outer {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.logo {
  width: 100%;
  max-width: 310px;
  height: auto;
  object-fit: contain;
}

.hero-box {
  border-radius: 50px 0;
  background: var(--gradient);
  color: #fff;
  padding: 100px 50px;
  position: relative;
}

.hero-box__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 55%;
}

.hero .title {
  font-weight: 900;
  font-size: 46px;
}

.hero .title::after {
  display: none;
}

.hero .description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.description ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.description ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 5px;
}

.description ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}

.hero-desc--mobile ul li {
  padding: 0;
}

.hero-desc--mobile ul li::before {
  display: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 40px;
  align-items: start;
}

.hero .hero-desc--mobile,
.hero-stats--mobile {
  display: none;
}

.hero .description p {
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 200px));
}

.stat {
  text-align: start;
}

.stat span {
  font-weight: 900;
  font-size: 46px;
}

.stat p {
  font-size: 18px;
}

.form {
  position: absolute;
  top: -20px;
  right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  /* min-height: 525px; */
  background-color: #fff;
  color: var(--clr-primary);
  border-radius: 0 0 40px 40px;
  padding: 40px;
  box-shadow: 0 10px 20px 0 rgba(55, 55, 55, 0.25);
  z-index: 1;
  overflow: visible;
}

/* triangulos tipo shadows do form */
.form::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-right: 8px solid var(--clr-primary);
}

.form::after {
  content: "";
  position: absolute;
  top: 0;
  right: -8px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-left: 8px solid var(--clr-primary);
}

#contactform {
  height: 100%;
  width: 100%;
}

.step {
  height: 100%;
  width: 100%;
  display: none;
}

.step.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.question {
  font-size: 28px;
  text-align: center;
  font-weight: 800;
}

.answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
  width: 100%;
}

.answer input[type="radio"],
.answer input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.answer label {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 60px;
  border: 1px solid var(--clr-primary);
  border-radius: 30px;
  background: transparent;

  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.15;
  padding-inline: 16px;
  cursor: pointer;
  user-select: none;

  transition: transform .08s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

.answer label:hover {
  transform: translateY(-1px);
  background-color: var(--clr-secondary);
  border: 1px solid var(--clr-secondary);
  color: #fff;
}

.answers--center-last .answer:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 220px;
}

/* selected */
.answer input[type="radio"]:checked+label,
.answer input[type="checkbox"]:checked+label {
  background: #373737;
  color: #fff;
  border-color: #373737;
}

/* focus */
.answer input[type="radio"]:focus-visible+label {
  outline: 3px solid rgba(55, 55, 55, .25);
  outline-offset: 3px;
}

.form-input input.error {
  border-color: red;
  background-position: 5% center, 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
}

.form-input input.valid {
  border-color: var(--clr-secondary);
  background-image: var(--clr-secondary);
  background-position: 5% center, 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
}

.form-input {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-input label {
  font-size: 20px;
  margin-bottom: 10px;
}

.form-input input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--clr-primary);
  border-radius: 30px;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
}

.form-input input:focus-visible {
  outline: none;
}

.form-check {
  text-align: center;
  padding: 0;
  margin: 5px 0 0 0;
}

.form-check label {
  margin: 0;
  position: relative;
  padding-left: 23px;
  cursor: pointer;
  line-height: 1;
  font-size: 16px;
}

.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: transparent;
  border: 1px solid var(--clr-secondary);
  border-radius: 3px;
  padding-right: 5px;
  color: var(--clr-secondary);
}

.form-check input[type=checkbox]:checked+.checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0px;
  margin-top: 0px;
  font-size: 22px;
}

#politica-link {
  text-decoration: none;
  font-weight: 700;
  color: var(--clr-primary);
}

#politica-link:hover {
  color: var(--clr-secondary);
  text-decoration: underline;
}

/* error messages */
#termos-error {
  display: none;
}

label.error,
#termos-error {
  font-size: 11px;
  font-weight: 400;
  color: red;
  margin: 5px auto 0 auto;
  width: 100%;
  text-align: center;
}

/* Parceiros */
.partners {
  margin-top: var(--divider);
  background: #fff;
}

.partners__grid {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 28px;
  align-items: center;
}

/* cards */
.partner {
  height: 110px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .08);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px 14px;
}

.partner img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* placeholders verdes sem logo */
.partner--placeholder {
  max-width: 110px;
  max-height: 55px;
  width: 100%;
  margin-inline: auto;
  border-radius: 30px 0;
  background: var(--gradient);
  box-shadow: 0 0 33.3px 0 rgba(55, 55, 55, 0.10);
}

/* texto ao centro */
.partners__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.partners__cta span {
  position: relative;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
}

/* underline */
.partners__cta span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;

  height: 6px;
  background: var(--clr-secondary);
  border-radius: 2px;
}

.partner .lpr {
  max-height: 40px;
}

.partner .delta {
  max-height: 50px;
}

.partner .portway {
  max-height: 70px;
}

.partner .sgl {
  max-height: 50px;
}

/* Testemunhos */
.testemunhos {
  margin-top: var(--divider);
}

.testemunhos .box {
  border-radius: 50px;
  padding: 50px 40px;
  background: #FFF;
  box-shadow: 0 0 33.3px 0 rgba(55, 55, 55, 0.10);
  text-align: center;
}

.box .title {
  text-align: center;
  margin-bottom: 45px;
}

.testemunho-slider {
  margin-top: 45px;
}

.testemunho__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
  gap: 20px;
  max-width: 270px;
  margin-inline: auto;
}

.testemunho__inner img {
  width: 100%;
  max-width: 200px;
  height: 100px;
  object-fit: contain;
}

.testemunho__inner span {
  font-size: 12px;
  font-weight: 600;
  font-style: italic;
  text-wrap: auto;
}

/* Certificado ISQ  */
.certificado {
  margin-top: var(--divider);
}

.certificado__wrapper {
  max-width: 70%;
  margin-inline: auto;
  text-align: center;
}

.certificado .description {
  margin-top: 45px;
  text-wrap: auto;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.certificado .custom-container {
  position: relative;
}

.certificado .custom-container::before,
.certificado .custom-container::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 110px;
  height: 55px;
  border-radius: 30px 0;
  background: var(--gradient);
  box-shadow: 0 0 33.3px 0 rgba(55, 55, 55, 0.10);
  z-index: -1;
}

.certificado .custom-container::before {
  left: 0;
}

.certificado .custom-container::after {
  right: 0;
}

/* As nossas soluções */
.solucoes {
  margin-top: var(--divider);
  background-image: url('/img/solucoes-bg.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center -100px;
  text-align: start;
}

.solucoes-slider {
  margin-top: 80px;
  display: flex;
}

.slick-track {
  margin-block: 25px;
}

.solucao-header {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
  margin-bottom: 25px;
}

.solucao {
  width: 96%;
  max-width: 300px;
  margin-inline: auto;
  border-radius: 30px;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(55, 55, 55, 0.10);
  height: 491px;
  padding: 27px;
  text-align: start;
  display: flex;
  flex-direction: column;
}

.solucoes-slider .solucao__outer .solucao {
  margin-top: 0;
}

.solucoes-slider .solucao__outer:nth-child(2) .solucao {
  margin-top: -45px;
}

.solucoes-slider .solucao__outer:nth-child(3) .solucao {
  margin-top: -90px;
}

.solucoes-slider .solucao__outer:nth-child(4) .solucao {
  margin-top: -135px;
}

.solucoes-slider .solucao__outer:nth-child(5) .solucao {
  margin-top: -180px;
}

.solucoes-slider .slick-slide.slick-cloned .solucao {
  margin-top: 0 !important;
}

.solucao__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-height: 0;
}

.leaf {
  width: 40px;
  height: 30px;
  transform: rotate(-90deg);
  border-radius: 20px 0;
  background: linear-gradient(256deg, var(--lightgreen, #9BBE34) 0%, var(--blue, #1D8EAC) 100%);
  box-shadow: 0 0 33.3px 0 rgba(55, 55, 55, 0.10);
}

.solucao-header h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.solucao-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 0;
}

.solucao-body p {
  font-size: 12px;
  font-weight: 500;
  text-wrap: auto;
}

.solucao-body p span {
  font-weight: 600;
  font-style: italic;
}

.solucao-body ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
  padding: 0;
}

.solucao-body ul li {
  font-size: 12px;
  font-weight: 500;
  text-wrap: auto;
  position: relative;
  padding-left: 28px;
}

.solucao-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;

  color: var(--clr-primary);
  /* verde */
  font-weight: 700;
  font-size: 16px;
}

.solucao-footer {
  margin-top: auto;
  width: 100%;
}

.cta {
  width: 100%;
  border-radius: 30px 0;
  padding: 15px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  border: none;
  background: var(--gradient);
  box-shadow: 0 0 33.3px 0 rgba(55, 55, 55, 0.10);
  transition: all .4s ease;
}

.cta:hover {
  border-radius: 30px;
  font-size: 22px;
  text-decoration: underline;
  transform: scale(1.05);
}

/* como fazemos */
.como-fazemos {
  margin-top: var(--divider);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #F4FFF5 50%, rgba(255, 255, 255, 0.00) 100%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.como-fazemos__wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.como-fazemos__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.como-fazemos__header .title {
  margin: 0;
  font-weight: 900;
}

.como-fazemos__header .subtitle {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 500;
}

.como-fazemos__grid {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  gap: 40px;
  align-items: flex-start;
}

.como-fazemos__center {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: flex-start;
}

.spinner {
  width: 140px;
  height: 140px;
}

.spinner-rotor {
  transform-origin: 60px 60px;
  will-change: transform;
}

.plano-step {
  opacity: .25;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  transition: opacity 0.35s ease;
}

.step__num {
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
}

.step__title {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.step__text {
  margin: 6px 0 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.como-fazemos__col {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.como-fazemos__col--left .step {
  text-align: left;
}

.como-fazemos__col--right .step {
  text-align: left;
}

.como-fazemos__col--right {
  margin-top: 100px;
}

.spinner-wrap {
  display: flex;
  justify-content: center;
  will-change: transform;

}

.spinner {
  width: 170px;
  height: 170px;
}

.spinner-rotor {
  transform-origin: 85px 85px;
  will-change: transform;
}

/* Como funciona */
.como-funciona {
  background: url('/img/como-funciona.svg'), linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #F4FFF5 50%, rgba(255, 255, 255, 0.00) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  margin-top: var(--divider);
  text-align: center;
}

.como-funciona-header {
  margin-bottom: 70px;
}

.como-funciona__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: flex-start;
  gap: 18px;
}

.como-funciona__left,
.como-funciona__right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.como-funciona__right {
  margin-top: 35px;
}

.box {
  background: #fff;
  border-radius: 30px 0;
  background: #FFF;
  box-shadow: 0 0 33.3px 0 rgba(55, 55, 55, 0.10);
  padding: 32px 22px;
  text-align: start;
}

.box p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  text-wrap: auto;
}

.rm-toggle {
  margin-top: 10px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--gradient, linear-gradient(180deg, var(--lightgreen, #9BBE34) 0%, var(--blue, #1D8EAC) 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ### FAQs ### */
.faqs {
  margin-top: var(--divider);
  background: url('/img/faqs.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  text-align: center;
}

.faq__wrapper {
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 0 33.3px 0 rgba(55, 55, 55, 0.10);
  padding: 70px;
  max-width: 850px;
  margin-inline: auto;
}

.faqs__header {
  margin-bottom: 70px;
}

.accordion-item {
  margin: 0 auto 20px;
  border-radius: 50px !important;
  border: 1px solid #EEF2FF;
  box-shadow: 0 0 33.3px 0 rgba(55, 55, 55, 0.10);
  text-align: start;
}

.accordion-button::after {
  background-image: url('/img/icons/accordion-arrow.svg');

}

.accordion-button:not(.collapsed)::after {
  background-image: url('/img/icons/accordion-arrow-green.svg');
}

/* accordion fechado */
.accordion-item:has(.accordion-button:not(.collapsed)) {
  outline: none;
}

.accordion-header button {
  color: var(--clr-primary);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 50px !important;
  border: 1px solid #EEF2FF;
  padding: 25px 35px;
  cursor: pointer;
}

.accordion-button:not(.collapsed) {
  color: var(--clr-primary);
  border-radius: 10px;
  background-position: 95%;
  background: white;
  box-shadow: none;
  border: none;
}

.accordion-body {
  border-radius: 10px;
  padding-block: 0 28px;
  padding-inline: 38px;
  font-size: 16px;
  line-height: 1.2;
}

.accordion-body p {
  margin: 0;
}

.accordion-body ul {
  margin-top: 20px;
}

.accordion-body li {
  margin-top: 10px;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.faq-order {
  border-radius: 0 20px;
  background: var(--gradient);
  width: 40px;
  height: 40px;
  box-shadow: 0 0 33.3px 0 rgba(55, 55, 55, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-right: 12px;
}

.mapa-container {
  width: 100%;
  background-color: #C8D7D4;
  border-radius: 25px;
  padding: 25px;
  margin-top: 20px;
  padding: 0;
  overflow: hidden;
  position: relative;
  touch-action: none;
  cursor: grab;
}

.mapa-container.is-dragging {
  cursor: grabbing;
}

.mapa-container img {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: 0 0;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* ### END ### */

/* ### Noticias ### */
.noticias {
  margin-top: var(--divider);
  background: url('/img/noticias.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  text-align: center;
}

.noticias__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  padding-block: 90px;
}

.noticia {
  border-radius: 30px;
  box-shadow: 0 0 33.3px 0 rgba(55, 55, 55, 0.25);
  padding: 32px 16px;
  width: 225px;
  height: 225px;
  cursor: pointer;
}

.noticia p {
  color: #FFF;
  font-size: 16px;
  font-weight: 800;
  text-align: start;
}

.noticia[data-noticia="noticia1"] {
  background: url('/img/noticias/noticia1.png');
  background-position: center;
}

.noticia[data-noticia="noticia2"] {
  background: url('/img/noticias/noticia2.png');
  background-position: center;
  margin-top: 110px;
}

.noticia[data-noticia="noticia3"] {
  background: url('/img/noticias/noticia3.png');
  background-position: center;
}

.noticia[data-noticia="noticia4"] {
  background: url('/img/noticias/noticia4.png');
  background-position: center;
  margin-top: 110px;
}

.noticia[data-noticia="noticia5"] {
  background: url('/img/noticias/noticia5.png');
  background-position: center;
}

.noticias-mobile__wrapper {
  display: none;
}

/* ### END ### */

/* ### Footer ### */
footer {
  padding-top: var(--divider);
  background: url('/img/footer-bg.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.footer-box {
  padding: 45px;
  border-radius: 50px;
  background: #FFF;
  box-shadow: 0 0 33.3px 0 rgba(55, 55, 55, 0.10);
  max-width: 850px;
  margin-inline: auto;
}

.footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.footer--left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 65%;
}

.footer--left h4 {
  font-size: 28px;
  font-weight: 900;
}

.footer--left__images img {
  max-width: 100%;
  object-fit: contain;
}

footer .cta {
  max-width: 250px;
}

/* ### END ### */

.message-wrapper {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 25px;
}

.message-title {
  font-size: 28px;
  font-weight: 800;
}

.message p {
  font-size: 18px;
  font-weight: 500;
}

.message-wrapper img {
  height: 40px;
  max-width: 100%;
  object-fit: contain;
}

/* Popup da noticia */

.news-article .news-lead {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 16px;
}

.news-figure img {
  width: 100%;
  border-radius: 16px;
}

figcaption {
  font-size: 11px;
  text-align: center;
  color: #787878;
  margin-top: 8px;
}

.news-body {
  font-size: 15px;
}

.news-body img {
  max-width: 100%;
}

.news-body .intro {
  font-style: italic;
  font-weight: bold;
}

.news-wrapper {
  margin-block: 25px;
}

.news-wrapper h5 {
  font-weight: bold;
  color: var(--clr-secondary);
}

.news-wrapper p {
  margin-bottom: 8px;
  text-wrap: auto;
}

/* end Popup */

.politica__wrapper p {
  margin-bottom: 12px;
}

@media (max-width: 1200px) {
  .form {
    width: 45%
  }

  .hero-box__inner {
    max-width: 50%;
  }

  .partners__cta span {
    font-size: 25px;
  }

  .solucoes-slider {
    display: block;
    margin-top: 45px;
  }

  .solucoes-slider .solucao__outer .solucao,
  .solucoes-slider .solucao__outer:nth-child(2) .solucao,
  .solucoes-slider .solucao__outer:nth-child(3) .solucao,
  .solucoes-slider .solucao__outer:nth-child(4) .solucao,
  .solucoes-slider .solucao__outer:nth-child(5) .solucao {
    margin-top: 0;
  }

  .solucoes {
    background-position: center 70px;
  }

  .solucao {
    max-width: 90%;
  }
}

@media (max-width: 991px) {
  .partners__cta span {
    font-size: 20px;
  }

  .certificado .custom-container::before,
  .certificado .custom-container::after {
    width: 90px;
    height: 43px;
  }

  .solucoes {
    text-align: center;
  }

  .box p,
  .rm-toggle {
    font-size: 16px;
  }

  .faqs__header {
    margin-bottom: 60px;
  }

  .faq__wrapper {
    padding: 50px 70px;
  }

  .form-check label {
    font-size: 12px;
  }

  .form-input input,
  .answer label {
    font-size: 16px;
  }

  .step.active {
    gap: 15px;
  }

  .form {
    padding: 35px
  }

  .hero-box__inner {
    max-width: 46%;
  }

  .hero-box {
    background: var(--gradient-mobile);
  }
}

@media (max-width: 900px) {
  .partners__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* força o CTA a ficar ao centro e ocupar a linha */
  .partners__cta {
    grid-column: 1 / -1;
    height: auto;
    padding: 10px 0;
  }

  .mobile-placeholder {
    display: none;
  }

  .partners__cta span {
    font-size: 30px;
  }

  .como-fazemos__grid {
    grid-template-columns: 1fr;
  }

  .como-fazemos__center {
    order: -1;
  }

  .como-fazemos__col {
    gap: 50px;
  }

  .como-fazemos__grid {
    gap: 50px;
  }

  .como-fazemos__col--right {
    margin-top: 0;
  }

  .como-fazemos__center {
    display: none;
  }

  .como-funciona__grid {
    grid-template-columns: 1fr;
  }

  .plano-step {
    opacity: 1;
  }

  .step__text {
    font-size: 16px;
  }

  .noticias__wrapper {
    display: none;
  }

  .noticias-mobile__wrapper {
    display: block;
  }

  #noticia2,
  #noticia4 {
    margin-top: 0;
  }

  .noticia {
    margin-top: 0 !important;
    box-shadow: none;
  }

  .noticias-mobile__wrapper {
    margin-top: 20px;
  }
}

@media (max-width: 800px) {

  .hero .title {
    text-align: center;
  }

  .hero .description {
    text-align: center;
  }

  .hero-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .hero .hero-desc--desktop,
  .hero .hero-stats--desktop {
    display: none;
  }

  .hero .hero-desc--mobile,
  .hero .hero-stats--mobile {
    display: block;
    text-align: center;
    width: 100%;
  }

  .hero-form {
    width: 100%;
  }

  .form {
    position: static;
    width: 100%;
    border-radius: 50px;
  }

  .form::after,
  .form::before {
    display: none;
  }

  .stats {
    width: 100%;
    justify-content: space-around;
  }

  .stat {
    text-align: center;
  }


}

@media (max-width: 768px) {
  .title {
    font-size: 30px;
  }

  .hero-box {
    padding: 70px 35px;
  }

  .hero .title {
    font-size: 32px;
  }

  .hero-box__inner {
    gap: 20px;
  }

  .stat span {
    font-size: 32px;
  }

  .certificado__wrapper {
    max-width: 100%;
  }

  .certificado .description {
    font-size: 16px;
    text-wrap: balance;
  }

  .certificado .custom-container::before,
  .certificado .custom-container::after {
    display: none;
  }

  .solucao-body p {
    font-size: 15px;
  }

  .como-fazemos__header .subtitle {
    font-size: 18px;
  }

  .faqs__header {
    margin-bottom: 45px;
  }

  .faq__wrapper {
    padding: 50px;
  }

  .accordion-header button {
    padding: 20px 25px;
  }

  .faq-order {
    display: none;
  }

  .accordion-body {
    font-size: 14px;
  }

  .noticia {
    margin-inline: auto;
  }

  .footer__wrapper {
    flex-direction: column;
    text-align: center;
  }

  .footer--left h4 {
    text-align: center;
  }

  .footer--left {
    max-width: 100%;
  }

  .footer--left__images img {
    max-height: 40px;
  }
}

@media (max-width: 900px) {
  .partners__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partners__cta {
    grid-column: 1 / -1;
    height: auto;
    padding: 10px 0;
  }

  .mobile-placeholder {
    display: none;
  }

  .partners__cta span {
    font-size: 25px;
  }
}

@media (max-width: 550px) {
  .noticia {
    max-width: 90%;
  }

  .logo {
    max-width: 240px;
    margin-inline: auto;
  }

  .hero .title {
    font-size: 26px;
    line-height: 1.1;
    text-wrap: auto;
  }

  .hero {
    margin-top: 45px;
  }

  .news-body {
    font-size: 12px;
  }

  .news-wrapper h5 {
    font-size: 18px;
  }

  .news-article .news-lead {
    font-size: 18px;
    line-height: 1;
  }
}

@media(max-width: 480px) {
  .custom-container {
    --padding: 16px;
  }

  .hero-box {
    padding: 55px 20px;
  }

  .answers {
    grid-template-columns: 1fr;
  }

  .answer label {
    height: 45px;
  }

  .question {
    font-size: 22px;
  }

  .form {
    padding: 35px 25px;
  }

  .answers--center-last .answer:last-child {
    max-width: 100%;
    width: 100%;
  }

  .stat p {
    max-width: 60%;
    margin-inline: auto;
    font-size: 15px;
  }

  .partners__grid {
    gap: 20px;
  }

  .testemunho__inner {
    align-items: center;
  }

  .testemunho__inner span {
    text-align: center;
  }

  .testemunho__inner span {
    margin-top: 0;
  }

  .testemunho-slider {
    margin: 0;
  }

  .solucoes-slider {
    margin-top: 35px;
  }

  .solucao {
    min-height: 520px;
    height: auto;
  }

  .faq__wrapper {
    padding: 35px 30px;
  }

  .accordion-header button {
    font-size: 14px;
  }

  .accordion-item {
    margin: 0 auto 15px;
  }

  .footer--left h4 {
    font-size: 22px;
  }

  .footer--left__images img {
    max-height: 30px;
  }

  .message-wrapper img {
    height: 25px;
  }

  .message p {
    font-size: 16px;
  }

  .message-title {
    font-size: 22px;
  }
}

@media(max-width: 420px) {
  .noticia {
    margin-top: 0 !important;
    width: 225px;
    height: 225px;
  }

  .title {
    font-size: 25px;
  }

  .como-fazemos__header .subtitle {
    font-size: 16px;
  }
}

@media (max-width: 345px) {
  .hero-box {
    padding: 55px 25px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stat p {
    max-width: 100%;
  }

  .faq__wrapper {
    padding: 35px 20px;
  }

  .accordion-header button {
    padding: 20px 18px;
  }
}