* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}

ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Kufam", sans-serif;
}

.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* BOTÃO TOPO */
#backToTop {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #9579da;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#backToTop img {
  transform: rotate(180deg);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  transform: translateY(-3px);
}

/* BOTÃO WHATSAPP */
.whatsapp-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-button img {
  width: 24px;
  height: 24px;
}

.whatsapp-button:hover {
  transform: translateY(-3px);
}

.navbar {
  max-width: 1176px;
  width: calc(100% - 20px);
  margin: 0 auto;
  background: #150626;
  border-radius: 16px;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translate(-50%, 0%);
  z-index: 999;
  border: 2px solid #220b3c;
}

.navbar .logo {
  width: 148px;
}

.navbar .menu {
  display: flex;
  gap: 48px;
  align-items: center;
}

.navbar .menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.navbar .menu a:hover {
  color: #9579da;
}

.navbar .menu .btn {
  background: #9579da;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
}

.navbar .menu .btn:hover {
  color: #fff;
  background: #866cca;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 1150px) {
  .navbar {
    padding: 16px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .navbar nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }

  .navbar .menu {
    flex-direction: column;
    gap: 20px;
    background: #150626;
    padding: 20px;
    border-radius: 16px;
    margin: 20px 0;
    display: none;
  }

  .navbar .menu.active {
    display: flex;
  }
}

.hero {
  display: flex;
  height: calc(100vh);
  position: relative;
  padding-top: 80px;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1216px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

.hero-left .img-float {
  position: absolute;
  width: 40px;
  animation: float 6s ease-in-out infinite;
}

.hero-left .img-float:nth-child(1) {
  top: 15%;
  left: -5%;
  animation-duration: 6s;
}

.hero-left .img-float:nth-child(2) {
  top: 15%;
  left: 35%;
  animation-duration: 7s;
}

.hero-left .img-float:nth-child(3) {
  bottom: 30%;
  left: -10%;
  animation-duration: 8s;
}

.hero-left .img-float:nth-child(4) {
  bottom: 10%;
  left: 5%;
  animation-duration: 9s;
}

.hero-left .img-float:nth-child(5) {
  top: 55%;
  left: 45%;
  animation-duration: 10s;
}

.hero-left .img-float:nth-child(6) {
  top: 85%;
  left: 35%;
  animation-duration: 7s;
}

@keyframes float {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-30px) translateX(20px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}

@media (max-width: 1150px) {
  .hero-left .img-float:nth-child(1) {
    top: 10%;
    left: 4%;
  }

  .hero-left .img-float:nth-child(2) {
    top: 15%;
    right: 6%;
  }

  .hero-left .img-float:nth-child(3) {
    bottom: 10%;
    left: 5%;
  }

  .hero-left .img-float:nth-child(4) {
    bottom: 5%;
    left: 50%;
  }

  .hero-left .img-float:nth-child(5) {
    top: 11%;
    left: 85%;
  }

  .hero-left .img-float:nth-child(6) {
    top: 65%;
    left: 80%;
  }
}

.hero-left h1 {
  font-size: 44px;
  color: #333;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 500;
  max-width: 50%;
}

.hero-left h1 span {
  color: #9579da;
}

.hero-left p {
  color: #777;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 420px;
}

.hero-left .cta {
  background: #9579da;
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
  font-weight: 500;
  width: fit-content;
}

.hero-left .cta:hover {
  background: #866cca;
}

.hero-bottom {
  background: #866cca;
  padding: 24px 0;
}

.hero-bottom span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-bottom h2 {
  letter-spacing: 3px;
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.hero-right {
  flex: 1;
  position: absolute;
  right: 0;
  top: 0;
  width: 45vw;
  height: 100vh;
  z-index: -1;
  object-fit: cover;
}

@media (max-width: 1150px) {
  .hero-right {
    display: none;
  }
}

/* RESPONSIVO */
@media (max-width: 1150px) {
  .hero {
    flex-direction: column;
  }

  .hero-left .cta {
    margin: 0 auto;
  }

  .hero-left h1 {
    font-size: 36px;
    max-width: 100%;
  }

  .hero-bottom {
    justify-content: center;
  }

  .hero-left p {
    max-width: 100%;
  }

  .hero-left {
    text-align: center;
    padding: 20px;
  }
}

.about {
  padding: 120px 20px;
  background-image: url("../images/bg-about.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-header {
  margin-bottom: 64px;
  text-align: center;
}

.tag {
  color: #9579da;
  font-size: 18px;
  letter-spacing: 3px;
  font-weight: 600;
}

.about-header h2 {
  font-size: 48px;
  margin-top: 16px;
  color: #2d3436;
  line-height: 120%;
  font-weight: 400;
}

@media (max-width: 1150px) {
  .about-header .tag {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-header h2 {
    font-size: 34px;
    max-width: 100%;
    text-align: center;
  }
}

.about-header h2 span {
  color: #9579da;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card-about {
  border-radius: 16px;
  overflow: hidden;
  background: #f4f2fa;
  padding: 48px;
  position: relative;
  border: 1px solid #c9c8f6;
}

.small {
  width: calc(33.333% - 14px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.large {
  width: calc(66.666% - 10px);
  height: 400px;
  padding: 0;
}

@media (max-width: 950px) {
 .large {
  height: auto;
 }
}

.card-about.small img {
  width: 48px;
  margin-bottom: 24px;
}

.card-about.small h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #2d3436;
  font-weight: 500;
  line-height: 130%;
}

.card-about.small p {
  font-size: 20px;
  color: #5c5c6f;
  line-height: 160%;
}

.card-about.image img {
  width: 100%;
  height: auto;
  display: block;
}

.play {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

/* RESPONSIVO */
@media (max-width: 1150px) {
  .small,
  .large {
    width: 100%;
  }

  .container {
    padding: 0;
  }

  .about-header h2 {
    max-width: 100%;
  }
}

.wrapper {
  width: 100%;
  overflow: hidden;
}

.track {
  display: flex;
  width: max-content;
  gap: 150px;
  animation: scroll 50s linear infinite;
  will-change: transform;
  background: #9579da;
  padding: 32px 0;
}

.track img {
  width: 64px;
  flex-shrink: 0;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.connection {
  padding: 120px 20px;
}

.connection div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.connection img {
  width: 100%;
}

.connection h2 {
  font-size: 48px;
  color: #333;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.2;
  max-width: 50%;
}

@media (max-width: 1150px) {
  .connection h2 {
    font-size: 34px;
    max-width: 100%;
  }
}

.connection h2 span {
  color: #9579da;
}

.connection .tag {
  color: #9579da;
  font-size: 18px;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.differential {
  background: #f5f2ff;
}

.diff {
  max-width: 1216px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  padding: 120px 20px 30px 20px;
  align-items: center;
  flex-wrap: wrap;
}

.diff-two {
  max-width: 1216px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  padding: 0 20px 120px 20px;
  align-items: center;
  flex-wrap: wrap;
}

.cards-two {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.card-two {
  flex-grow: 1;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  width: calc(30% - 10px);
  border: 1px solid rgba(10, 13, 18, 0.1019607843);
  box-shadow: 10px 4px 60px 0px rgba(184, 184, 184, 0.25);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 50%;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  width: calc(50% - 10px);
  border: 1px solid rgba(10, 13, 18, 0.1019607843);
  box-shadow: 10px 4px 60px 0px rgba(184, 184, 184, 0.25);
}

.card h3,
.card-two h3 {
  font-size: 19px;
  margin: 12px 0;
  color: #333;
  font-weight: 500;
}

.card p,
.card-two p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

.content {
  width: 40%;
}

.tag {
  color: #9579da;
  font-size: 20px;
  letter-spacing: 3px;
  font-weight: semibold;
  margin-bottom: 16px;
}

.differential h2 {
  font-size: 48px;
  color: #333;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.differential span {
  color: #9579da;
}

.differential .content p {
  font-size: 20px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 48px;
}

.button {
  background: #9579da;
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
  font-weight: 500;
}

.button:hover {
  background: #866cca;
}

/* RESPONSIVO */
@media (max-width: 1150px) {
  .diff {
    flex-direction: column-reverse;
    padding: 120px 20px 20px 20px;
  }

  .differential h2 {
    font-size: 34px;
  }

  .cards,
  .cards-two,
  .content {
    width: 100%;
  }

  .content {
    text-align: center;
  }

  .content .tag {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .card,
  .card-two {
    width: 100%;
  }
}

.faq-section {
  background: #f5f2ff;
}

.container-faq {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 120px 20px;
  max-width: 1216px;
  margin: auto;
  gap: 120px;
}

.faq {
  flex: 1;
}

.faq-item {
  border-bottom: 1px solid #d8cafd;
  padding: 32px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  color: #333;
  font-weight: 500;
}

.faq-question p {
  width: 80%;
}

.faq-icon {
  background: #9579da;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
}

.faq-icon:hover {
  background: #a88af3;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #666;
  font-size: 16px;
  margin-top: 10px;
}

.faq-item.active .faq-answer {
  max-height: 100px;
}

.content-faq {
  flex: 1;
  width: 50%;
}

.content-faq h2 {
  font-size: 48px;
  color: #333;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.2;
  max-width: 90%;
}

.content-faq h2 span {
  color: #9579da;
}

.content-faq p {
  font-size: 20px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 32px;
}

.btn-faq {
  background: #9579da;
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
  font-weight: 500;
}

.btn-faq:hover {
  background: #866cca;
}

/* RESPONSIVO */
@media (max-width: 1150px) {
  .container-faq {
    flex-direction: column-reverse;
    padding: 64px 20px;
    gap: 48px;
  }

  .faq {
    flex: 1;
    width: 100%;
  }

  .content-faq {
    flex: 1;
    width: 100%;
    text-align: center;
  }

  .content-faq h2 {
    font-size: 32px;
    max-width: 100%;
  }
}

.features-container {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  flex-wrap: wrap;
}

.feature {
  flex-grow: 1;
  width: 22%;
  padding: 80px 60px;
}

.feature img,
.card-about.small img,
.diff .card img,
.card-two img {
  width: 48px;
  height: 48px;
}

@media (max-width: 1150px) {
  .feature {
    width: 47%;
  }
}

@media (max-width: 800px) {
  .feature {
    width: 97%;
  }
}

.feature img {
  margin-bottom: 20px;
}

.bg-feature {
  background: #f5f2ff;
}

.feature h2 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #2b2b2b;
  font-weight: 500;
}

.feature p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 1150px) {
  .features-container {
    justify-content: center;
  }

  .feature {
    max-width: 100%;
    text-align: center;
  }
}

.feedbacks {
  display: flex;
  justify-content: space-between;
  padding: 0 20px 120px 20px;
  gap: 60px;
  position: relative;
  z-index: 2;
  max-width: 1216px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.feedbacks h2 {
  font-size: 48px;
  color: #333;
  margin: 24px 0px;
  font-weight: 500;
  line-height: 1.2;
}

.feedbacks span {
  color: #9579da;
}

.feedbacks .feedbacks-left p {
  font-size: 20px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 48px;
}

.feedbacks-left {
  max-width: 500px;
  transform: translateY(120px);
}

.feedbacks-tag {
  color: #9579da;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 20px;
}

.feedbacks-title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.feedbacks-title span {
  color: #9579da;
}

.feedbacks-desc {
  color: #777;
  line-height: 1.6;
}

.feedbacks-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  transform: translateY(120px);
}

.feedbacks-card {
  background: #f1eefc;
  border: 1px solid #dcd6ff;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: center;
}

.feedbacks-avatar {
  width: 96px;
  object-fit: cover;
}

.feedbacks-card-content {
  flex: 1;
}

.feedbacks-quote {
  color: #9579da;
  font-size: 24px;
  margin-bottom: 10px;
}

.feedbacks-text {
  color: #666;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.feedbacks-name {
  font-weight: 500;
  font-size: 20px;
}

.feedbacks-stats {
  background: url("../images/wallpaper.jpg") no-repeat center;
  background-size: cover;
  padding: 80px;
  color: white;
  margin-top: -100px;
  position: relative;
  z-index: 1;
}

.feedbacks-stats-grid {
  display: flex;
  gap: 60px;
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 20px;
}

.feedbacks-stat {
  width: 20%;
  position: relative;
  padding-left: 20px;
  margin: 24px 0;
}

.feedbacks-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: #9579da;
}

.feedbacks-stat-number {
  font-size: 48px;
  font-weight: 500;
}

.feedbacks-stat-number span {
  color: #9579da;
}

.feedbacks-stat-label {
  font-size: 18px;
  margin-top: 8px;
  color: #c3c3c3;
}

@media (max-width: 1150px) {
  .feedbacks {
    padding: 120px 20px;
  }

  .feedbacks h2 {
    font-size: 34px;
  }

  .feedbacks-section {
    flex-direction: column;
    padding: 40px;
  }

  .feedbacks-right {
    transform: translateY(0);
  }

  .feedbacks-left {
    transform: translateY(0);
    text-align: center;
    max-width: 100%;
  }

  .feedbacks-stats {
    padding: 60px 40px;
    margin-top: 0px;
  }

  .feedbacks-stat {
    width: 47%;
  }

  .feedbacks-stats-grid {
    gap: 32px;
  }
}

.footer {
  background: #150626;
  color: #fff;
  padding: 80px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-left {
  max-width: 420px;
}

.footer-left img {
  width: 180px;
  margin-bottom: 24px;
}

.description {
  color: #cfcfe6;
  line-height: 1.6;
  font-size: 15px;
}

.footer-right {
  display: flex;
  gap: 80px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.column h2 {
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 10px;
  color: #cfcfe6;
  font-weight: 500;
}

.column a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: 0.2s;
}

.column a:hover {
  color: #9579da;
}

.footer-bottom {
  border-top: 1px solid #2f3347;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 16px;
  color: #cfcfe6;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a {
  width: 40px;
  height: 40px;
  background: #2a0a4a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.socials a:hover {
  background: #391360;
}

/* RESPONSIVO */
@media (max-width: 1150px) {
  .footer-container {
    flex-direction: column;
  }

  .footer {
    padding: 80px 20px;
  }

  .footer-right {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-bottom p {
    display: block;
    margin-bottom: 24px;
    width: 100%;
  }
}

.container-plan {
  background: #f5f2ff;
  width: 100%;
  padding: 120px 24px;
  color: #9579da;
}

.plan {
  margin: 0 auto;
  max-width: 1716px;
}

.plan h2 {
  font-weight: 400;
  font-size: 48px;
  text-align: center;
  margin-bottom: 32px;
}

.has-tooltip {
  position: relative;
}

.has-tooltip::after,
.has-tooltip::before {
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

/* Mostra quando estiver ativo */
.has-tooltip.active::after,
.has-tooltip.active::before {
  opacity: 1;
}

.has-tooltip::after {
  content: "Parcele em até 12x sem juros no cartão";
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #281a4a;
  color: #fff;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.has-tooltip::before {
  content: "";
  position: absolute;
  top: 105%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #281a4a transparent;
}

.toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e0d8fe;
  padding: 5px;
  width: fit-content;
  text-align: center;
  margin: 0 auto 32px auto;
}

@media (max-width: 750px) {
  .toggle {
    flex-wrap: wrap;
    width: 100%;
  }

  .toggle button {
    width: 100%;
  }
}

.toggle button {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  background: #ffffff;
  color: #281a4a;
  cursor: pointer;
}

.toggle button span {
  background: #281a4a;
  color: #fff;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 14px;
  margin-left: 5px;
  font-weight: 600;
}

.toggle button.active {
  background: #e7e7e7;
  color: #281a4a;
}

.cards-plan {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 80px;
}

.card-plan {
  background: #fff;
  padding: 40px 24px;
  border-radius: 20px;
  width: 23%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid #f0ebff;
}

.card-plan h3 {
  font-size: 32px;
  font-weight: 600;
  color: #281a4a;
}

.card-plan .plan-desc {
  color: #281a4a;
  margin-bottom: 12px;
}

.recommendation {
  border: 2px solid #281a4a;
  position: relative;
  box-shadow: 0 0 60px 0 #8524ce29;
}

.tag-recommendation {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translate(-50%, 50%);
  background: #281a4a;
  color: #fff;
  border-radius: 32px;
  padding: 4px 16px;
}

.features-plan {
  margin-bottom: 20px;
  text-align: left;
}

.features-plan li {
  list-style: none;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.features-plan li a {
  color: #291a4b;
  text-underline-offset: 4px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-style: dashed;
  text-decoration-style: dashed;
}

.features-plan li img {
  width: 20px;
}

.features-plan li p {
  font-weight: 400;
  color: #281a4a;
}

.features-plan li.inactive p {
  color: rgba(99, 99, 99, 0.5);
}

.inactive {
  color: rgba(99, 99, 99, 0.5);
}

.btn-plan {
  background: #16b701;
  padding: 12px;
  border-radius: 25px;
  border: none;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  font-size: 18px;
  text-align: center;
}

.btn-plan:hover {
  background: #15a402;
}

.price-old {
  font-size: 24px;
  color: #281a4a;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.oldNot {
  text-decoration: line-through;
}

.badge-off {
  background: #e8e2ff;
  color: #281a4a;
  font-size: 16px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
  text-decoration: none !important;
}

.price-current {
  font-size: 32px;
  font-weight: 600;
  color: #9579da;
}

.price-current span {
  font-size: 18px;
  color: #9579da;
}

.price-note {
  font-size: 14px;
  color: #281a4a;
}

/* RESPONSIVO */
@media (max-width: 1750px) {
  .card-plan {
    padding: 40px 10px;
    width: 23%;
    flex-grow: 1;
  }
  .price-current{
      font-size: 25px;
  }
}

@media (max-width: 1350px) {
  .cards-plan {
    flex-direction: column;
    align-items: center;
  }

  .plan h2 {
    font-size: 34px;
  }

  .card-plan {
    width: 100%;
    flex-grow: 1;
  }
}

.container-price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-weight: 500;
}

.container-price span {
  color: #9579da;
  font-size: 16px;
}

.pricing {
  padding: 120px 20px;
  max-width: 1416px;
  margin: 0 auto;
}

.pricing-table thead {
  position: sticky;
  top: 0;
  background: white;
  z-index: 2;
}

.name-plan {
  font-size: 25px;
  font-weight: 600;
  color: #281a4a !important;
}

.pricing-table {
  border-collapse: collapse;
  width: 100%;
  background: white;
}

.pricing-table th,
.pricing-table td {
  padding: 12px 0 12px 16px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #eee;
  color: #281a4a;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  color: #281a4a;
  width: 25%;
}

.plan-pricing {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.pricing th h2 {
  font-size: 28px;
  font-weight: 600;
  color: #9579da;
  font-family: "Poppins", sans-serif;
}

.pricing th h2 span {
  font-size: 16px;
}

.pricing th p {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 12px;
  color: black;
}

.btn {
  display: inline-block;
  background: #16b701;
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}

.btn:hover {
  background: #15a402;
}

.recommended {
  display: inline-block;
  background: #9579da;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

.check {
  color: #9579da;
  font-weight: bold;
}

tr:nth-child(even) td {
  /*background: #f3f4f6;*/
}

.pricing h3 {
  display: none;
}

.category-title {
  background-color: #f5f2ff;
}

.category-title td {
  color: #281a4a !important;
  font-weight: 500;
  font-size: 18px;
  background: #f5f2ff !important;
}

.category-title td:first-child {
  text-align: left;
}

@media (max-width: 1150px) {
  .container-price {
    flex-wrap: nowrap;
  }

  .pricing h2 {
    display: none;
  }

  .pricing-table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table th,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing th h3,
  .pricing th p {
    display: none;
  }

  .pricing-table thead tr {
    display: flex;
  }

  .pricing-table thead th {
    flex: 1;
    padding: 10px 5px;
    min-width: 0 !important;
  }

  .name-plan,
  .pricing-table thead .btn {
    display: none !important;
  }

  .pricing h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 32px;
    font-weight: 500;
    color: #9579da;
    display: block;
  }

  .plan-pricing {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
  }

  .pricing-table tbody {
    margin-top: 40px;
  }

  .pricing-table tbody tr {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
  }

  .pricing-table td:first-child {
    flex: 0 0 100%;
    text-align: center !important;
    padding: 10px 0 !important;
    background: #fff;
    color: #281a4a !important;
    font-weight: 500;
    font-size: 16px;
    position: static;
    border: none;
  }

  .pricing-table td:not(:first-child) {
    flex: 1;
    padding: 5px !important;
    border: none;
    min-width: 0 !important;
    background: transparent !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 16px !important;
  }

  .check {
    font-size: 20px;
  }
}

@media (max-width: 410px) {
  .container-price {
    gap: 4px;
  }
}

.connect-container {
  display: flex;
  min-height: 100vh;
  border-bottom: 1px solid #e7ddff;
}

.connect-left {
  flex: 1;
  background: #bca2ff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.connect-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  max-width: 560px;
  justify-content: center;
}

.connect-card {
  width: 124px;
  height: 124px;
  border: 4px solid #b8b3e6;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f5fb;
}

.connect-card img {
  width: 80px;
}

.connect-right {
  flex: 1;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.connect-right h2 {
  font-size: 28px;
  color: #333;
  margin: 24px 0px;
  font-weight: 500;
  line-height: 1.2;
}

.connect-right span {
  color: #9579da;
}

.connect-right p {
  font-size: 20px;
  color: #666;
  line-height: 1.6;
}

.connect-features {
  display: flex;
  flex-direction: column;
}

.connect-feature {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}

.connect-icon {
  width: 64px;
  height: 64px;
  border: 3px solid #b8b3e6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a6fd1;
  background: #f5f2ff;
  font-size: 20px;
}

.connect-feature p {
  color: #777;
  line-height: 1.5;
  max-width: 500px;
}

@media (max-width: 1400px) {
  .connect-container {
    flex-direction: column;
    max-width: 100%;
  }

  .connect-left {
    padding: 50px 20px;
  }

  .connect-grid {
    max-width: 420px;
  }

  .connect-card {
    width: 96px;
    height: 96px;
  }

  .connect-card img {
    width: 72px;
    height: 72px;
  }

  .connect-right {
    padding: 40px 25px;
    text-align: center;
    align-items: center;
  }

  .connect-container h2 {
    font-size: 30px;
  }

  .connect-desc {
    margin-bottom: 30px;
  }

  .connect-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .connect-icon {
    margin-bottom: 10px;
  }
}
