:root {
  --primary: #2d2fa8;
  --primary-light: #4f7cff;
  --accent: #55efd8;
  --bg-light: #f4f4f7;
  --white: #ffffff;
  --text: #2b2b2b;
  --text-light: #6c6c7a;
  --border: #dddddd;
  --danger: #ef4444;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --hero-bg: #e9e9e9;
  --hero-title: #6b6b6b;
  --hero-blue: #0c76cc;
  --nav-blue: #2d5b9b;
  --header-button: #3437b8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  padding-left: 18px;
}

.container {
  width: min(1550px, 100%);
  margin: 0 auto;
}

.section-light {
  position: relative;
  z-index: 1;
}

.section-dark {
  background: var(--primary);
  color: var(--white);
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

/* HEADER */
.header {
  background: var(--white);
  border-bottom: none;
  position: relative;
  z-index: 2;
}

.nav {
  min-height: 118px;
  display: grid;
  grid-template-columns: 220px 1px 1fr 210px;
  align-items: center;
  gap: 34px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 74px;
  width: auto;
}

.logo-divider {
  margin-left: -90px;
  width: 3px;
  height: 65px;
  background: #bfe6ef;
  justify-self: center;
}

.menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 56px;
  font-size: 0.98rem;
  color: var(--nav-blue);
  text-transform: uppercase;
}

.menu a {
  transition: 0.2s ease;
}

.menu a:hover {
  opacity: 0.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.2s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  justify-self: end;
  background: #3437b8;
  color: var(--white);
  min-width: 182px;
  min-height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 500;
}

.btn-secondary {
  background: var(--primary-light);
  color: var(--white);
}

.btn-outline {
  border-color: var(--primary-light);
  color: var(--primary-light);
  background: transparent;
}

.steps-phone img {
  max-width: 100%;
}

.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

/* HERO */
.hero {
  background: var(--hero-bg);
  padding: 0;
  position: relative;
  overflow: visible;
  z-index: 20;
}

.hero-content {
  min-height: 839px;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: start;
  gap: 0;
  position: relative;
}

.hero-text {
  padding-top: 150px;
  max-width: 1900px;
  max-height: 1900px;
  position: relative;
  z-index: 3;
}

.hero-text h1 {
  font-size: 3.4rem;
  line-height: 0.97;
  margin-bottom: 17px;
  color: var(--hero-title);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: -1px;
}

.hero-text p {
  font-size: 2.6rem;
  color: var(--hero-blue);
  margin-bottom: 34px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.08;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-store {
  margin-top: 260px;
  position: relative;
  z-index: 3;
}

.store-badge img,
.hero-store img {
  width: 175px;
  height: auto;
}

.hero-image,
.hero-visual {
  position: absolute;
  right: 7rem;
  top: 0;
  width: 52%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-note {
  position: absolute;
  right: 10rem;
  bottom: 8rem;
  font-size: 0.9rem;
  color: #6c6c7a;
  font-weight: 500;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-image img,
.hero-visual img {
  position: absolute;
  right: -5px;
  top: -30px;
  width: 1450px;
  max-width: none;
  height: auto;
}

/* ABOUT */
.about {
  position: relative;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  padding: clamp(48px, 6vw, 100px) 0;
  z-index: 1;
}

.about::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to bottom, #1733ff, #66b0ff);
  z-index: 0;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 90px);
  min-height: clamp(520px, 58vw, 900px);
}

.about-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card {
  position: relative;
  width: min(100%, 520px);
  background: #f2f2f2;
  border-radius: 50px;
  padding: clamp(28px, 4vw, 70px);
  z-index: 2;
  transform: translateX(180px);
}

.about-card p {
  color: #333333;
  line-height: 1.8;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
}

.marca {
  color: #2e3192;
  font-weight: 600;
}

.about-image {
  position: relative;
  max-width: 580px;
  width: min(100%, 580px);
  transform: translateX(-30px);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.pill {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.pill-dark {
  top: clamp(-30px, 2vw, 10px);
  left: clamp(-40px, 1vw, 20px);
  width: clamp(110px, 12vw, 180px);
  transform: translate(120px, -70px);
}

.pill-light {
  bottom: clamp(-35px, 1vw, 10px);
  left: clamp(-20px, 2vw, 30px);
  width: clamp(70px, 8vw, 110px);
  transform: translate(110px, 50px);
  z-index: 2;
}

.steps {
  padding-top: 100px;
  background: #f3f3f6;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 80px;
  padding-bottom: 5rem;
}

.steps-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 55px;
  padding-left: 90px;
  flex: 1.3;
  max-width: 800px;
}

.steps-list::before {
  content: "";
  position: absolute;
  left: 7.6rem;
  top: 20px;
  bottom: 10px;
  width: 8px;
  background: #49fbdf;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  min-height: 80px;
  z-index: 2;
}

.step span {
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  place-items: center;
  font-weight: bold;
  color: #49fbdf;
}

.step span:first-child {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  background: #3b3db7;
  color: #49fbdf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 600;
}

.step p {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.5;
  max-width: 560px;
}

.step-highlight {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: #2e3192 !important;
  font-weight: 600;
  font-size: inherit !important;
  line-height: inherit !important;
  display: inline !important;
}

.steps-phone {
  position: relative;
  transform: translateY(-30px);
}

.steps-store {
  position: absolute;
  width: 220px;
  left: 70px;
  bottom: 145px;
  z-index: 3;
}

.steps-store img {
  width: 100%;
  height: auto;
  display: block;
}

/* TITLES */
.highlight-text h2,
.pricing-content h2,
.support-text h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #2e3192;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight {
  position: relative;
  width: 100%;
  min-height: 950px;
  background: #2E3192;
  padding: 0;
  overflow-x: clip;
  overflow-y: visible;
  z-index: 3;
}

.highlight::before,
.highlight::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.highlight::before {
  width: 500px;
  height: 1140px;
  top: -3rem;
  border: 2px solid #49fbdf;
  border-radius: 1500px;
  transform: rotate(45deg);
}

.highlight::after {
  width: 500px;
  height: 320px;
  right: -270px;
  top: 4.3rem;
  border: 2px solid #49fbdf;
  border-left: none;
  border-bottom: none;
  border-radius: 1000px 1400px 0 0;
  transform: rotate(260deg);
}

.highlight > * {
  position: relative;
  z-index: 2;
}

.highlight-grid,
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.highlight-image img {
  margin-left: -6.2rem;
  margin-top: 4.2rem;
  width: clamp(420px, 32vw, 760px);
  max-width: 100%;
  height: auto;
}

.highlight-text {
  margin-left: -40px;
  margin-top: 10rem;
  max-width: 1000px;
  color: #ffffff;
}

.highlight-text h2 {
  font-size: 3.5rem;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 26px;
  color: #ffffff;
}

.highlight-text h2 span {
  color: #49fbdf;
}

.highlight-text p {
  margin-bottom: 16px;
}

.highlight-text ul {
  margin-top: 4rem;
  margin-bottom: 24px;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 34px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-list li {
  position: relative;
  padding-left: 50px;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #ffffff;
}

.handPhone-badge {
  margin-left: 20rem;
  margin-top: -10rem;
  width: 600px;
}

.highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  background: url("../img/verification.png") no-repeat center center;
  background-size: contain;
}

.highlight-badge {
  display: inline-block;
  border: 2px solid #49fbdf;
  border-radius: 999px;
  padding: 20px 60px;
  color: #49fbdf;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.15;
  text-transform: uppercase;
}

/* SUPPORT */
.support {
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}

.support-text {
  max-width: 700px;
  margin-left: 0;
}

.support-text p {
  font-size: 1.2rem;
  line-height: 1.45;
  color: #3e3e3e;
  margin-bottom: 18px;
  font-weight: 500;
}

.support-note {
  display: inline-block;
  font-size: 1.3rem;
  color: #2e3192;
  margin-bottom: 150px;
  font-weight: 700;
  margin-top: 10px;
}

.support-btn {
  width: 30rem;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #2e3192;
  color: #ffffff;
  border-radius: 999px;
  padding: 18px 34px;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
}

.support-btn img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.support-image {
  position: relative;
  width: 700px;
  max-width: 100%;
  z-index: 2;
}

.support-image img {
  margin-left: 5rem;
  width: 100%;
  height: auto;
  display: block;
}

.shape {
  position: absolute;
  display: block;
  z-index: 1;
}

/* IDEAL */
.ideal {
  background: #f3f3f6;
  padding: 70px 0 90px;
}

.ideal-title {
  text-align: center;
  font-size: 2.8rem;
  color: #252795;
  font-weight: 900;
  margin-bottom: 52px;
  text-transform: uppercase;
}

.ideal-cards {
  margin-top: 4rem;
  display: flex;
  gap: 100px;
  justify-items: center;
  justify-content: center;
}

.ideal-card {
  width: 100%;
  max-width: 280px;
  background: #e6e6e6;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 25px;
  text-align: center;
}

.ideal-card img {
  width: 100px;
  height: auto;
  margin-bottom: 18px;
}

.ideal-card img.icon4 {
  width: 60px;
}

.ideal-card p {
  font-size: 0.95rem;
  line-height: 1.45;
  color: #3b3b3b;
}

.ideal-pricing-wrap {
  position: relative;
}

.ideal-top {
  background: #f3f3f6;
  padding: 50px 0 240px;
}

.ideal-floating-cards {
  position: absolute;
  top: 180px;
  left: 0;
  width: 100%;
  z-index: 5;
}

/* PRICING */
.pricing-content {
  text-align: center;
}

.pricing-boxes {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.price-card {
  border-radius: var(--radius);
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
}

.old-price {
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.app-price {
  background: var(--primary-light);
}

.pricing-custom {
  position: relative;
  background: #2E3192;
  min-height: 1150px;
  padding: 0;
  overflow-x: clip;
  overflow-y: hidden;
  z-index: 0;
}

.pricing-custom::before,
.pricing-custom::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.pricing-custom::before {
  width: 650px;
  height: 1480px;
  left: -580px;
  top: 2rem;
  border: 2px solid #49fbdf;
  border-radius: 999px;
  transform: rotate(45deg);
}

.pricing-line-bottom {
  position: absolute;
  display: block;
  width: 1000px;
  height: 600px;
  left: 100px;
  bottom: -450px;
  border: 2px solid #49fbdf;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  border-radius: 1400px;
  transform: rotate(130deg);
}

.pricing-custom-wrap {
  position: relative;
  overflow: visible;
}

.pricing-custom-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  top: 60rem;
  width: 100%;
  height: 58rem;
  background: url("../img/risco-direita.png") no-repeat right bottom;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}

.pricing-wrap {
  position: relative;
  z-index: 2;
  padding: 140px 0 0;
}

.pricing-wrap h2 {
  text-align: center;
  color: #ffffff;
  font-size: 3.4rem;
  font-weight: 900;
  margin-bottom: 70px;
  margin-top: 25rem;
  text-transform: uppercase;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 300px 360px;
  justify-content: center;
  align-items: start;
  column-gap: 30rem;
  row-gap: 24px;
}

.traditional-box {
  width: 25rem;
  grid-column: 1;
  grid-row: 1;
  border: 4px solid #1e1f65;
  border-radius: 28px;
  padding: 44px 24px;
  text-align: center;
}

.traditional-box h3 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.traditional-price {
  background: #eb312d;
  color: #ffffff;
  border-radius: 20px;
  padding: 13px 21px;
  font-size: 1.7rem;
  line-height: 1.35;
  text-transform: uppercase;
  font-weight: 800;
}

.cpf-price-area {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  width: 360px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.cpf-box {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 50px;
  position: relative;
}

.cpf-badge {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  background: #f2f2f2;
  border-radius: 12px;
  padding: 35px 15px;
  z-index: 6;
}

.cpf-badge img {
  width: 122px;
  height: auto;
  display: block;
}

.cpf-price-card {
  width: 360px;
  min-height: 300px;
  background: url("../img/cardPreco.png") no-repeat center center;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  padding: 52px 20px 4px;
  position: relative;
}

.price-top {
  margin-top: 1rem;
  margin-left: 2.1rem;
  margin-right: 9rem;
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 900;
  color: #ffffff;
}

.cpf-price-value {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

.price-currency {
  font-size: 1.8rem;
  line-height: 1;
  color: #ffffff;
  margin-top: 15px;
  font-weight: 900;
}

.price-number {
  font-size: 4rem;
  line-height: 0.9;
  color: #49fbdf;
  font-weight: 500;
  letter-spacing: -2px;
}

.price-period {
  margin-left: 8rem;
  font-size: 1.15rem;
  line-height: 1;
  margin-top: 2px;
  font-weight: 900;
  color: #ffffff;
}

.verification-badge {
  position: absolute;
  right: -82px;
  top: 5.5rem;
  width: 120px;
  max-width: none;
  height: auto;
  z-index: 4;
}

.cpf-text-area {
  grid-column: 2;
  grid-row: 2;
  max-width: 360px;
  margin-top: 8px;
}

.cpf-text-area p {
  margin-top: 2rem;
  width: 40rem;
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.cpf-text-area p span {
  color: #49fbdf;
}

.cpf-text-area ul {
  margin-top: 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.cpf-text-area li {
  position: relative;
  padding-left: 40px;
  color: #ffffff;
  font-size: 1.5rem;
}

.cpf-text-area li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 25px;
  height: 25px;
  background: url("../img/verification.png") no-repeat center center;
  background-size: contain;
}

.pricing-hand {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-10px);
  width: 110px;
  height: auto;
  z-index: 3;
}

.cpf-text {
  max-width: 430px;
}

.cpf-text p span {
  color: #49fbdf;
}

.cpf-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.cpf-text li {
  position: relative;
  padding-left: 26px;
  color: #ffffff;
  font-size: 0.95rem;
}

.cpf-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  background: url("../img/verification.png") no-repeat center center;
  background-size: contain;
}

.big-price {
  font-size: 2rem;
  font-weight: bold;
  margin: 12px 0;
}

/* CONTACT */
.contact-wrap {
  position: relative;
  overflow: visible;
}

.contact-section {
  height: 1000px;
  position: relative;
  background: #3437a8;
  color: #ffffff;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  padding: 30px 0 100px;
  overflow: visible;
  z-index: 1;
}

.contact-container {
  width: min(1440px, calc(100% - 140px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-header {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  column-gap: 80px;
  margin-bottom: 90px;
}

.contact-header-left {
  max-width: 420px;
  padding-left: 0;
  padding-top: 0;
  margin-left: 2rem;
}

.contact-header-left h3 {
  width: 50rem;
  color: #49FBDF;
  font-size: 2.3rem;
  line-height: 1.05;
}

.contact-header-left h4 {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  line-height: 1.1;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.contact-header-left p {
  font-size: 1.15rem;
  line-height: 1.35;
  color: #ffffff;
}

.contact-header-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  min-width: 390px;
  padding-top: 0;
}

.contact-download-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 400px;
  min-height: 60px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7a4cff 0%, #209cff 100%);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-download-btn span {
  color: #49f5de;
  margin-left: 6px;
}

.google-play-badge {
  width: 200px;
  height: auto;
  display: block;
}

.contact-main {
  margin-top: 17rem;
  display: flex;
  width: 100rem;
  grid-template-columns: 300px 700px;
  justify-content: center;
  column-gap: 23rem;
  align-items: center;
}

.contact-left {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-left h2 {
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 200px;
  margin-top: -6rem;
}

.contact-brand img {
  margin-top: 5rem;
  width: 300px;
  height: auto;
  display: block;
}

.contact-right {
  padding-top: 20px;
  width: 100%;
}

.contact-form-custom {
  width: 100%;
  max-width: 700px;
  margin-top: -8rem;
}

.contact-form-custom input,
.contact-form-custom textarea {
  width: 100%;
  background: transparent;
  border: 2px solid #18bfff;
  border-radius: 6px;
  color: #ffffff;
  outline: none;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
}

.contact-form-custom input {
  height: 44px;
  padding: 0 14px;
  margin-bottom: 10px;
}

.contact-form-custom textarea {
  min-height: 150px;
  padding: 14px;
  resize: none;
  margin-bottom: 14px;
}

.contact-form-custom input::placeholder,
.contact-form-custom textarea::placeholder {
  color: #ffffff;
  opacity: 1;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-send-btn {
  min-width: 90px;
  height: 46px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #7a4cff 0%, #209cff 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.contact-bottom-info {
  max-width: 700px;
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}

.contact-info {
  margin-top: 0;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.contact-phone img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.contact-phone span {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 1.3rem;
}

.contact-email {
  font-size: 0.9rem;
  color: #ffffff;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 0;
}

.contact-social a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.contact-line {
  position: absolute;
  pointer-events: none;
}

.contact-line-left {
  left: 0;
  top: 400px;
  width: 120px;
  z-index: 1;
}

.contact-line-bottom {
  position: absolute;
  right: 120px;
  bottom: -5px;
  width: 500px;
  z-index: 3;
  pointer-events: none;
}

.contact-footer {
  position: relative;
  background: #171963;
  padding: 50px 0 50px;
  z-index: 1;
}

.contact-line-shared {
  position: absolute;
  right: 140px;
  bottom: 0px;
  width: 900px;
  z-index: 10;
  pointer-events: none;
}

.contact-footer .container {
  width: min(1440px, calc(100% - 140px));
  margin: 0 auto;
}

.contact-footer p {
  font-size: 0.8rem;
  color: #ffffff;
  margin: 0;
  padding-left: 0;
}

.contact-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  border-radius: 10px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-message {
  min-height: 20px;
  font-size: 0.95rem;
}

.footer {
  font-family: 'Inter', sans-serif;
  background: #202278;
  color: var(--white);
  padding: 20px 0;
}

@media (min-width: 1921px) {
  .container {
    width: min(1550px, 100%);
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: minmax(420px, 560px) minmax(500px, 760px);
    gap: 100px;
  }

  .about-image {
    width: min(100%, 760px);
  }

  .about-image img {
    max-width: 100%;
    margin-left: 0;
  }

  .highlight-text {
    font-size: 4rem;
    width: 80rem;
    margin: 0 auto;
  }

  .highlight-text h2{
    margin-top: 20rem;
  }

  .highlight {
    min-height: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: clip;
    overflow-y: visible;
  }

  .highlight-image img {
    margin-left: -15rem;
    width: 800px;
    max-width: 800px;
    margin-right: 14.7rem;
    margin-top: 16rem;
    transform: translateX(-10px);
  }

  .pricing-custom-wrap::after {
    top: 50rem;
    height: 68rem;
  }

  .pill-dark {
    width: 180px;
  }

  .pill-light {
    width: 110px;
  }

  .highlight-grid{
    gap: 10rem;
  }

  .support-image img{
    margin-left: 20rem;
  }

  .highlight::before{
    right: 109.7rem;
    width: 700px;
    height: 1540px;
    top: -3rem;
    border: 2px solid #49fbdf;
    border-radius: 1500px;
    transform: rotate(45deg);
  }
}

@media (max-width: 1750px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(1250px, 100%);
  }

  .header {
    position: relative;
    z-index: 5;
    overflow: visible;
  }

  .nav {
    min-height: 96px;
    grid-template-columns: 200px 1px 1fr 120px;
    gap: 20px;
    position: relative;
    z-index: 5;
  }

  .hero {
    height: 775px;
    position: relative;
    overflow: visible;
    z-index: 10;
  }

  .hero-content {
    min-height: 720px;
    display: grid;
    grid-template-columns: 660px 1fr;
    align-items: start;
    gap: 0;
    position: relative;
    overflow: visible;
  }

  .hero-text {
    padding-top: 150px;
    max-width: 660px;
    margin-left: 2.5rem;
    position: relative;
    z-index: 3;
  }

  .highlight {
    min-height: 850px;
  }

  .pricing-wrap h2 {
    font-size: 3rem;
  }

  .pricing-custom::before {
    width: 650px;
    height: 1480px;
    left: -720px;
    top: 2rem;
    border: 2px solid #49fbdf;
    border-radius: 999px;
    transform: rotate(45deg);
  }

  .highlight-image img {
    width: 600px;
    max-width: 600px;
    margin-left: -8rem;
    margin-top: 5rem;
  }

  .highlight::before {
    margin-left: -5rem;
    width: 500px;
    height: 1040px;
    top: -3.4rem;
    border: 2px solid #49fbdf;
    border-radius: 1500px;
    transform: rotate(46deg);
  }

  .steps-list::before {
    content: "";
    position: absolute;
    left: 7.6rem;
    top: 20px;
    bottom: 10px;
    width: 8px;
    height: 50rem;
  }

  .pricing-custom-wrap::after {
    top: 55rem;
  }

  .pricing-custom::after {
    top: 60rem;
  }

  .steps-store img {
    margin-left: -3.4rem;
    margin-bottom: -3rem;
  }

  .hero-text h1 {
    font-size: 3rem;
    line-height: 1.04;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    max-width: 800px;
    margin-left: -2.5rem;
    font-weight: 600;
  }

  .support {
    padding: 90px 0 70px;
  }

  .ideal-floating-cards {
    top: 150px;
  }

  .ideal-card p {
    font-weight: 500;
  }

  .hero-text p {
    margin-left: -2.5rem;
    font-size: 2.3rem;
    line-height: 1.15;
    margin-bottom: 0;
    max-width: 700px;
    font-weight: 700;
  }

  .support-btn {
    margin-top: -3rem;
  }

  .hero-buttons {
    position: absolute;
    left: 2.5rem;
    top: 470px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    z-index: 4;
  }

  .highlight-text h2 {
    font-size: 2.5rem;
  }

  .highlight-text {
    margin-left: -40px;
    margin-top: 7rem;
    max-width: 1000px;
    color: #ffffff;
  }

  .support-text h2 {
    font-size: 2.9rem;
  }

  .hero-buttons .btn,
  .hero-buttons a {
    min-width: 520px;
    height: 68px;
    padding: 0 28px;
    font-size: 0.98rem;
    border-radius: 999px;
  }

  .hero-store {
    position: absolute;
    left: 2.5rem;
    top: 560px;
    margin: 0;
    z-index: 4;
  }

  .hero-note {
    right: -1rem;
    top: 41rem;
  }

  .hero-store img {
    height: auto;
    margin-top: 4rem;
    margin-left: -5.5rem;
  }

  .cpf-text-area p {
    font-size: 1.7rem;
  }

  .cpf-text-area {
    margin-left: 7rem;
  }

  .cpf-price-area {
    margin-left: 7rem;
  }

  .pricing-layout {
    column-gap: 15rem;
  }

  .hero-image,
  .hero-visual {
    position: absolute;
    right: 4.6rem;
    top: -1.5rem;
    width: 58%;
    height: 100%;
    z-index: 20;
    pointer-events: none;
  }

  .hero-image img,
  .hero-visual img {
    position: absolute;
    right: -10rem;
    top: -10px;
    width: 1350px;
    max-width: none;
    height: auto;
  }

  .support-image img {
    margin-left: 9rem;
    width: 650px;
  }

  .ideal-top {
    margin-top: 5rem;
    background-color: white;
  }

  /* ABOUT */
  .about {
    padding: 70px 0;
  }

  .about-grid {
    grid-template-columns: minmax(320px, 490px) minmax(420px, 600px);
    gap: 60px;
    min-height: 760px;
  }

  .about-card {
    max-width: 490px;
    padding: 45px 38px;
    transform: translateX(40px)
  }

  .about-image {
    width: min(100%, 600px);
  }

  .about-image img {
    width: 100%;
    margin-left: 0;
  }

  .pill-dark {
    transform: translate(-40px, -70px);
  }

  .pill-light {
    width: 90px;
    transform: translate(-40px, 50px);
  }

  .pricing-custom {
    background-color: #2E3192;
    background-size: cover, contain;
  }

  .handPhone-badge {
    margin-left: 15rem;
  }

  .pricing-line-bottom {
    width: 750px;
  }

  .step p {
    max-width: 700px;
  }
}

@media (max-width: 1366px) {
  .container {
    width: min(1280px, 94%);
  }

  .hero-content {
    min-height: 700px;
    grid-template-columns: 47% 53%;
    gap: 0;
  }

  .hero-text {
    padding-top: 78px;
    max-width: 610px;
  }

  .hero-text h1 {
    font-size: 3.9rem;
    line-height: 0.98;
  }

  .hero-text p {
    font-size: 1.38rem;
    margin-bottom: 38px;
  }

  .hero-image img,
  .hero-visual img {
    width: 980px;
    right: -85px;
    top: -48px;
  }

  .store-badge img,
  .hero-store img {
    width: 162px;
  }

  .steps-store {
    left: 60rem;
    top: 31rem;
    width: 200px;
  }

  .pricing-layout {
    column-gap: 16rem;
  }

  .traditional-box {
    width: 22rem;
  }

  .cpf-text-area p {
    width: 28rem;
    font-size: 2rem;
  }
}

@media (max-width: 1200px) {
  .nav {
    min-height: 96px;
    grid-template-columns: 150px 1px 1fr 150px;
    gap: 20px;
  }

  .logo img {
    height: 54px;
  }

  .logo-divider {
    height: 42px;
  }

  .menu {
    gap: 24px;
    font-size: 0.86rem;
  }

  .btn-primary {
    min-width: 138px;
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.82rem;
  }

  .hero-content {
    min-height: 680px;
    grid-template-columns: 50% 50%;
    position: relative;
  }

  .hero-text {
    padding-top: 92px;
    max-width: 430px;
    z-index: 3;
  }

  .hero-text h1 {
    font-size: 2.8rem;
    line-height: 0.95;
    margin-bottom: 12px;
    max-width: 420px;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 18px;
    max-width: 420px;
  }

  .hero-store {
    margin-top: 120px;
    z-index: 3;
  }

  .hero-store img,
  .store-badge img {
    width: 138px;
  }

  .hero-image,
  .hero-visual {
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 1;
  }

  .hero-image img,
  .hero-visual img {
    width: 60rem;
    right: -50px;
    top: 40px;
  }

  .about {
    padding: 4rem 0;
    min-height: auto;
  }

  .about-grid {
    grid-template-columns: minmax(280px, 440px) minmax(280px, 430px);
    gap: 40px;
    min-height: auto;
  }

  .about-card {
    max-width: 440px;
    padding: 45px 38px;
  }

  .about-image {
    width: min(100%, 430px);
  }

  .pill-dark {
    width: 140px;
    left: -10px;
    top: 0;
  }

  .pill-light {
    width: 90px;
    left: 0;
    bottom: -20px;
  }

  .steps {
    padding-bottom: 5rem;
  }

  .steps-store {
    left: auto;
    right: 4rem;
    top: 29rem;
    width: 180px;
  }

  .steps-list::before {
    content: "";
    position: absolute;
    left: 7.6rem;
    top: 20px;
    bottom: 10px;
    width: 8px;
  }

  .highlight-text {
    margin-left: 0;
    margin-top: 11rem;
  }

  .highlight-image img {
    margin-left: 0;
    max-width: 560px;
  }

  .pricing-wrap h2 {
    margin-top: 20rem;
    font-size: 2.8rem;
  }

  .pricing-layout {
    grid-template-columns: 280px 320px;
    column-gap: 8rem;
  }

  .traditional-box {
    width: 100%;
  }

  .cpf-price-area {
    width: 320px;
  }

  .cpf-price-card {
    width: 320px;
    min-height: 270px;
  }

  .verification-badge {
    right: -40px;
    width: 95px;
  }

  .cpf-text-area p {
    width: 24rem;
    font-size: 1.8rem;
  }

  .cpf-text-area li {
    font-size: 1.2rem;
  }

  .contact-container,
  .contact-footer .container {
    width: min(1600px, calc(100% - 80px));
  }

  .contact-header {
    column-gap: 50px;
  }

  .contact-main {
    width: 100%;
    margin-top: 10rem;
    column-gap: 8rem;
    justify-content: space-between;
  }

  .contact-left h2 {
    font-size: 3.2rem;
    margin-top: 90px;
    margin-bottom: 140px;
  }

  .contact-download-btn {
    min-width: 320px;
  }
}

/* TABLET */
@media (max-width: 980px) {
  .menu,
  .logo-divider {
    display: none;
  }

  .nav {
    grid-template-columns: 1fr auto;
    min-height: 78px;
    gap: 16px;
  }

  .logo img {
    height: 48px;
  }

  .btn-primary {
    min-width: 120px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .hero-content,
  .about-grid,
  .steps-grid,
  .highlight-grid,
  .support-grid,
  .pricing-boxes,
  .form-row,
  .cards {
    grid-template-columns: 1fr;
  }

  /* HERO */
  .hero {
    overflow: hidden;
    padding-bottom: 30px;
    height: 530px;
  }

  .hero-content {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 0 20px;
  }

  .hero-text {
    padding-top: 30px;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.8rem;
    line-height: 1;
    max-width: 100%;
    margin-bottom: 14px;
  }

  .hero-text p {
    font-size: 1.2rem;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-store {
    margin-top: 14px;
    display: flex;
    justify-content: center;
  }

  .hero-image,
  .hero-visual {
    position: relative;
    width: 100%;
    height: auto;
    right: auto;
    top: auto;
    display: flex;
    justify-content: center;
  }

  .hero-store img {
    width: 250px;
    height: 70px;
    margin-top: -22.5rem;
    margin-left: -25px;
  }

  .hero-image img,
  .hero-visual img {
    position: relative;
    width: min(100%, 620px);
    max-width: 620px;
    right: auto;
    top: auto;
    height: auto;
  }

  /* ABOUT */
  .about {
    height: auto;
    min-height: auto;
    padding: 2.5rem 0 0;
    overflow: hidden;
  }

  .about::after {
    width: 100%;
    height: 42%;
    top: auto;
    bottom: 0;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    min-height: auto;
  }

  .about-left,
  .about-right {
    justify-content: center;
    margin-left: -4rem;
  }

  .about-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 680px;
    padding: 30px 24px;
    border-radius: 28px;
    margin: 0 auto;
  }

  .about-card p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .about-image {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 380px);
    margin: 0 auto;
  }

  .about-image img {
    margin-left: 8rem;
    width: 100%;
    margin-left: 0;
  }

  .pill-dark,
  .pill-light {
    display: none;
  }

  .steps-grid {
    margin-bottom: -5rem;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .highlight::after {
    width: 0;
    height: 0;
  }

  .pricing-custom-wrap::after {
    width: 0;
    height: 0;
  }

  .steps-phone {
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .steps-phone img {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .steps-store {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 180px;
    margin: 16px auto 0;
    transform: none;
  }

  /* HIGHLIGHT */
  .highlight {
    aspect-ratio: auto;
    padding: 70px 0;
    background-size: cover;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .highlight-text {
    margin-top: 0;
    text-align: center;
  }

  .highlight-image img {
    margin: 0 auto;
    max-width: 300px;
  }

  /* SUPPORT */
  .support-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .support-text {
    max-width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .support-text h2 {
    font-size: 2.4rem;
  }

  .support-note {
    margin-bottom: 30px;
  }

  .support-btn {
    width: min(100%, 420px);
    margin: 0 auto;
    justify-content: center;
  }

  .support-image {
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .support-image img {
    margin-left: 0;
    width: 100%;
    object-fit: contain;
  }

  /* IDEAL */
  .ideal {
    padding: 60px 0 70px;
  }

  .ideal-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .ideal-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 2rem;
  }

  .ideal-card {
    max-width: 100%;
    padding: 34px 18px;
    border-radius: 18px;
  }

  .ideal-floating-cards {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    padding-bottom: 3rem;
  }

  .ideal-top {
    padding: 50px 0 70px;
  }

  /* PRICING */
  .pricing-custom {
    aspect-ratio: auto;
    overflow: hidden;
    background-size: cover;
  }

  .pricing-wrap {
    padding: 70px 0;
  }

  .pricing-wrap h2 {
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 2.2rem;
  }

  .pricing-layout {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 34px;
    column-gap: 0;
    justify-items: center;
  }

  .traditional-box,
  .cpf-price-area,
  .cpf-text-area {
    grid-column: auto;
    grid-row: auto;
  }

  .traditional-box {
    width: min(100%, 360px);
  }

  .cpf-price-area {
    width: min(100%, 330px);
    margin-left: 0;
  }

  .cpf-price-card {
    width: 100%;
  }

  .verification-badge {
    right: -10px;
    top: 4.5rem;
    width: 82px;
  }

  .cpf-text-area {
    margin-left: 0;
    max-width: 100%;
    text-align: center;
  }

  .cpf-text-area p {
    width: 100%;
    font-size: 1.6rem;
    margin-top: 0;
  }

  .cpf-text-area ul {
    margin-left: 10rem;
  }

  .cpf-text-area li {
    font-size: 1rem;
    text-align: left;
    display: inline-block;
  }

  .pricing-hand {
    position: static;
    width: 90px;
    transform: none;
    margin: 14px auto 0;
    display: block;
  }

  /* CONTACT */
  .contact-section {
    height: auto;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 30px 0 70px;
  }

  .contact-container,
  .contact-footer .container {
    width: min(100%, calc(100% - 40px));
  }

  .contact-header {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .contact-header-left {
    max-width: 100%;
  }

  .contact-header-left h3 {
    width: 100%;
  }

  .contact-header-right {
    min-width: auto;
    width: 100%;
    align-items: flex-start;
  }

  .contact-download-btn {
    min-width: 100%;
    white-space: normal;
    text-align: center;
    padding: 14px 18px;
  }

  .contact-main {
    margin-top: 3rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-left h2 {
    margin-left: 2.5rem;
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 2.8rem;
  }

  .google-play-badge {
    margin-left: 3.5rem;
  }

  .contact-brand img {
    margin-left: 3.5rem;
    width: 200px;
    margin-top: 0;
  }

  .contact-send-btn {
    margin-left: 7rem;
  }

  .contact-form-custom {
    max-width: 100%;
    margin-top: 0;
  }

  .contact-row,
  .contact-bottom-info {
    grid-template-columns: 1fr;
  }

  .contact-bottom-info {
    margin-top: 40px;
    gap: 20px;
  }

  .contact-social {
    justify-content: flex-start;
  }

  .contact-line-left {
    width: 70px;
    opacity: 0.5;
  }

  .contact-line-bottom {
    width: 280px;
    bottom: -55px;
    opacity: 0.7;
    right: 0;
  }

  .contact-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* CELULAR */
@media (max-width: 600px) {
  .container {
    width: min(100%, 92%);
  }

  .header {
    z-index: 50;
  }

  .nav {
    min-height: 72px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .logo img {
    height: 40px;
  }

  .btn-primary {
    min-width: 108px;
    min-height: 38px;
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .hero-content {
    padding: 20px 0 0px;
    gap: 18px;
  }

  .hero-text {
    padding-top: 16px;
    max-width: 100%;
  }

  .hero-text h1,
  .highlight-text h2,
  .pricing-content h2,
  .support-text h2,
  .contact h2,
  .section-title {
    font-size: 1.65rem;
  }

  .hero-text h1 {
    width: 400px;
    line-height: 1.02;
    max-width: 100%;
    margin-bottom: 10px;
  }

  .hero-text p {
    font-size: 0.95rem;
    margin-bottom: 14px;
    max-width: 100%;
    line-height: 1.2;
    margin-left: -2.8rem;
  }

  .hero-store {
    margin-top: 8px;
  }

  .hero-image img,
  .hero-visual img {
    width: min(100%, 360px);
    max-width: 360px;
    margin-top: 7rem;
  }

  .btn {
    width: auto;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* ABOUT */
  .about {
    padding: 1.5rem 0 0;
  }

  .about::after {
    height: 34%;
  }

  .about-card {
    padding: 18px 18px;
    border-radius: 22px;
  }

  .about-card p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .about-image {
    margin-left: 4rem;
    margin-right: -4rem;
    width: min(100%, 260px);
    margin-top: 8px;
  }

  /* STEPS */
  .steps {
    padding-top: 55px;
  }

  .steps-list {
    padding-left: 0;
    gap: 26px;
  }

  .steps-list::before {
    display: none;
  }

  .step {
    gap: 14px;
  }

  .step span:first-child {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 1.8rem;
  }

  .step p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .steps-phone img {
    padding-bottom: 2rem;
    width: min(100%, 300px);
  }

  .steps-store {
    width: 160px;
    margin-top: 12px;
  }

  /* HIGHLIGHT */
  .highlight {
    padding: 150px 0;
  }

  .highlight-list li {
    font-size: 1rem;
    padding-left: 36px;
  }

  .highlight-list li::before {
    width: 18px;
    height: 18px;
  }

  .highlight-badge {
    padding: 16px 26px;
    font-size: 0.9rem;
  }

  /* SUPPORT */
  .support {
    padding: 55px 0 60px;
  }

  .support-text h2 {
    font-size: 1.7rem;
    line-height: 1.15;
  }

  .support-text p {
    font-size: 0.95rem;
  }

  .support-note {
    font-size: 1rem;
    margin-bottom: 22px;
  }

  .support-btn {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.88rem;
    gap: 10px;
  }

  .support-btn img {
    width: 24px;
    height: 24px;
  }

  .support-image {
    width: min(100%, 280px);
  }

  .support-image img {
    width: 100%;
  }

  .contact-send-btn {
    margin-left: 7rem;
  }

  /* IDEAL */
  .ideal {
    padding: 50px 0 60px;
  }

  .ideal-title {
    font-size: 1.45rem;
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .ideal-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ideal-card {
    max-width: 100%;
    padding: 26px 16px;
    border-radius: 18px;
  }

  .ideal-card img {
    width: 78px;
    margin-bottom: 14px;
  }

  .ideal-card img.icon4 {
    width: 48px;
  }

  .ideal-card p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  /* PRICING */
  .pricing-wrap {
    padding: 105px 0 0px;
  }

  .handPhone-badge{
    margin-left: 0;
  }

  .pricing-wrap h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 28px;
  }

  .traditional-box {
    width: min(100%, 320px);
    padding: 26px 16px;
    border-radius: 22px;
  }

  .traditional-box h3 {
    font-size: 1.45rem;
    margin-bottom: 16px;
  }

  .traditional-price {
    font-size: 1.15rem;
    padding: 10px 16px;
    border-radius: 16px;
  }

  .cpf-price-area {
    width: min(100%, 300px);
  }

  .cpf-badge {
    top: -18px;
    padding: 16px 12px;
  }

  .cpf-badge img {
    width: 88px;
  }

  .cpf-price-card {
    min-height: 220px;
    padding: 36px 14px 10px;
  }

  .price-top {
    margin-right: 3.5rem;
    font-size: 0.8rem;
  }

  .price-currency {
    font-size: 1.25rem;
  }

  .price-number {
    font-size: 2.8rem;
  }

  .price-period {
    font-size: 0.8rem;
  }

  .verification-badge {
    display: none;
  }

  .cpf-text-area {
    margin-top: 2rem;
  }

  .cpf-text-area p {
    font-size: 1.2rem;
    line-height: 1.15;
  }

  .cpf-text-area li {
    font-size: 0.95rem;
    padding-left: 26px;
  }

  .cpf-text-area li::before {
    width: 16px;
    height: 16px;
    top: 4px;
  }

  .pricing-hand {
    width: 72px;
    margin-top: 10px;
  }

  /* CONTACT */
  .contact-section {
    padding: 22px 0 50px;
  }

  .contact-bottom-info {
    margin-top: 26px;
    gap: 16px;
  }

  .contact-phone span {
    font-size: 1rem;
  }
}