@charset "UTF-8";
@font-face {
  font-family: "MADE TOMMY";
  src: url("../fonts/MADETOMMY-ExtraBold.woff") format("woff2"), url("../fonts/MADETOMMY-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE TOMMY";
  src: url("../fonts/MADETOMMY-Black.woff2") format("woff2"), url("../fonts/MADETOMMY-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE TOMMY";
  src: url("../fonts/MADETOMMY-Bold.woff2") format("woff2"), url("../fonts/MADETOMMY-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE TOMMY";
  src: url("../fonts/MADETOMMY-Light.woff2") format("woff2"), url("../fonts/MADETOMMY-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE TOMMY";
  src: url("../fonts/MADETOMMY.woff2") format("woff2"), url("../fonts/MADETOMMY.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE TOMMY";
  src: url("../fonts/MADETOMMY-Medium.woff2") format("woff2"), url("../fonts/MADETOMMY-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE TOMMY";
  src: url("../fonts/MADETOMMY-Thin.woff2") format("woff2"), url("../fonts/MADETOMMY-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
html,
body {
  overflow-x: hidden;
}

body {
  background-color: #f7f7f7;
  font-family: "MADE TOMMY";
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #4d4d7c;
  margin: 0;
}

.container {
  max-width: 1190px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 0.95rem;
  position: relative;
}

.center {
  text-align: center;
}

h2 {
  color: #0a4bb9;
}

header {
  background: url(../img/header_bg.svg) center no-repeat;
  background-size: cover;
  height: 158px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header h1 {
  display: flex;
  justify-content: center;
}

.hero {
  min-height: 804px;
  background-size: cover;
  padding: 5rem 1.5rem 7rem;
  text-align: center;
  overflow: hidden;
  /* efeito de digitação SEM cursor */
}
.hero:after {
  content: "";
  background: url(../img/gradient.svg) no-repeat center;
  position: absolute;
  background-size: cover;
  top: 4rem;
  left: 0;
  width: 100%;
  height: 1085px;
  z-index: -1;
}
.hero:before {
  content: "";
  background: url(../img/cartoon_1.svg) no-repeat center;
  position: absolute;
  background-size: cover;
  top: 40rem;
  right: 0;
  width: 429px;
  height: 241px;
  z-index: 2;
}
.hero .typing-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 21px;
  background: url(../img/bg_type.svg) no-repeat center;
  width: 304px;
  height: 36px;
  color: #0a4bb9;
  font-size: 14px;
  font-weight: 400;
}
.hero .typing-text {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 4s steps(30) forwards;
}
@keyframes typing {
  from {
    width: 0;
    letter-spacing: 2px;
  }
  to {
    width: 100%;
    letter-spacing: 2px;
  }
}
@media (min-width: 768px) {
  .hero {
    padding: 6rem 2rem 3rem;
  }
}
.hero__inner {
  max-width: 780px;
  margin: 0 auto;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 75, 185, 0.2);
  background-color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #4d4d7c;
}
.hero__title {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.1;
  color: #0a4bb9;
  margin-bottom: 1.2rem;
  font-weight: 400;
  font-size: 64px;
}
.hero__subtitle {
  max-width: 580px;
  margin: 0 auto 2.2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #4d4d7c;
}
.hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.4rem;
  height: 42px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.btn--primary {
  background-color: #0a4bb9;
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 20px rgba(10, 75, 185, 0.35);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(10, 75, 185, 0.45);
}
.btn--ghost {
  background-color: transparent;
  color: #1b191a;
  border: 1px solid #1b191a;
}
.btn--ghost:hover {
  background-color: #ffffff;
}

.hero-stats {
  max-width: 582px;
  height: 114px;
  background-color: #e6effd;
  border-radius: 500px;
  padding: 0;
  display: grid;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  box-shadow: 0 4px 4px rgba(27, 25, 26, 0.24);
  margin-block-start: 58px;
  padding-inline: 60px;
}
@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1360px) {
  .hero-stats {
    max-width: 30%;
    gap: 0.5rem;
  }
}
.hero-stats__item {
  text-align: center;
}
.hero-stats__number {
  display: block;
  font-size: 32px;
  font-weight: 500;
  color: #0a4bb9;
  margin-bottom: 0.35rem;
}
.hero-stats__label {
  display: block;
  font-size: 12px;
  color: #1b191a;
}

.challenge {
  background-color: #e5e9ff;
  padding: 1rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  padding-bottom: 6rem;
}
.challenge:before {
  content: "";
  background: url(../img/line_b.svg) no-repeat;
  background-size: cover;
  position: absolute;
  top: -17rem;
  left: 0;
  width: 100%;
  height: 286px;
}
.challenge:after {
  content: "";
  background: url(../img/line2.svg) no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -8rem;
  left: 0;
  width: 100%;
  height: 143px;
}
.challenge__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.challenge h2 {
  font-size: clamp(2rem, 3vw, 32px);
  color: #0a4bb9;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.challenge p {
  font-size: 1rem;
  color: hsla(240, 23%, 39%, 0.7);
  margin-bottom: 2.5rem;
}
.challenge__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem 1.5rem;
  margin-bottom: 3rem;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .challenge__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.challenge__cta-wrapper {
  display: flex;
  justify-content: center;
}
.challenge__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1.1rem 3rem;
  border-radius: 999px;
  background-color: #0a4bb9;
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  height: 62px;
  text-decoration: none;
  max-width: 583px;
  width: 100%;
  transition: all 0.4s ease;
}
.challenge__cta:hover {
  background-color: #64b733;
}
@media (min-width: 768px) {
  .challenge__cta {
    font-size: 1rem;
  }
}

button,
button:hover,
button:active,
button:focus {
  outline: 0;
}

.challenge-card {
  background-color: #ffffff;
  padding: 0 1.75rem;
  border: 1px solid #dcdfe5;
  display: flex;
  align-items: center;
  height: 120px;
  gap: 1.25rem;
  text-align: left;
  transition: all 0.4s ease;
}
.challenge-card p {
  margin-bottom: 0;
}
.challenge-card:first-child {
  border-radius: 16px 0 0 0;
}
.challenge-card:nth-child(3) {
  border-radius: 0 16px 0 0;
}
.challenge-card:nth-child(4) {
  border-radius: 0 0 0 16px;
}
.challenge-card:last-child {
  border-radius: 0 0 16px 0;
}
.challenge-card:hover {
  background-color: #99d078;
}
.challenge-card:hover img {
  filter: grayscale(1);
}
.challenge-card:hover .challenge-card__icon {
  background-color: #8be67d;
}
.challenge-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background-color: #e4eeff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a4bb9;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.challenge-card__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  color: #1b191a;
}

.ecosystem {
  position: relative;
  margin-top: 12rem;
}
.ecosystem__center {
  position: absolute;
  left: 50%;
  background: url(../img/bg_circular.svg) no-repeat;
  width: 574px;
  height: 675px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 100px;
  transform: translate(-50%);
  text-align: center;
  z-index: 2;
}
.ecosystem__center h2 {
  font-size: 40px;
  font-weight: 400;
  color: #0a4bb9;
  margin-bottom: 1rem;
}
.ecosystem__center p {
  width: 70%;
  margin-inline: auto;
}
.ecosystem__center-inner {
  padding: 44px 44px 0 10rem;
}
.ecosystem__center-inner p {
  line-height: 18px;
}
.ecosystem__grid {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translate(-58%, 50%);
}
.ecosystem__grid.mob{
  display: none;
    
}
@media(max-width:990px){
    .ecosystem__grid.mob{
        display: block;
    }
}
.ecosystem .ecosystem-step {
  position: absolute;
  font-size: 14px;
}
.ecosystem .ecosystem-step p {
  line-height: 18px;
}
.ecosystem .ecosystem-step img {
  margin-inline: auto;
  margin-bottom: 8px;
}
.ecosystem .ecosystem-step--1 {
  top: 13rem;
  right: 4%;
  width: 230px;
  text-align: center;
}
.ecosystem .ecosystem-step--2 {
  top: 30rem;
  right: 4%;
  width: 230px;
  text-align: center;
}
.ecosystem .ecosystem-step--3 {
  top: 13rem;
  left: 15%;
  width: 258px;
  text-align: center;
}
.ecosystem .ecosystem-step--4 {
  top: 30rem;
  left: 15%;
  width: 230px;
  text-align: center;
}
.ecosystem .ecosystem-step--5 {
  top: 42rem;
  left: 50%;
  width: 230px;
  text-align: center;
  transform: translate(-23%);
}
.ecosystem .ecosystem-step--6 {
  top: 0;
  left: 50%;
  width: 230px;
  text-align: center;
  transform: translate(-23%);
}
.ecosystem .ecosystem-step__title {
  font-size: 20px;
  color: #1b191a;
  font-weight: 400;
  margin-bottom: 10px;
}
.ecosystem .benefits {
  padding: 57rem 1.5rem 4rem;
}
.ecosystem .benefits__inner {
  display: flex;
  gap: 104px;
  justify-content: space-between;
}
@media (min-width: 900px) {
  .ecosystem .benefits__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.ecosystem .benefits-card {
  background-color: #f7f7f7;
  border-radius: 28px;
  padding: 68px 2.6rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.24);
  width: 482px;
}
.ecosystem li {
  list-style: none;
  display: flex;
  gap: 1rem;
  color: #1b191a;
}
.ecosystem .benefits-card--green {
  border: 2px solid #8be67d;
}
.ecosystem .benefits-card--green h2 {
  color: #72bf44;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 32px;
  margin-top: 0;
}
.ecosystem .benefits-card--green ul {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 1rem;
  color: #1b191a;
  padding-left: 0;
  margin-left: 0;
}
.ecosystem .benefits-card--green ul li:before {
  content: "";
  display: block;
  background: url(../img/check_green.svg) no-repeat;
  width: 24px;
  height: 24px;
}
.ecosystem .benefits-card--blue {
  border: 2px solid #7babfd;
  background-color: white;
}
.ecosystem .benefits-card--blue h2 {
  color: #0a4bb9;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 1rem;
  margin-top: 0;
}
.ecosystem .benefits-card--blue ul {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 1rem;
  color: #1b191a;
  padding-left: 0;
  margin-left: 0;
  margin-top: 32px;
}
.ecosystem .benefits-card--blue ul li:before {
  content: "";
  display: block;
  background: url(../img/check_blue.svg) no-repeat;
  width: 24px;
  height: 24px;
}
.ecosystem .benefits-card__title {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.ecosystem .benefits-card--blue .benefits-card__title {
  color: #0a4bb9;
  font-weight: 400;
  margin-bottom: 32px;
}
.ecosystem .benefits-card__subtitle {
  font-size: 0.95rem;
  color: #4d4d7c;
  margin-bottom: 1.5rem;
}
.ecosystem .benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.ecosystem .benefits-item__icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.ecosystem .benefits-item__icon--blue {
  background: url(../img/check_blue.svg) no-repeat;
  width: 24px;
  height: 24px;
}
.ecosystem .benefits-item__text {
  line-height: 1.5;
}

.rehoming {
  padding: 4rem 1.5rem 5rem;
  background: linear-gradient(#e5e9ff, #f7f7f7);
  position: relative;
  margin-top: 11rem;
}
.rehoming:after {
  content: "";
  background: url(../img/line_re.svg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 200px;
  position: absolute;
  top: -10rem;
  left: 0;
}

.rehoming__inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}
.rehoming__inner h2 {
  font-size: 40px;
  color: #0a4bb9;
  margin-bottom: 8px;
  font-weight: 400;
}
.rehoming__inner .p {
  font-size: 1rem;
  color: #4d4d7c;
  margin-bottom: 2.2rem;
}

.rehoming-tabs {
  max-width: 1190px;
  margin: 0 auto;
}

.rehoming-tabs__switch {
  width: 540px;
  margin-inline: auto;
  position: relative;
  background-color: #f4f5fb;
  border-radius: 999px;
  padding: 8px;
  display: flex;
  gap: 4px;
  margin-bottom: 2.2rem;
}

.rehoming-tab {
  flex: 1;
  border: none;
  border-radius: 999px;
  background-color: transparent;
  font-size: 1rem;
  font-weight: 500;
  color: hsla(243, 83%, 14%, 0.34);
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  height: 46px;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.rehoming-tab:last-child.is-active {
  background-color: #8be67d;
  color: #1b191a;
  border: 0;
}

.rehoming-tab.is-active {
  background: #0a4bb9;
  color: #ffffff;
}

.rehoming-panels {
  margin-top: 1.5rem;
}
.rehoming-panels .text {
  margin-bottom: 40px;
}
.rehoming-panels .text p {
  color: #4d4d7c;
  width: 50%;
  margin-inline: auto;
}
.rehoming-panels .text h2 {
  color: #1b191a;
  font-size: 32px;
}

.rehoming-panel {
  display: none;
}
.rehoming-panel .text_f {
  margin-top: 50px;
}
.rehoming-panel .text_f p {
  color: #0a4bb9;
}
.rehoming-panel .text_f h3 {
  font-size: 24px;
  font-weight: 400;
  color: #0a4bb9;
  margin-bottom: 10px;
}

.rehoming-panel.is-active {
  display: block;
}
.rehoming-panel.is-active h3 {
  font-size: 32px;
  margin-top: 61px;
  margin-bottom: 41px;
  color: #1b191a;
  font-weight: 400;
  width: 49%;
  margin-inline: auto;
}
.rehoming-panel.is-active .packages {
  margin-bottom: 41px;
}
.rehoming-panel.is-active .packages p {
  font-size: 0.95rem;
  color: #4d4d7c;
  max-width: 620px;
  margin: 0 auto 2rem;
}

.tiers-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 50px;
}

@media (min-width: 900px) {
  .tiers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.tier-card {
  background-color: #ffffff;
  border-radius: 28px;
  border: 2px solid #f0f0f0;
  padding: 2rem 2rem 2.4rem;
  text-align: left;
  position: relative;
  min-height: auto;
  padding-inline: 66px;
  padding-block: 72px;
}

.tier-card__label {
  position: absolute;
  top: -18px;
  left: 50%;
  padding: 9px 1.4rem;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 400;
  color: #1b191a;
  transform: translate(-50%);
}

.tiers-grid .tier-card:first-child {
  border-color: #fbee87;
}
.tiers-grid .tier-card:first-child .tier-card__label {
  background-color: #fbee87;
  border: 1px solid #d8bf00;
  color: #b29d00;
}
.tiers-grid .tier-card:first-child .tier-card__image:after {
  background-color: #fbee87;
}
.tiers-grid .tier-card:nth-child(2) {
  border-color: #72bf44;
}
.tiers-grid .tier-card:nth-child(2) .tier-card__label {
  background-color: #99d078;
  border: 1px solid #3b9f00;
  color: #2f7d00;
}
.tiers-grid .tier-card:nth-child(2) .tier-card__image:after {
  background-color: #99d078;
}
.tiers-grid .tier-card:last-child {
  border-color: #0a4bb9;
  color: #090642;
}
.tiers-grid .tier-card:last-child .tier-card__label {
  background-color: #bfd7ff;
  border: 1px solid #090642;
}
.tiers-grid .tier-card:last-child .tier-card__image:after {
  background-color: #322e7c;
  top: 19px;
}

.tier-card--blue {
  border-color: #0a4bb9;
  color: #090642;
}
.tier-card--blue .tier-card__image:after {
  background-color: #322e7c;
  top: 19px;
}

.tier-card__image {
  position: relative;
}
.tier-card__image img {
  position: relative;
  z-index: 2;
}
.tier-card__image:after {
  content: "";
  position: absolute;
  top: -24px;
  right: 0;
  width: 65px;
  height: 65px;
  border-radius: 100px;
}

.tier-card--blue .tier-card__label {
  background-color: #bfd7ff;
  border: 1px solid #090642;
}

.tier-card__text {
  font-size: 18px;
  color: #1b191a;
  margin-bottom: 61px;
  text-align: center;
  line-height: 22px;
}

.tier-card__image img {
  display: block;
  margin: 0 auto;
  max-height: 260px;
}

.packages-grid {
  display: grid;
  gap: 1.5rem;
  margin: 1.8rem 0 2.4rem;
  width: 778px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.package-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 1.8rem 2rem 2.2rem;
  text-align: center;
  border: 1px solid #dcdfe5;
}

.package-card__image img {
  width: 100px;
  height: 113px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
}

.package-card__title {
  font-size: 24px;
  margin-bottom: 0.4rem;
  color: #1b191a;
  font-weight: 500;
}

.package-card__text {
  font-size: 1rem;
  color: #4d4d7c;
  line-height: 18px;
}

.packages-features {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.packages-features h4 {
  text-align: center;
  font-size: 24px;
  color: #1b191a;
  background-color: #e5e9ff;
  width: 385px;
  margin-inline: auto;
  font-weight: 500;
  padding-block: 14px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.packages-features__grid {
  display: grid;
  gap: 1rem 3rem;
}

@media (min-width: 768px) {
  .packages-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.packages-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.packages-list li {
  position: relative;
  padding-left: 31px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #1b191a;
}

.packages-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: url(../img/check_blue.svg) no-repeat;
}

.esg {
  padding: 8rem 1.5rem;
  background-color: #f7f7f7;
  position: relative;
}
.esg:after, .esg:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 188px;
  background-size: cover !important;
}
.esg:after {
  background: url(../img/lines_r1.svg) no-repeat;
  top: -6rem;
}
.esg:before {
  background: url(../img/lines_r2.svg) no-repeat;
  bottom: -4rem;
}

.esg__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .esg__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
}
.esg__left {
  flex: 1;
}
.esg__left h2 {
  font-size: 32px;
  line-height: 1.2;
  color: #0a4bb9;
  margin-bottom: 1rem;
  font-weight: 400;
}
.esg__left p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4d4d7c;
  width: 80%;
}

.esg__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.esg-feature {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.esg-feature__icon {
  width: 57px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.esg-feature__icon img {
  max-width: 57px;
  max-height: 57px;
  display: block;
}

.esg-feature__text {
  font-size: 0.98rem;
  color: #1b191a;
}

.cashback {
  padding: 4rem 0 5rem;
  background-color: #f7f7f7;
}

.cashback__inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  align-items: center;
}

@media (max-width: 960px) {
  .cashback__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cashback__left {
  flex: 1;
}

.cashback__title {
  font-size: 32px;
  line-height: 1.2;
  color: #0a4bb9;
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.cashback__subtitle {
  font-size: 0.98rem;
  color: #6b6c84;
  margin-bottom: 2rem;
}

.cashback__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  background-color: #0a4bb9;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(10, 75, 185, 0.4);
}

.cashback__right {
  flex: 1.4;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .cashback__right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.cashback-card {
  border-radius: 17px;
  padding: 47px 2.4rem;
  color: #ffffff;
  text-align: left;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cashback-card--green {
  background-color: #58b947;
}

.cashback-card--navy {
  background-color: #02053a;
}

.cashback-card__label {
  font-size: 20px;
  margin-bottom: 1.4rem;
  width: 50%;
  font-weight: 400;
  margin-top: 0;
}

.cashback-card__percent {
  font-size: 80px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 0.6rem;
  margin: 0;
}

.cashback-card__text {
  font-size: 30px;
  margin: 0;
}

.partners {
  padding: 4rem 1.5rem 5rem;
  background: linear-gradient(#e5e9ff, #fbfbfb);
  position: relative;
  margin-top: 8rem;
}
.partners:after {
  background: url(../img/line_partner.svg) no-repeat;
  content: "";
  position: absolute;
  top: -9rem;
  left: 0;
  background-size: cover;
  width: 100%;
  height: 200px;
}
.partners:before {
  background: url(../img/lines_pt.svg) no-repeat;
  content: "";
  position: absolute;
  top: 16rem;
  left: 0;
  background-size: cover;
  width: 100%;
  height: 200px;
}
.partners .intro {
  color: #4d4d7c;
  margin-bottom: 65px;
}
.partners .intro h2 {
  font-size: 40px;
  color: #0a4bb9;
  font-weight: 400;
  margin-bottom: 1rem;
}

.partners__inner {
  max-width: 1190px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 960px) {
  .partners__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.partner-card {
  position: relative;
  background-color: #f3f5ff;
  border-radius: 16px;
  padding: 3.9rem 2.4rem 39px;
  display: flex;
  flex-direction: column;
}

.partner-card__label {
  position: absolute;
  top: -18px;
  left: 50%;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1b191a;
  transform: translate(-50%);
  font-size: 24px;
  width: 274px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.partner-card--community .partner-card__label {
  background-color: #f3e57f;
  color: #b29d00;
}

.partner-card--impact .partner-card__label {
  background-color: #8be67d;
  color: white;
}

.partner-card--transform .partner-card__label {
  background-color: #112a55;
  color: #ffffff;
}

.partner-card__intro {
  font-size: 1rem;
  color: #4d4d7c;
  margin-bottom: 1.4rem;
  text-align: center;
}

.partner-card__benefits-title {
  font-size: 18px;
  font-weight: 400;
  color: #0a4bb9;
  margin: 1.4rem 0 0.6rem;
}

.partner-card__note {
  font-size: 12px;
  color: #000;
}

.partner-card__note--small {
  max-width: 260px;
}

.partner-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.6rem;
  display: grid;
  gap: 0.4rem;
}

.partner-card__list li {
  position: relative;
  font-size: 0.95rem;
  color: #1b191a;
  display: grid;
  grid-template-columns: 14px auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.partner-card__list li::before {
  content: "";
  display: block;
  width: 14px;
  height: 12px;
  background: url(../img/check_p.svg) no-repeat;
}

.partner-card--impact .partner-card__list li::before,
.partner-card--community .partner-card__list li::before {
  border-color: #39a54a;
}

.partner-card__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: 999px;
  background-color: #8be67d;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  align-self: center;
  min-width: 100%;
  color: #1b191a;
}
.partner-card__btn:hover {
  background-color: #64b733;
  color: white;
}

.pilot {
  padding: 4rem 1.5rem 5rem;
  background: transparent;
  position: relative;
}
.pilot:after {
  background: url(../img/cloud.svg) no-repeat;
  content: "";
  position: absolute;
  top: -30rem;
  left: 61%;
  width: 100%;
  height: 694px;
  transform: translate(-50%, 50%);
}

.pilot__inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  padding: 3.5rem 2rem 3.8rem;
  border-radius: 500px;
  background: linear-gradient(#fff, hsla(0, 0%, 100%, 0));
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .pilot__inner {
    padding: 2.8rem 1.5rem 3.2rem;
    border-radius: 40px;
  }
}
.pilot__title {
  font-size: 35px;
  font-weight: 400;
  color: #0a4bb9;
  margin-bottom: 30px;
}

.pilot__subtitle {
  font-size: 18px;
  color: #4d4d7c;
  max-width: 370px;
  margin: 0 auto 2rem;
}

.pilot__inner .pilot__benefits {
  display: flex;
  justify-content: space-between;
  width: 548px;
  margin-inline: auto;
  margin-bottom: 1rem;
}
.pilot__inner .b2 {
  width: 649px;
  margin-bottom: 32px;
}

.pilot-benefit {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.97rem;
  color: #1b191a;
}

.pilot-benefit__icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background-color: #8be67d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #0a4bb9;
  flex-shrink: 0;
}

/* ordem: 1 Discounts, 2 Cashback, 3 ESG, 4 Housing, 5 Priority */
.pilot-benefit:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.pilot-benefit:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.pilot-benefit:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.pilot-benefit:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

.pilot-benefit:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

@media (max-width: 768px) {
  .pilot__benefits {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 0.9rem;
    justify-items: center;
  }
  .pilot-benefit:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
}
.pilot__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-color: #0a4bb9;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  width: 337px;
  height: 50px;
}
.pilot__btn:hover {
  background: #64b733;
}

.workflow {
  padding: 0rem 1.5rem 16rem;
  background-color: #fbfbfb;
  position: relative;
}
.workflow:after {
  content: "";
  background: url(../img/line_day.svg) no-repeat;
  width: 100%;
  height: 200px;
  background-size: cover;
  position: absolute;
  left: 0;
  top: -15rem;
}

.workflow__inner {
  max-width: 1190px;
  margin: 0 auto;
  text-align: center;
}

.workflow__title {
  font-size: 32px;
  color: #64b733;
  margin-bottom: 24px;
  font-weight: 400;
  width: 40%;
  margin-inline: auto;
  margin-top: 0;
}

.workflow__subtitle {
  font-size: 1rem;
  color: #4d4d7c;
  margin-bottom: 80px;
}

.workflow-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.workflow-card {
  position: relative;
  background-color: #f3f5ff;
  border: 2px solid #8be67d;
  border-radius: 16px;
  padding: 3.2rem 2rem 2.4rem;
  text-align: left;
  width: 300px;
  height: 324px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.workflow-card__number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #8be67d;
  background: linear-gradient(35deg, rgb(139, 230, 125) 0%, rgb(100, 183, 51) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
}

.workflow-card__icon {
  margin-bottom: 1.2rem;
}

.workflow-card__title {
  font-size: 20px;
  color: #64b733;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.workflow-card__text {
  font-size: 0.95rem;
  color: #1b191a;
  line-height: 1.45;
}

.workflow-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: #1b191a;
  display: grid;
  gap: 0;
}

.workflow-card__list li {
  padding-left: 0.8rem;
  position: relative;
}

.workflow-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #1b191a;
  font-size: 1rem;
}

.lead-form {
  background-color: #211d70;
  padding-bottom: 140px;
  padding-top: 140px;
  position: relative;
  margin-top: 8rem;
}
.lead-form:after {
  content: "•";
  position: absolute;
  left: 0;
  top: -6rem;
  background: url(../img/line_cc.svg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 214px;
}

.lead-form__inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.lead-form__title {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 400;
  color: #64b733;
  margin-bottom: 1rem;
}

.lead-form__subtitle {
  margin: 0 0 44px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.lead-form__card {
  max-width: 782px;
  margin: 0 auto;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #dcdfe5;
  padding: 43px;
}

.lead-form__card .wpcf7 {
  margin: 0;
}

.lead-form__card .wpcf7 form {
  margin: 0;
}

.lead-form__card .wpcf7-form p {
  margin: 0;
}

.lead-form__card label {
  display: block;
  text-align: left;
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  color: #76bf4c;
}

.lead-form__card .lead-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.lead-form__card input[type=text],
.lead-form__card input[type=email],
.lead-form__card input[type=tel],
.lead-form__card textarea {
  max-width: 100%;
  border: 1px solid #e2e5f0;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 16px;
  line-height: 1.2;
  color: #1b191a;
  background: #ffffff;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.lead-form__card input[type=email] {
  width: 95%;
}

.lead-form__card textarea {
  min-height: 210px;
  resize: none;
  width: 95%;
}

.lead-field.lead-field--full {
  margin-block: 20px;
}

.wpcf7-spinner {
  position: absolute;
}

.lead-form__card input::-moz-placeholder, .lead-form__card textarea::-moz-placeholder {
  color: #b2b6c6;
  opacity: 1;
}

.lead-form__card input::placeholder,
.lead-form__card textarea::placeholder {
  color: #b2b6c6;
  opacity: 1;
}

.lead-form__card input:focus,
.lead-form__card textarea:focus {
  border-color: #d6daf0;
}

.lead-form__card .lead-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.lead-form__card input[type=submit] {
  border: 0;
  background: #8be67d;
  color: #0b0b0b;
  border-radius: 999px;
  padding: 14px 46px;
  font-size: 16px;
  font-weight: 400;
  width: 291px;
  margin-bottom: 1rem;
  cursor: pointer;
}

.lead-form__card input[type=submit]:hover {
  filter: brightness(0.98);
}

.lead-form__card .lead-note {
  margin: 18px 0 0;
  text-align: center;
  color: #4d4d7c;
  font-size: 14px;
  line-height: 1.4;
}

.lead-form__card .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  text-align: left;
}

.lead-form__card .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 13px;
}

@media (max-width: 980px) {
  .lead-form {
    padding: 48px 16px 70px;
  }
  .lead-form__title {
    font-size: 34px;
  }
  .lead-form__subtitle {
    margin-bottom: 28px;
  }
  .lead-form__card {
    padding: 28px 18px 24px;
  }
  .lead-form__card .lead-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .lead-form__card .lead-field--full {
    grid-column: auto;
  }
  .lead-form__card input[type=submit] {
    width: 100%;
    max-width: 360px;
  }
}
@media (max-width: 1300px) {
  .hero:before {
    display: none;
  }
  .hero-stats {
    max-width: 67%;
  }
}
@media (max-width: 990px) {
  .none {
    display: none;
  }
  .hero__title {
    font-size: 40px;
  }
  .hero-stats {
    max-width: 67%;
    height: auto;
    padding-block: 2rem;
    border-radius: 50px;
    gap: 20px;
  }
  .hero:after {
    height: 1154px;
  }
  .challenge:before {
    top: -13rem;
    height: 246px;
  }
  .challenge:after {
    bottom: 0;
  }
  .challenge__cta {
    position: relative;
    z-index: 8;
  }
  .ecosystem {
    margin-top: 6rem;
  }
  .ecosystem__grid.mob {
    position: inherit;
    transform: none;
  }
  .ecosystem__center {
    position: initial;
    transform: none;
    background: no-repeat;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
  }
  .ecosystem__center-inner {
    padding: 0;
  }
  .ecosystem__center h2 {
    font-size: 36px;
  }
  .ecosystem .ecosystem-step {
    position: initial;
  }
  .ecosystem .benefits {
    padding: 3rem 1.5rem 4rem;
  }
  .ecosystem .benefits__inner {
    flex-wrap: wrap;
    gap: 20px;
  }
  .ecosystem .benefits-card {
    width: 100%;
  }
  .rehoming-tabs__switch {
    width: 100%;
  }
  .rehoming-panels .text p {
    width: 100%;
  }
  .rehoming-panel.is-active h3 {
    width: 100%;
    font-size: 28px;
  }
  .packages-grid {
    width: 100%;
  }
  .ecosystem-step__content {
    width: 90%;
  }
  .esg {
    padding-top: 1rem;
  }
  .cashback__inner {
    padding-inline: 1rem;
  }
  .cashback__right {
    width: 100%;
    margin-top: 3rem;
  }
  .cashback-card {
    text-align: center;
  }
  .cashback-card h3 {
    width: 100%;
  }
  .workflow__title {
    width: 100%;
  }
  .workflow-card {
    height: auto;
  }
  .lead-form:after {
    top: -13rem;
  }
  .workflow {
    padding-bottom: 6rem;
  }
  .lead-form {
    padding: 0px 16px 70px;
  }
  .ecosystem li {
    display: grid;
    grid-template-columns: 24px auto;
  }
  .ecosystem .benefits-card {
    padding-inline: 20px;
  }
  .tier-card {
    padding-inline: 30px;
  }
  .rehoming-tab {
    font-size: 13px;
  }
  .pilot__inner .pilot__benefits {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    justify-items: start;
  }
  .pilot__btn {
    width: 100%;
  }
  .pilot:after {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */