
/* ──────────────────────────────────────────────────────────────────────────
   ANIMAÇÕES DE MARQUEE (Efeito de Rolagem Infinita)
   ────────────────────────────────────────────────────────────────────────── */
@keyframes marquee-ltr {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-rtl {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* Esquerda para Direita */
.marquee-ltr {
  animation: marquee-ltr 45s linear infinite;
}

/* Direita para Esquerda */
.marquee-rtl {
  animation: marquee-rtl 50s linear infinite;
}

/* ──────────────────────────────────────────────────────────────────────────
   ANIMAÇÕES DE FLUTUAÇÃO DO HERO
   ────────────────────────────────────────────────────────────────────────── */
@keyframes float-a {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float-b {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes float-main {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   ESTRUTURA DA LANDING
   ────────────────────────────────────────────────────────────────────────── */
.landing-page {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow-x: hidden;
}

.landing-nav-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.landing-nav-brand {
  display: flex;
  align-items: center;
  gap: 48px;
}

.brand-link {
  text-decoration: none;
}

.brand-lockup {
  width: 154px;
  height: 34px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-text-slot {
  position: absolute;
  inset: 14.84% 0 0.33% 27.93%;
}

.brand-icon-slot {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 74.79%;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  display: block;
}

.mobile-menu-stack {
  display: flex;
  flex-direction: column;
}

.hero-section {
  min-height: 780px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(107.64deg, #0A1C92 7.46%, #183EEB 26.32%, #BAD8FE 59.06%);
  display: flex;
  flex-direction: column;
}

.hero-lines {
  position: absolute;
  top: 26px;
  left: 400px;
  width: 1100px;
  height: 780px;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero-text {
  max-width: 500px;
  flex-shrink: 0;
  margin-top: 77px;
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 48px;
  color: #fff;
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 30px;
  width: 645px;
}

.hero-description {
  max-width: 535px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: #fff;
  line-height: 35px;
  margin-bottom: 40px;
}

.hero-cta-container {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero-cta-primary {
  background: #fff;
  border: none;
  color: #183EEB;
}

.hero-cta-secondary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-images {
  position: relative;
  width: 480px;
  height: 550px;
  flex-shrink: 0;
  margin-top: 77px;
}

.hero-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  height: auto;
  aspect-ratio: 480 / 335;
  border-radius: 16px;
  overflow: hidden;
  animation: float-main 6s ease-in-out infinite;
  z-index: 4;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.hero-media-cover {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-logo-chip {
  position: absolute;
  top: 190px;
  right: 400px;
  width: 88px;
  height: 88px;
  border-radius: 8px;
  overflow: hidden;
  animation: float-a 5s ease-in-out infinite;
  z-index: 5;
}

.hero-diagram-card {
  position: absolute;
  top: 310px;
  right: 240px;
  width: 366px;
  height: 217px;
  border-radius: 16px;
  overflow: hidden;
  animation: float-a 5s ease-in-out infinite;
  z-index: 3;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-chat-card {
  position: absolute;
  top: 310px;
  right: 0;
  width: 220px;
  height: 217px;
  border-radius: 16px;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  animation: float-b 4.5s ease-in-out 0.8s infinite;
  z-index: 5;
  background: #183EEB;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-chat-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.pillar-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pillar-badge {
  border: 0.722px solid #fff;
  border-radius: 2.887px;
  padding: 0 5.774px;
}

.pillar-badge-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  line-height: 28.868px;
  white-space: nowrap;
}

.pillar-icon {
  width: 28.868px;
  height: 28.868px;
  flex-shrink: 0;
}

.pillar-copy {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 21.651px;
}

.pillar-media {
  margin-top: auto;
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.pillar-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand {
  width: 100%;
  max-width: 280px;
  position: relative;
}

.footer-brand-ratio {
  padding-bottom: 21.48%;
  position: relative;
  height: 0;
}

.footer-brand-icon-slot {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 74.79%;
}

.footer-brand-text-slot {
  position: absolute;
  inset: 14.84% 0 0.33% 27.93%;
}

.footer-brand-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.footer-section-tag {
  border: 0.818px solid #183EEB;
  border-radius: 3.273px;
  padding: 0 6.545px;
  display: inline-flex;
}

.footer-section-tag-label {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 13.091px;
  color: #183EEB;
  text-transform: uppercase;
  line-height: 32.727px;
}

.footer-links-stack {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.footer-link {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1D1D1D;
  opacity: 0.7;
  text-decoration: none;
  line-height: 1.5;
}

.footer-divider {
  margin-top: 60px;
  width: 100%;
  height: 1px;
  background: #183EEB;
}

.footer-note {
  margin-top: 30px;
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #1D1D1D;
  opacity: 0.7;
  line-height: 1.5;
  white-space: nowrap;
}

.footer-note-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ──────────────────────────────────────────────────────────────────────────
   VALOR
   ────────────────────────────────────────────────────────────────────────── */
.value-section {
  background: #fff;
  min-height: 780px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.value-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.value-media-wrap {
  position: relative;
  width: 100%;
  max-width: 1020px;
  margin-bottom: 60px;
}

.value-media {
  width: 100%;
  object-fit: contain;
}

.value-title {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #1D1D1D;
  text-align: center;
  width: 100%;
  max-width: 872px;
  line-height: normal;
  margin-bottom: 30px;
}

.value-description {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #717171;
  text-align: center;
  width: 100%;
  max-width: 652px;
  line-height: 30px;
}

/* ──────────────────────────────────────────────────────────────────────────
   ABOUT
   ────────────────────────────────────────────────────────────────────────── */
.about-section {
  background: none;
  min-height: 710px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.about-bg-div {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(120deg, #56A8FC 0%, #183EEB 50%, #0A1C92 100%);
}

.about-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 48px;
  color: #fff;
  text-align: center;
  letter-spacing: -0.96px;
  width: 100%;
  max-width: 500px;
  line-height: normal;
  margin-bottom: 60px;
}

.container-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  width: 100%;
}

/* ──────────────────────────────────────────────────────────────────────────
   FEATURES
   ────────────────────────────────────────────────────────────────────────── */
.features-section {
  min-height: 800px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(to bottom, #fff, #183EEB);
  padding: 80px 0;
}

.features-shell {
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  width: 1320px;
  height: 690.233px;
  background: #fff;
  border-radius: 11.55px;
  opacity: 1;
}

.features-content {
  z-index: 2;
  padding: 15px 149px 40px 148px;
}

#tabs-row {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 2;
  width: 1143px;
  height: 75px;
  margin-bottom: 0;
  opacity: 1;
}

#tab-indicator {
  position: absolute;
  bottom: 0;
  height: 4px;
  background: #183EEB;
  border-radius: 2px;
  left: 0;
  width: 0;
}

#feat-desktop-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 2;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 60px;
}

#feat-left {
  flex: 1;
  min-width: 300px;
  max-width: 420px;
  transition: opacity 0.3s ease;
}

#feat-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: #1D1D1D;
  letter-spacing: -0.02em;
  line-height: 1;
  width: 360px;
  height: 76px;
  margin-bottom: 24px;
  overflow: hidden;
}

#feat-desc {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #717171;
  line-height: 30px;
  white-space: pre-wrap;
}

#feat-img-container {
  width: 648px;
  height: 438px;
  border: 3px solid #E7E7E7;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
  gap: 8px;
}

#feat-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.3s ease;
}

#feat-mobile-carousel {
  display: none;
  position: relative;
  z-index: 2;
}

/* ──────────────────────────────────────────────────────────────────────────
   BENEFITS
   ────────────────────────────────────────────────────────────────────────── */
.benefits-section {
  min-height: 800px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(to bottom, #183EEB, #0A1C92);
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.benefits-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefits-text {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 40px;
  color: #fff;
  letter-spacing: -.8px;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 60px;
  max-width: 1100px;
}

.marquee-span {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 40px;
  color: #183EEB;
  letter-spacing: -.8px;
  line-height: 60px;
  white-space: nowrap;
}

.benefits-marquee-shell {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.benefits-marquee-row {
  display: flex;
  overflow: hidden;
}

.benefits-marquee-track {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

.benefit-chip {
  background: #D9ECFF;
  border-radius: 6.025px;
  padding: 12px 15px;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────────────────────
   PRICING
   ────────────────────────────────────────────────────────────────────────── */
.pricing-section {
  background: #FAFCFF;
  padding: 40px 0;
  position: relative;
  flex-shrink: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.pricing-title {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 30px;
  color: #1D1D1D;
  line-height: normal;
  text-align: center;
  margin: 0;
}

#pricing-slider-wrap {
  width: 100%;
  padding: 20px 0;
  position: relative;
}

.pricing-slider-track {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  height: 4px;
  transform: translateY(-50%);
  background: #E7E7E7;
  border-radius: 2px;
}

#step-fill {
  position: absolute;
  top: 50%;
  left: 10px;
  height: 4px;
  transform: translateY(-50%);
  background: #183EEB;
  border-radius: 2px;
  width: 0;
  transition: width 0.35s ease;
}

#steps-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.pricing-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  max-width: 440px;
  align-items: stretch;
  justify-content: center;
}

.pricing-cards-container .plan-card {
  max-width: 420px;
  padding: 36px 28px 24px;
  gap: 14px;
}

.pricing-cards-container .plan-card-body {
  gap: 14px;
}

.pricing-cards-container .plan-header {
  gap: 8px;
}

.pricing-cards-container .plan-features-list {
  gap: 10px;
}

.pricing-dots {
  display: none !important;
}

/* ──────────────────────────────────────────────────────────────────────────
   CTA
   ────────────────────────────────────────────────────────────────────────── */
.cta-section {
  background: #FAFCFF;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 80px 0;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.cta-title {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 40px;
  color: #1D1D1D;
  letter-spacing: -0.8px;
  max-width: 484px;
  line-height: normal;
}

.cta-link {
  width: auto;
  min-width: 172px;
  white-space: nowrap;
  display: inline-block;
}

/* ──────────────────────────────────────────────────────────────────────────
   FEATURES: INTERAÇÕES
   ────────────────────────────────────────────────────────────────────────── */

/* Indicador das abas (Features) */
.tab-indicator {
  transition: left 0.3s ease, width 0.3s ease;
}

.tab-btn {
  background: transparent;
  border: none;
  border-radius: 11.552px 11.552px 0 0;
  padding: 15px 25px;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.tab-btn-label {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: #717171;
  letter-spacing: -0.72px;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.tab-btn.active {
  background: rgba(24, 62, 235, 0.1);
}

.tab-btn.active .tab-btn-label {
  color: #183EEB;
}

#feat-left.is-fading,
#feat-img.is-fading {
  opacity: 0;
}

/* Viewport do carrossel mobile */
#feat-viewport {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  width: 100%;
}

#feat-viewport::-webkit-scrollbar {
  display: none;
}

.feat-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

/* Card de planos */
.plan-card {
  flex: 1;
  background: #fff;
  border-radius: 11.915px;
  padding: 56px 35px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: visible;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.plan-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-price-row {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.plan-name {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #1D1D1D;
}

.plan-price {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 40px;
  color: #1D1D1D;
  letter-spacing: -0.8px;
}

.plan-period {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 13.603px;
  color: #717171;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.plan-description {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #717171;
}

.card-btn {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  background: #ADADAD;
  cursor: not-allowed;
  transition: background .3s ease, color .3s ease, cursor .3s ease;
}

.card-sub {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ADADAD;
  letter-spacing: -0.28px;
  transition: color .35s ease;
}

.plan-features-title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1D1D1D;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan-feature-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.card-feature-text {
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  color: #1D1D1D;
}

.check-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  background: #ADADAD;
  transition: background .35s ease;
}

.check-icon {
  width: 9px;
  height: 9px;
  display: block;
}

.card-badge {
  position: absolute;
  top: -29px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 11.916px;
  border: 2.979px solid #ADADAD;
  background: linear-gradient(105.87deg, #ADADAD 0%, #717171 66.63%);
  opacity: 0;
  transform: translateY(10px);
  transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-badge-header {
  position: absolute;
  top: -21px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.card-badge-label {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity .35s ease;
}

.card-border {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 11.916px;
  border: 2px solid transparent;
  z-index: 1;
  transition: border-color .35s ease;
}

.plan-card.is-active {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(24, 62, 235, .15);
  z-index: 10;
}

.plan-card.is-active .card-badge {
  opacity: 1;
  transform: translateY(0);
  border-color: #56A8FC;
  background: linear-gradient(105.87deg, #56A8FC 0%, #183EEB 66.63%);
}

.plan-card.is-active .card-badge-label {
  opacity: 1;
}

.plan-card.is-active .card-border {
  border-color: #183EEB;
}

.plan-card.is-active .card-btn {
  background: #183EEB;
  cursor: pointer;
  pointer-events: auto;
}

.plan-card.is-active .card-sub {
  color: #147AF7;
}

.plan-card.is-active .check-circle {
  background: #147AF7;
}

.plan-card.is-active .check-circle.check-circle--accent {
  background: #2AA9E7;
}

.plan-card:not(.is-active) .card-btn {
  pointer-events: none;
}

@media (hover: hover) {
  .plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(24, 62, 235, .15);
  }
}

/* Controle de visibilidade dos planos no Desktop */
@media (min-width: 1025px) {
  .plan-card.hidden-desktop {
    display: none !important;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   PRICING: INTERAÇÕES
   ────────────────────────────────────────────────────────────────────────── */

/* Pontos (dots) do selecionador horizontal */
.step-dot {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.step-dot img {
  width: 20px;
  height: 20px;
  display: block;
  transition: transform .2s ease, filter .2s ease;
}

.step-dot:hover img {
  transform: scale(1.15);
}

.step-dot.active img {
  transform: scale(1.4);
  filter: drop-shadow(0 0 4px rgba(24, 62, 235, .6));
}

/* Balão indicativo acima do dot ativo */
.step-dot-bubble {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #183EEB;
  border-radius: 8px;
  padding: 2px 12px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}

.step-dot.active .step-dot-bubble {
  opacity: 1;
}

.step-dot-bubble-label {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  line-height: 27.5px;
}

/* Rótulo numérico abaixo do dot */
.step-dot-label {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #717171;
  white-space: nowrap;
  pointer-events: none;
}
/* Ajustes de espaçamento no Desktop para Precificação */
@media (min-width: 1025px) {
  #pricing .pricing-content-wrapper {
    gap: 36px !important;
  }

  #pricing-slider-wrap {
    padding: 40px 0 !important;
    max-width: 720px;
    margin: 0 auto;
    cursor: pointer;
    user-select: none;
    touch-action: none;
  }
}

/* Thumb arrastável do slider contínuo de leads */
#pricing-thumb {
  position: absolute;
  top: 50%;
  width: 28px;
  height: 28px;
  margin-left: -14px;
  transform: translateY(-50%);
  background: #183EEB;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(24, 62, 235, .4);
  cursor: grab;
  z-index: 4;
  pointer-events: none;
  transition: box-shadow .15s ease;
}
#pricing-slider-wrap:hover #pricing-thumb {
  box-shadow: 0 3px 14px rgba(24, 62, 235, .6);
}
body.pricing-dragging {
  user-select: none;
  cursor: grabbing;
}
body.pricing-dragging #pricing-thumb {
  cursor: grabbing;
  box-shadow: 0 4px 18px rgba(24, 62, 235, .7);
}

#pricing-thumb-bubble {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  background: #183EEB;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
}
#pricing-thumb-bubble::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #183EEB;
}

/* Balão antigo (baseado em tier) desativado — substituído pelo thumb */
.step-dot-bubble { display: none !important; }
/* ──────────────────────────────────────────────────────────────────────────
   UTILITÁRIOS COMPARTILHADOS
   ────────────────────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }

  .marquee-ltr,
  .marquee-rtl,
  .hero-img-main,
  .hero-logo-chip,
  .hero-diagram-card,
  .hero-chat-card {
    animation: none !important;
  }

  .tab-indicator,
  .plan-card,
  .card-badge,
  .card-badge-label,
  .card-btn,
  .step-dot img,
  #feat-left,
  #feat-img {
    transition: none !important;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   BREAKPOINT: TABLET / MOBILE (Abaixo de 1024px)
   ────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .landing-nav-inner {
    padding: 0 20px;
  }

  section {
    height: auto !important;
    min-height: auto !important;
    padding: 60px 0 20px !important;
  }

  #hero {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  #valor {
    padding-top: 10px !important;
  }

  #img-valor-cards-container {
    margin-top: 30px !important;
  }

  /* Ajustes Hero Mobile */
  .hero-content {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    padding-top: 120px !important;
  }

  .hero-text {
    max-width: 100% !important;
    margin-bottom: 30px !important;
  }

  .hero-text h1 {
    font-size: 32px !important;
    line-height: 1.1 !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    width: auto !important;
  }

  .hero-text p {
    font-size: 18px !important;
    line-height: 1.4 !important;
    margin-bottom: 30px !important;
  }

  /* Gráficos Hero - Ajuste para serem estáticos em mobile */
  .hero-images {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 0 !important;
    display: block !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  .hero-img-deco {
    display: none !important;
  }

  #hero-chat-card {
    display: flex !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    width: 90% !important;
    height: auto !important;
    aspect-ratio: 220 / 217 !important;
    margin: 0 auto 50px !important;
  }

  .hero-img-main {
    display: none !important;
  }

  /* Tipografia Mobile */
  h2 {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  #about h2 {
    margin-bottom: 30px !important;
  }

  #feat-title {
    font-size: 24px !important;
    margin-bottom: 12px !important;
  }

  #feat-desc {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }

  .pricing-title {
    font-family: 'Sora', sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 24px !important;
    letter-spacing: 0 !important;
  }

  .cta-title {
    font-size: 26px !important;
  }

  .benefits-text {
    font-family: 'Sora', sans-serif !important;
    font-weight: 500 !important;
    font-size: 20px !important;
    line-height: 1.5 !important;
    letter-spacing: -0.02em !important;
    margin-top: 0 !important;
    margin-bottom: 40px !important;
  }

  #marquee1,
  #marquee2 {
    gap: 16px !important;
  }

  #benefits {
    padding-bottom: 60px !important;
  }

  .marquee-span {
    font-size: 26px !important;
    line-height: 40px !important;
  }

  .value-title {
    font-family: 'Sora', sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
  }

  .value-description {
    font-family: 'Sora', sans-serif !important;
    font-weight: 300 !important;
    font-size: 12px !important;
    line-height: 20px !important;
    letter-spacing: 0 !important;
    text-align: center !important;
  }


  .hero-cta-container {
    display: none !important;
  }


  .btn-blue {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }


  /* Features Mobile (Troca Tab por Carrossel) */
  .features-content {
    padding: 40px 15px !important;
  }

  #tabs-row {
    display: none !important;
  }

  #feat-desktop-content {
    display: none !important;
  }

  #feat-mobile-carousel {
    display: block !important;
  }

  /* Estilos do carrossel manual scroll */
  #feat-viewport {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    width: 100%;
    padding-bottom: 20px;
  }

  .feat-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10px;
    text-align: center;
  }

  .feat-slide-img {
    width: 100%;
    max-width: 350px;
    border: 2px solid #E7E7E7;
    border-radius: 12px;
    overflow: hidden;
  }

  .feat-slide-img img {
    width: 100%;
    height: auto;
    display: block;
  }

  .feat-slide-title {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #1D1D1D;
    margin-top: 10px;
  }

  .feat-slide-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #717171;
    line-height: 1.5;
  }

  /* Dots dos carrosséis */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E7E7E7;
    transition: background 0.3s ease;
  }

  .dot.active {
    background: #183EEB;
    width: 20px;
    border-radius: 4px;
  }

  /* Precificação Mobile — slider visível e drag habilitado */
  #pricing-slider-wrap {
    display: block !important;
    padding: 30px 0 !important;
    max-width: 100%;
    cursor: pointer;
    user-select: none;
    touch-action: none;
  }

  .pricing-dots {
    display: none !important;
  }

  /* Card único centralizado em mobile */
  #pricing-cards {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    padding: 20px 0 0 !important;
    gap: 0 !important;
  }

  #pricing-cards .plan-card {
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    cursor: pointer !important;
  }

  /* Reset de escala para cards em mobile */
  .plan-card {
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    padding: 36px 24px 22px !important;
    gap: 12px !important;
  }

  #pricing {
    min-height: auto !important;
  }

  /* Fontes dos pricing cards gerados por JS */
  .card-badge-label {
    font-family: 'Sora', sans-serif !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
  }

  /* Plano Básico (nome do plano) */
  #pricing-cards .plan-name {
    font-family: 'Sora', sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 18px !important;
    letter-spacing: 0 !important;
  }

  /* Valor do preço */
  #pricing-cards .plan-price {
    font-family: 'Sora', sans-serif !important;
    font-weight: 500 !important;
    font-size: 32px !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
  }

  /* /por mês */
  #pricing-cards .plan-period {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
  }

  /* Descrição do plano */
  #pricing-cards .plan-description {
    font-family: 'Sora', sans-serif !important;
    font-weight: 400 !important;
    font-size: 10px !important;
    line-height: 18px !important;
    letter-spacing: 0 !important;
  }

  /* Assine agora */
  #pricing-cards .card-btn {
    font-family: 'Sora', sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
  }

  /* Número de páginas fixo, US$ 20 cada */
  .card-sub {
    font-family: 'Sora', sans-serif !important;
    font-weight: 400 !important;
    font-size: 10px !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
  }

  #pricing-cards .plan-features-title {
    font-family: 'Sora', sans-serif !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    line-height: 18px !important;
    letter-spacing: 0 !important;
  }

  #pricing-cards .card-feature-text {
    font-family: 'Sora', sans-serif !important;
    font-weight: 300 !important;
    font-size: 12px !important;
    line-height: 18px !important;
    letter-spacing: 0 !important;
  }


  /* Divs de Background Dinâmico - Ajustes de Borda */
  #about .container-grid {
    padding: 0 15px 40px !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
  }

  #about .pillar-card p {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    line-height: 20px !important;
    letter-spacing: 0 !important;
  }

  #about .pillar-badge-text {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 900 !important;
    font-size: 12px !important;
    line-height: 29px !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
    white-space: normal !important;
  }

  .about-bg-div {
    top: 20px !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 20px) !important;
    border-radius: 16px !important;
  }

  #features .features-shell {
    top: 40px !important;
    bottom: 80px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 20px) !important;
    border-radius: 12px !important;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   BREAKPOINT: CELULAR PEQUENO (Abaixo de 480px)
   ────────────────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 26px !important;
  }

  .hero-text p {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }

  h2 {
    font-size: 22px !important;
  }

  .benefits-text {
    font-size: 20px !important;
    margin-top: 0 !important;
    margin-bottom: 30px !important;
  }

  .marquee-span {
    font-size: 20px !important;
    line-height: 32px !important;
  }

  #feat-title {
    font-size: 20px !important;
  }

  #feat-desc {
    font-size: 14px !important;
  }

  /* Ajustes finos de cartões de plano para telas muito pequenas */
  .plan-name {
    font-size: 18px !important;
  }

  .plan-price {
    font-size: 32px !important;
  }


  .pricing-title,
  .cta-title {
    font-size: 20px !important;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   DECORAÇÃO: RIPPLE WAVE (Ondas Animadas no Fundo)
   ────────────────────────────────────────────────────────────────────────── */
.ripple-wave-group {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1200px;
  height: 1200px;
  transform: translate3d(-50%, -50%, 0);
  background: repeating-radial-gradient(circle at center,
      transparent 0px,
      transparent 40px,
      rgba(255, 255, 255, 0.08) 40px,
      rgba(255, 255, 255, 0.08) 44px,
      transparent 44px,
      transparent 200px);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: expand-waves-group 8s linear infinite;
  will-change: transform, opacity;
}

.ripple-wave-group:nth-child(1) {
  animation-delay: 0s;
}

.ripple-wave-group:nth-child(2) {
  animation-delay: -2s;
}

.ripple-wave-group:nth-child(3) {
  animation-delay: -4s;
}

.ripple-wave-group:nth-child(4) {
  animation-delay: -6s;
}

@keyframes expand-waves-group {
  0% {
    transform: translate3d(-50%, -50%, 0) scale(0.1);
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    transform: translate3d(-50%, -50%, 0) scale(3.5);
    opacity: 0;
  }
}
