/* ------------------------ *
- Page: Index.html
--------------------------- */

#index-page {
  position: relative;
  isolation: isolate;
}

#index-page::before {
  position: absolute;
  content: '';
  inset: 0 0 auto;
  height: 820px;
  background:
    radial-gradient(ellipse 70% 55% at 12% 8%, rgba(var(--primary-rgb), 0.12), transparent 42%),
    radial-gradient(ellipse 60% 45% at 88% 4%, rgba(var(--primary-rgb), 0.08), transparent 40%);
  pointer-events: none;
  z-index: -1;
}
#index-page::after {
  position: absolute;
  content: '';
  inset: 0;
  height: 900px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 75%);
  pointer-events: none;
  z-index: -1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 18px;
  border: 1px solid rgba(var(--primary-rgb), 0.35);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.14) 0%, rgba(0, 0, 0, 0.35) 100%);
  color: #fecaca;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: 0 0 28px -8px rgba(var(--primary-rgb), 0.35);
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fca5a5, var(--primary));
  box-shadow: 0 0 0 6px rgba(var(--primary-rgb), .2), 0 0 14px rgba(var(--primary-rgb), .45);
}

.light-theme .hero-eyebrow {
  border-color: rgba(var(--primary-rgb), 0.25);
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-deep);
  box-shadow: 0 12px 32px -20px rgba(0, 0, 0, 0.1);
}

/* Header */
.main-header {
  position: relative;
  z-index: 1;
  padding: 92px 0 80px;
  overflow: hidden;
}
.main-header::before {
  position: absolute;
  content: '';
  inset: 60px -10% auto auto;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), .2) 0%, rgba(var(--primary-rgb), .06) 45%, transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}
.light-theme .main-header {
  background-color: transparent;
  background-image:
    radial-gradient(circle at top right, rgba(var(--primary-rgb), .1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(250, 250, 250, 0.98) 100%);
}

/* title-1 & para-1 */
.main-header .title-1 {
  font-size: 68px;
  font-family: var(--primary-font);
  font-weight: 800;
  color: #ffffff;
  line-height: .98;
  letter-spacing: -.07em;
  text-wrap: balance;
  max-width: 600px;
}
.light-theme .main-header .title-1 {
  color: var(--dark);
}
.main-header .para-1 {
  font-size: 17px;
  font-family: var(--secondary-font);
  line-height: 1.75;
  color: var(--text-gray);
  opacity: 1;
  max-width: 560px;
  margin-bottom: 30px !important;
}
.hero-highlights {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin-bottom: 26px;
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: 0 18px 36px -28px rgba(15, 23, 42, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-highlight-item:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
  box-shadow: 0 20px 40px -26px rgba(var(--primary-rgb), 0.18);
}

.hero-highlight-item .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  min-width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2) 0%, rgba(0, 0, 0, 0.06) 100%);
  color: var(--primary-deep);
}

.hero-highlight-item .icon-wrap svg {
  width: 18px;
  height: 18px;
}
@media only screen and (max-width: 767px) {
  .main-header {
    padding: 100px 0 60px;
  }
  .main-header .title-1 {
    font-size: 46px;
  }
  .main-header .para-1 {
    font-size: 14px;
  }
}

.main-header .buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel-note {
  max-width: 440px;
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(var(--primary-rgb), .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 20px 40px -34px rgba(15, 23, 42, .14);
}

.hero-panel-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-panel-line .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), .08);
  color: var(--primary-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-panel-copy {
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  max-width: 620px;
}

.hero-stat {
  min-width: 140px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .04) 0%, rgba(255, 255, 255, .02) 100%);
  box-shadow: 0 18px 40px -34px rgba(0, 0, 0, .95);
}

.hero-stat strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 22px;
  font-family: var(--third-font);
  letter-spacing: -.04em;
  line-height: 1;
}

.hero-stat span {
  display: block;
  color: var(--text-gray);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.light-theme .hero-stat {
  border-color: rgba(var(--primary-rgb), .12);
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 20px 34px -30px rgba(110, 27, 27, .28);
}

.light-theme .hero-stat strong {
  color: var(--dark);
}

/* notify */
.main-header .notify {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(var(--primary-rgb), .12));
  border-radius: 50px;
  cursor: default;
  backdrop-filter: blur(10px);
}
.light-theme .main-header .notify {
  border: 1px solid rgba(var(--primary-rgb), .12);
  background-color: rgba(255, 255, 255, .84);
}
.main-header .notify .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50px;
  width: 54px;
  min-width: 54px;
  height: 54px;
}
.main-header .notify .icon img {
  width: 16px;
}
.light-theme .main-header .notify .icon {
  background-color: var(--light);
}
.main-header .notify .text {
  padding: 0 25px 0 20px;
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
}
.light-theme .main-header .notify .text {
  color: var(--text-gray);
}
@media only screen and (max-width: 767px) {
  .main-header .notify .icon {
    display: none;
  }
  .main-header .notify .text {
    padding: 15px 30px;
    font-size: 14px;
  }
}

/* header-form */
.main-header .header-form {
  position: relative;
  background: linear-gradient(180deg, rgba(30, 11, 13, 0.98) 0%, rgba(18, 7, 8, 0.98) 100%);
  border: 1px solid rgba(255,255,255,.08);
  padding: 60px 40px 40px;
  text-align: center;
  border-radius: 28px;
  max-width: 440px;
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, .95);
}
.light-theme .main-header .header-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 244, 241, 0.98) 100%);
  border: 1px solid rgba(var(--primary-rgb), .1);
  box-shadow: 0 28px 50px -38px rgba(122, 27, 27, .38);
}

.main-header .hero-feature-card {
  max-width: 420px;
  padding: 30px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 244, 241, 0.98) 100%);
  border: 1px solid rgba(var(--primary-rgb), .1);
  box-shadow: 0 30px 60px -42px rgba(122, 27, 27, .34);
}

.main-header .panel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), .08);
  color: var(--primary-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.main-header .panel-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.main-header .panel-stat {
  flex: 1 1 0;
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(var(--primary-rgb), .09);
}

.main-header .panel-stat strong {
  display: block;
  color: var(--dark);
  font-size: 18px;
  font-family: var(--third-font);
  letter-spacing: -.04em;
}

.main-header .panel-stat span {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* form-title */
.main-header .form-title {
  font-size: 22px;
  line-height: 1.4;
  color: #ffffff;
  font-weight: 700;
}
.light-theme .main-header .form-title {
  color: var(--dark);
}

.main-header .form-subtitle {
  margin-bottom: 0;
  color: #525252;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.main-header .feature-list {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.main-header .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(var(--primary-rgb), .08);
}

.main-header .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2) 0%, rgba(var(--primary-rgb), .08) 100%);
  color: var(--primary-deep);
}

.main-header .feature-icon svg {
  width: 18px;
  height: 18px;
}

.main-header .feature-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--dark);
  font-size: 15px;
  font-weight: 800;
}

.main-header .feature-item span {
  display: block;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.main-header .feature-actions .btn {
  min-height: 52px;
}

/* form-label */
.main-header .form-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.main-header .form-label:not(:last-child) {
  margin-bottom: 15px;
}
.main-header .form-label input {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 54px;
  padding: 0 20px;
  background-color: #282a3f;
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  width: 100%;
  border-radius: 4px;
  font-size: 14px;
  color: #ffffff;
  font-family: var(--primary-font);
  font-weight: 500;
  outline: none;
  transition: background-color .2s ease;
}
.light-theme .main-header .form-label input {
  color: var(--dark);
  background-color: var(--light);
  border-color: var(--border);
}
.main-header .form-label input:hover {
  background-color: #2f3146;
}
.light-theme .main-header .form-label input:hover {
  background-color: #eaedef;
  border-color: var(--border);
}
.main-header .form-label input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}
.light-theme .main-header .form-label input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

/* hr */
.main-header .hr {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-header .hr::before,
.main-header .hr::after {
  position: absolute;
  content: '';
  left: 0;
  height: 1px;
  width: 100px;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1;
  margin-top: 1px;
}
.light-theme .main-header .hr::before,
.light-theme .main-header .hr::after {
  background-color: rgba(0, 0, 0, 0.2);
}
.main-header .hr::after {
  left: unset;
  right: 0;
}
.main-header .hr span {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  z-index: 2;
}

/* form-comment */
.main-header .form-comment {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-gray);
}
.main-header .form-comment a {
  color: var(--primary);
}
.main-header .form-comment a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .main-header .form-title {
    font-size: 17px;
  }
}
/*-------------------------------------*/

/* Section I */
.se-i {
  padding-bottom: 80px;
}
.light-theme .se-i {
  background-color: transparent;
}

/* box */
.se-i .box {
  padding: 35px 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .04) 0%, rgba(255, 255, 255, .02) 100%);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 24px;
  box-shadow: 0 18px 34px -28px rgba(0, 0, 0, .85);
  height: 100%;
}
.light-theme .se-i .box {
  background-color: rgba(255, 255, 255, .88);
  border-color: rgba(var(--primary-rgb), .1);
}
.se-i .box-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--primary-deep);
}
.se-i .box-icon svg {
  width: 48px;
  height: 48px;
}
.light-theme .se-i .box-icon {
  color: var(--primary);
}
.se-i .box-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}
.light-theme .se-i .box-title {
  color: var(--dark);
}
.se-i .box-kicker {
  margin-bottom: 10px;
  color: var(--primary-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.se-i .box-text {
  margin-top: 12px;
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .se-i .box-icon {
    width: 38px;
    height: 38px;
  }
  .se-i .box-icon svg {
    width: 38px;
    height: 38px;
  }
  .se-i .box-title {
    font-size: 14px;
  }
  .se-i .box-text {
    font-size: 12px;
  }
}
/*-------------------------------------*/

/* Section IB */
.se-ib {
  position: relative;
}

.solution-card {
  height: 100%;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 252, 0.98) 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 48px -36px rgba(15, 23, 42, 0.18);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--primary-rgb), 0.28);
  box-shadow: 0 32px 56px -32px rgba(var(--primary-rgb), 0.2);
}

.solution-card.featured {
  background: linear-gradient(165deg, rgba(254, 242, 242, 0.85) 0%, rgba(255, 255, 255, 0.98) 55%, #ffffff 100%);
  border-color: rgba(var(--primary-rgb), 0.18);
}

.solution-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.22) 0%, rgba(0, 0, 0, 0.06) 100%);
  color: var(--primary-deep);
}

.solution-icon svg {
  width: 26px;
  height: 26px;
}

.solution-tag {
  margin-bottom: 10px;
  color: var(--primary-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.solution-title {
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.04em;
}

.solution-text {
  margin-bottom: 18px;
  color: #475569;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-deep);
  font-size: 14px;
  font-weight: 800;
}

.solution-link:hover {
  color: var(--primary-deep);
}

.solution-link::after {
  content: '->';
  margin-left: 8px;
  font-size: 12px;
}

@media only screen and (max-width: 767px) {
  .solution-card {
    padding: 24px;
  }

  .solution-title {
    font-size: 22px;
  }
}

/*-------------------------------------*/

/* Section II */
.se-ii {
  padding: 60px 0;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  color: var(--primary-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.os-note {
  max-width: 340px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(var(--primary-rgb), .1);
  box-shadow: 0 20px 38px -34px rgba(15, 23, 42, .12);
}

.os-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--dark);
  font-size: 16px;
}

.os-note span {
  display: block;
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

/* title-1 */
.se-ii .title-1 {
  font-size: 46px;
  font-family: var(--primary-font);
  font-weight: 700;
  color: #FFF;
  line-height: 1;
}
.light-theme .se-ii .title-1 {
  color: var(--dark);
}
.se-ii .title-1 span {
  line-height: 1;
  display: inline-block;
}

/* para-1 */
.se-ii .para-1 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* item */
.se-ii .item {
  background: linear-gradient(180deg, rgba(255, 255, 255, .04) 0%, rgba(255, 255, 255, .02) 100%);
  padding: 20px 15px 20px 15px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .06);
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}
.light-theme .se-ii .item {
  background-color: rgba(255, 255, 255, .84);
  border: 1px solid rgba(var(--primary-rgb), .08);
}
.se-ii .item:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--primary-rgb), .28);
}
.se-ii .item img {
  width: 50px;
  margin-bottom: 20px;
}
.se-ii .item .text {
  font-size: 14px;
  font-weight: 400;
  color: #9193a8;
}
.light-theme .se-ii .item .text {
  font-weight: 500;
  color: var(--text-gray);
}
@media only screen and (max-width: 1199.98px) {
  .se-ii {
    padding: 60px 0 30px;
  }
  .se-ii .title-1,
  .se-ii .title-1 span,
  .se-ii .title-1 span.primary-color {
    font-size: 36px;
    line-height: 1.4;
  }
  .se-ii .item {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .se-ii .title-1,
  .se-ii .title-1 span,
  .se-ii .title-1 span.primary-color {
    font-size: 26px;
    line-height: 1.2;
  }
}
/*-------------------------------------*/

/* Section III */

/* plans */
.se-iii .plans {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .03) 0%, rgba(255, 255, 255, .015) 100%);
  border: 1px solid rgba(255, 255, 255, .06);
  overflow: hidden;
}
.light-theme .se-iii .plans {
  background-color: rgba(255, 255, 255, .92);
  border: 1px solid rgba(var(--primary-rgb), .08);
  box-shadow: 0 26px 50px -42px rgba(15, 23, 42, .16);
}
@media only screen and (max-width: 1199.98px) {
  .se-iii .plans {
    border-radius: unset;
  }
}

/* plan */
.se-iii .plans .plan {
  position: relative;
  padding: 50px 40px 40px;  
  background: transparent;
  height: 100%;
  z-index: 2;
  transition: background-color .2s ease;
}
.light-theme .se-iii .plans .plan {
  background-color: transparent;
}
.se-iii .plans .plan:hover {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), .08) 0%, rgba(255, 255, 255, 0) 100%);
}

.se-iii .plans .popular-plan::before {
  position: absolute;
  content: 'Mais pedido';
  top: 24px;
  right: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), .14);
  color: #fda4af;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.light-theme .se-iii .plans .popular-plan::before {
  color: #be123c;
  background: rgba(var(--primary-rgb), .09);
}
.se-iii .plans .row > div:nth-child(1) .plan {
  border-radius: 12px 0 0 12px;
}
.se-iii .plans .row > div:nth-child(4) .plan {
  border-radius: 0 12px 12px 0;
}
.se-iii .plans .row > div:not(:last-of-type) .plan {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.light-theme .se-iii .plans .row > div:not(:last-of-type) .plan {
  border-right: 1px solid var(--border);
}
@media only screen and (max-width: 1199.98px) {
  .se-iii .plans {
    background-color: unset;
  }
  .se-iii .plans .row > div .plan {
    border-radius: 12px !important;
    border-right: unset !important
  }
}

/* plan-head */
.se-iii .plans .plan-head {
  padding-bottom: 20px;
}
.se-iii .plans .plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), .08);
  color: var(--primary-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.se-iii .plans .plan-name {
  font-size: 20px;
  font-family: var(--primary-font);
  font-weight: 600;
  color: #ffffff;
}
.light-theme .se-iii .plans .plan-name {
  color: var(--dark);
}
.se-iii .plans .plan-para {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  min-height: 50px
}

/* plan-price */
.se-iii .plans .plan-price {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 20px
}
.light-theme .se-iii .plans .plan-price {
  border-bottom-color: var(--border);
}
.se-iii .plans .plan-price .price {
  font-size: 30px;
  font-family: var(--primary-font);
  font-weight: 700;
  color: #ffffff;
}
.light-theme .se-iii .plans .plan-price .price {
  color: var(--dark);
}
.se-iii .plans .plan-price .price-comment {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* actions */
.se-iii .plans .actions {
  padding-bottom: 10px
}

/* group */
.se-iii .plans .group {
  margin-top: 45px;
}
.se-iii .plans .group .title-4 {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px
}
.light-theme .se-iii .plans .group .title-4 {
  color: var(--dark);
}
.se-iii .plans .group .list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  padding-right: 26px;
}
.se-iii .plans .group .list li:not(last-of-type) {
  margin-bottom: 10px
}
.se-iii .plans .group .list li .plan-li-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.85);
}
.light-theme .se-iii .plans .group .list li .plan-li-icon {
  color: var(--primary-deep);
}
.se-iii .plans .group .list li .plan-li-icon svg {
  width: 16px;
  height: 16px;
}

/* float-box */
.se-iii .plans .group .list li .float-box {
  position: absolute;
  top: 2px;
  right: 0;
  width: 18px;
  height: 18px;
}
.se-iii .plans .group .list li .float-box::before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  content: '?';
  right: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-color: rgba(255, 255, 255, .1);  
  border-radius: 50%;
  font-size: 12px;
  font-family: var(--secondary-font);
  font-weight: 600;
  line-height: 1;
  transition: all .15s ease-in-out;
}
.light-theme .se-iii .plans .group .list li .float-box::before {
  background-color: rgba(0, 0, 0, .1);
}
.se-iii .plans .group .list li .float-box:hover::before {
  background-color: rgba(0, 0, 0, .2);
}
.se-iii .plans .group .list li .float-box::after {
  position: absolute;
  content: attr(data-text);
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  width: 280px;
  background-color: var(--semi-dark);
  white-space: normal;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-gray);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 4px;
  box-shadow: 0 10px 45px 0 rgba(0, 0, 0, .4);
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  transition: all .15s ease-in-out;
}

.se-copy {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--text-gray);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}
.light-theme .se-iii .plans .group .list li .float-box::after {
  background-color: #fff;
  border: 1px solid var(--border);
  background-color: #FFFFFF;
  box-shadow: 0 2px 15px #dde5eb;
}
.se-iii .plans .group .list li .float-box:hover::after {
  visibility: visible;
  opacity: 1;
}

/* se-footer */
.se-iii .se-footer .line {
  margin: 6px 12px;
}
.se-iii .se-footer .line .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  width: 18px;
  margin-right: 10px;
  color: var(--primary-deep);
}
.se-iii .se-footer .line .icon svg {
  width: 16px;
  height: 16px;
}
.se-iii .se-footer .line .text {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-gray);
  line-height: 1;
}
/*-------------------------------------*/

/* Section IV */

/* box */
.se-iv .box {
  background: linear-gradient(180deg, rgba(255, 255, 255, .04) 0%, rgba(255, 255, 255, .015) 100%);
  border-radius: 24px;
  padding: 35px 30px 10px;
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 18px 34px -24px rgba(0, 0, 0, .8);
  transition: all .20s ease;
}
.light-theme .se-iv .box {
  background-color: rgba(255, 255, 255, .88);
  border: 1px solid rgba(var(--primary-rgb), .08);
  box-shadow: 0 22px 40px -34px rgba(120, 26, 26, .25) !important;
}
.se-iv .box:hover {
  box-shadow: 0 16px 45px 0 rgba(0,0,0,.22);
  background-color: var(--semi-dark-2);
  transform: translateY(-5px);
}
.light-theme .se-iv .box:hover {
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .hero-stats {
    justify-content: center;
  }

  .hero-stat {
    width: calc(50% - 7px);
    min-width: 0;
  }
}

/* box-link */
.se-iv .box-link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

/* icon */
.se-iv .box .icon {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
}
.se-iv .box .icon::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--primary);
  opacity: .1;
}
.se-iv .box.color-1 .icon::before {
  background-color: #26C6DA;
}
.se-iv .box.color-2 .icon::before {
  background-color: #FC573B;
}
.se-iv .box.color-3 .icon::before {
  background-color: #FFD200;
}
.se-iv .box.color-4 .icon::before {
  background-color: #BD63F9;
}
.se-iv .box.color-5 .icon::before {
  background-color: #00FFB7;
}
.se-iv .box.color-6 .icon::before {
  background-color: #FE9801;
}
.se-iv .box .icon svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  color: #ffffff;
}
.light-theme .se-iv .box .icon svg {
  color: var(--dark);
}

/* box-title */
.se-iv .box-title {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.light-theme .se-iv .box-title {
  color: var(--dark);
}

/* box-para */
.se-iv .box-para {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  line-height: 1.7;
  max-height: 70px;
  height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 25px;
}

/* arrow */
.se-iv .arrow {
  margin-top: 20px;
}
.se-iv .arrow svg {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.45);
  transition: color .15s ease;
}
.light-theme .se-iv .arrow svg {
  color: var(--text-gray);
}
.se-iv .box:hover .arrow svg {
  color: var(--primary);
}
/*-------------------------------------*/

/* Home CTA */
.home-cta {
  position: relative;
  z-index: 1;
}

.home-cta-card {
  position: relative;
  padding: 48px;
  border-radius: 34px;
  background: linear-gradient(145deg, #0a0a0a 0%, #171717 38%, #0a0a0a 100%);
  box-shadow:
    0 0 0 1px rgba(var(--primary-rgb), 0.2),
    0 40px 80px -40px rgba(0, 0, 0, 0.85);
  overflow: hidden;
}

.home-cta-card::before {
  position: absolute;
  content: '';
  inset: -20% -15% auto auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.45) 0%, rgba(var(--primary-rgb), 0.08) 45%, transparent 70%);
  filter: blur(4px);
}

.home-cta-card::after {
  position: absolute;
  content: '';
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

.home-cta-card .section-chip {
  background: rgba(var(--primary-rgb), 0.15);
  color: #fecaca;
  border: 1px solid rgba(var(--primary-rgb), 0.35);
}

.cta-title {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: #fafafa;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.06em;
  max-width: 720px;
}

.cta-text {
  position: relative;
  z-index: 1;
  max-width: 620px;
  color: rgba(250, 250, 250, 0.82);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.cta-side-card {
  position: relative;
  z-index: 1;
  max-width: 360px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cta-points {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.cta-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-point strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  font-size: 14px;
  font-family: var(--third-font);
}

.cta-point span {
  color: #e5e5e5;
  font-size: 14px;
  font-weight: 600;
}

@media only screen and (max-width: 991.98px) {
  .home-cta-card {
    padding: 32px 24px;
  }

  .cta-title {
    font-size: 34px;
  }
}

/*-------------------------------------*/

/* Section V */

/* filter-nav */
.se-v .filter-nav {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199.98px) {
  .se-v .filter-nav {
    display: none;
  }
}

/* tab */
.se-v .filter-nav .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, .05);
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 500;
  transition: all .2s ease;
}
.light-theme .se-v .filter-nav .tab {
  background-color: #fff;
  border-color: var(--border);
}
.se-v .filter-nav .tab:not(.active):hover {
  background-color: var(--semi-dark);
}
.light-theme .se-v .filter-nav .tab:not(.active):hover {
  background-color: #fff;
  border-color: var(--primary);
}
.se-v .filter-nav .tab.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
}

/* compare-table */
.se-v .compare-table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
}
.se-v .compare-table::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 8px;
  z-index: -1;
}
.light-theme .se-v .compare-table::before {
  background-color: #fff;
  border-color: var(--border);  
}

/* custom-thead */
.se-v .custom-thead {
  background-color: var(--dark);
  position: sticky;
  top: 0;
  border: 1px solid rgba(255, 255, 255, .05);
  margin-bottom: 30px;
  z-index: 3;
}
.light-theme .se-v .custom-thead {
  background-color: #fff;
  border-color: var(--border);
}

/* tabs */
.se-v .custom-thead .tabs {
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.light-theme .se-v .custom-thead .tabs {
  border-color: var(--border);
}
.se-v .custom-thead .tabs .tab {
  padding: 15px 30px;
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
}
.se-v .custom-thead .tabs .tab:nth-child(1) {
  border-right: 1px solid rgba(255, 255, 255, .05);
}
.light-theme .se-v .custom-thead .tabs .tab:nth-child(1) {
  border-color: var(--border);
}
.se-v .custom-thead .tabs .tab.active {
  background-color: var(--semi-dark);
  color: #FFFFFF;
}
.light-theme .se-v .custom-thead .tabs .tab.active {
  background-color: var(--primary);
}
@media only screen and (min-width: 1200px) {
  .se-v .custom-thead {
    display: none;
  }
}

/* tab-content */
.se-v .custom-thead .tab-content {
  padding: 30px;
}
.se-v .custom-thead .tab-content.content-hide {
  display: none;
}

/* table-title-4 */
.se-v .custom-thead .tab-content .table-title-4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* table-title-1 */
.se-v .custom-thead .tab-content .table-title-1 {
  display: block;
  font-size: 32px;
  color: #FFFFFF;
  font-weight: bold;
  font-family: var(--secondary-font);
}
.light-theme .se-v .custom-thead .tab-content .table-title-1 {
  color: var(--dark);
}
.se-v .custom-thead .tab-content .table-title-1 .coin {
  position: relative;
  font-size: 24px;
  vertical-align: top;
  margin-right: 5px;
}
.se-v .custom-thead .tab-content .table-title-1 .sm-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  margin-left: 5px;
  font-family: var(--primary-font);
  color: var(--text-gray);
}

/* thead */
.se-v .compare-table thead th {
  padding: 30px 30px 40px;
}
.se-v .compare-table thead tr:first-child th:first-child {
  border-top-left-radius: 12px;
}
.se-v .compare-table thead th:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .05);
}
.light-theme .se-v .compare-table thead th:not(:last-child) {
  border-color: var(--border);
}
@media only screen and (max-width: 1199.98px) {
  .se-v .compare-table thead {
    display: none;
  }
}

/* top-left-corner */
.se-v .compare-table thead th.top-left-corner {
  min-width: 470px;
  width: 470px;
  text-align: left;
  vertical-align: top;
}
.se-v .compare-table thead th.top-left-corner .table-title-head {
  display: block;
  font-size: 32px;
  color: #FFFFFF;
  opacity: .2;
  line-height: 1.2;
}
.light-theme .se-v .compare-table thead th.top-left-corner .table-title-head {
  color: var(--dark);
}
.se-v .compare-table thead th.top-left-corner .table-title-head span {
  letter-spacing: -9px;
}

/* top-right-corner */
.se-v .compare-table thead th.top-right-corner {
  min-width: 380px;
  width: 380px;
}

/* table-title-3 */
.se-v .compare-table thead th.top-right-corner .table-title-3 {
  display: block;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 35px;
}
.light-theme .se-v .compare-table thead th.top-right-corner .table-title-3 {
  color: var(--dark);
}

/* table-title-4 */
.se-v .compare-table thead th.top-right-corner .table-title-4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* table-title-1 */
.se-v .compare-table thead th.top-right-corner .table-title-1 {
  display: block;
  font-size: 46px;
  color: #FFFFFF;
  font-weight: bold;
  font-family: var(--secondary-font);
  margin-bottom: 15px;
}
.light-theme .se-v .compare-table thead th.top-right-corner .table-title-1 {
  color: var(--dark);
}
.se-v .compare-table thead th.top-right-corner .table-title-1 .coin {
  position: relative;
  font-size: 24px;
  vertical-align: top;
  top: 10px;
  margin-right: 5px;
}
.se-v .compare-table thead th.top-right-corner .table-title-1 .sm-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  margin-left: 5px;
  font-family: var(--primary-font);
  color: var(--text-gray);
}

/* hovered */
.se-v .compare-table tbody tr.hovered {
  background-color: var(--semi-dark);
}
.light-theme .se-v .compare-table tbody tr.hovered {
  background-color: var(--light);
}
.se-v .compare-table tbody tr.hovered td {
  border-bottom: 0;
  border-right: 1px solid rgba(255, 255, 255, .08) !important;
}
.light-theme .se-v .compare-table tbody tr.hovered td {
  border-color: var(--border) !important;
}
.se-v .compare-table tbody tr.hovered td:last-child {
  border-right: 0 !important;
}

/* t-space */
.se-v .compare-table tbody tr.t-space {
  border: 0 !important;
}
.se-v .compare-table tbody tr.t-space td {
  border: 0 !important;
}

/* tr-hide */
@media only screen and (min-width: 1200px) {
  .se-v .compare-table tbody tr.tr-hide {
    display: none;
  }
}

/* tbody > tr */
.se-v .compare-table tbody tr:not(.hovered, .t-space):hover {
  background-color: rgba(255, 255, 255, .02);
}
.light-theme .se-v .compare-table tbody tr:not(.hovered, .t-space):hover {
  background-color: var(--light);
}

/* tbody > tr > td */
.se-v .compare-table tbody tr td {
  position: relative;
  padding: 20px 30px;
  color: var(--text-gray);
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, .03);
}
.light-theme .se-v .compare-table tbody tr td {
  border-color: var(--border);
}
.se-v .compare-table tbody tr td:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .05);
}
.light-theme .se-v .compare-table tbody tr td:not(:last-child) {
  border-color: var(--border);
}

/* hide td[data-for="full"] */
@media only screen and (max-width: 1199.98px) {
  .se-v .compare-table tbody tr td.td-hide {
    display: none;
  }
}

/* left-corner */
.se-v .compare-table tbody .left-corner {
  min-width: 470px;
  width: 470px;
  text-align: right;
  font-weight: 600;
}
@media only screen and (max-width: 1199.98px) {
  .se-v .compare-table tbody .left-corner {
    min-width: 60%;
    width: 60%;
  }
}

/* right-corner */
.se-v .compare-table tbody .right-corner {
  min-width: 380px;
  width: 380px;
  text-align: center;
}
@media only screen and (max-width: 1199.98px) {
  .se-v .compare-table tbody .right-corner {
    min-width: 40%;
    width: 40%;
  }
}

/* se-footer > line */
.se-v .se-footer .line {
  margin: 6px 12px;
}
.se-v .se-footer .line .icon {
  min-width: 16px;
  width: 16px;
  margin-right: 10px;
}
.se-v .se-footer .line .text {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 400;
  line-height: 1;
}
/*-------------------------------------*/

/* Section VI */

/* box */
.se-vi .box {
  background-color: var(--semi-dark);
  border-radius: 8px;
  padding: 30px 30px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
  margin-bottom: 30px;
  transition: all .20s ease;
}
.light-theme .se-vi .box {
  background-color: var(--light);
  border: 1px solid var(--border);
  box-shadow: none !important;
}

/* user-info */
.se-vi .box .user-info {
  margin-bottom: 25px;
}
.se-vi .box .user-info .avatar {
  min-width: 54px;
  width: 54px;
  min-height: 54px;
  height: 54px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.se-vi .box .user-info .name {
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 600;
}
.light-theme .se-vi .box .user-info .name {
  color: var(--dark);
}
.se-vi .box .user-info .job {
  font-family: var(--secondary-font);
  font-size: 13px;
  color: var(--text-gray);
}

/* quotes */
.se-vi .box .quotes {
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
  font-family: var(--third-font);
  color: var(--text-gray);
}
.se-vi .box .quotes::before {
  position: relative;
  content: '"';
  left: 0;
  top: 0;
  margin-right: 2px;
}
.se-vi .box .quotes::after {
  position: relative;
  content: '"';
  right: 0;
  top: 0;
  margin-left: 2px;
}
/*-------------------------------------*/

/* ========== Home 2025 — hero gamer + seções ========== */

.main-header {
  min-height: 0;
}

.hero-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-deco-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
}

.hero-deco-orb--1 {
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  top: -8%;
  right: -12%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.45) 0%, transparent 70%);
  animation: heroOrbFloat 14s ease-in-out infinite;
}

.hero-deco-orb--2 {
  width: 280px;
  height: 280px;
  bottom: 10%;
  left: -6%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.35) 0%, transparent 70%);
  animation: heroOrbFloat 18s ease-in-out infinite reverse;
}

.hero-deco-ring {
  position: absolute;
  top: 50%;
  right: 4%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  transform: translateY(-50%);
  opacity: 0.6;
}

.light-theme .hero-deco-orb--2 {
  opacity: 0.25;
}

.light-theme .hero-deco-ring {
  border-color: rgba(var(--primary-rgb), 0.18);
}

@keyframes heroOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-12px, 18px) scale(1.03); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-deco-orb--1,
  .hero-deco-orb--2 {
    animation: none;
  }
}

.main-header > .container {
  position: relative;
  z-index: 1;
}

/* Título hero — hierarquia gamer */
.main-header .hero-title-main {
  letter-spacing: -0.04em;
  line-height: 1.02;
  max-width: 640px;
}

.main-header .hero-title-main.text-uppercase {
  text-transform: none;
}

.hero-title-line-lg {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.07em;
  color: inherit;
}

.light-theme .hero-title-line-lg {
  color: var(--dark);
}

.hero-title-glow {
  display: inline;
  background: linear-gradient(135deg, #f87171 0%, var(--primary) 38%, #7f1d1d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 24px rgba(var(--primary-rgb), 0.25));
}

.hero-title-line-sm {
  display: block;
  margin-top: 10px;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #737373;
}

.light-theme .hero-title-line-sm {
  color: #525252;
}

.main-header .para-1.hero-lead {
  font-size: clamp(16px, 1.25vw, 17px);
  line-height: 1.65;
  max-width: 520px;
}

/* Faixa única: stats sem poluir (substitui vários blocos soltos) */
.hero-meta-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 520px;
  margin-bottom: 24px;
  border-radius: 16px;
  border: 1px solid rgba(var(--primary-rgb), 0.14);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 32px -24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

@media (min-width: 1200px) {
  .text-xl-left .hero-meta-bar {
    justify-content: stretch;
  }
}

.hero-meta-item {
  flex: 1 1 90px;
  min-width: 0;
  padding: 14px 12px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-meta-item:last-child {
  border-right: 0;
}

.hero-meta-item strong {
  display: block;
  font-family: var(--third-font);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero-meta-item span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #737373;
  line-height: 1.3;
}

/* Lista curta no card lateral */
.main-header .hero-card-points {
  margin-top: 0;
  padding-left: 0;
}

.main-header .hero-card-points li {
  position: relative;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #404040;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.main-header .hero-card-points li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.main-header .hero-card-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 11px;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  font-size: 12px;
  font-weight: 800;
  line-height: 22px;
  text-align: center;
  color: var(--primary-deep);
}

/* Entrada suave */
.hero-anim {
  opacity: 0;
  animation: homeFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-anim--1 { animation-delay: 0.05s; }
.hero-anim--2 { animation-delay: 0.1s; }
.hero-anim--3 { animation-delay: 0.16s; }
.hero-anim--4 { animation-delay: 0.22s; }
.hero-anim--5 { animation-delay: 0.28s; }
.hero-anim--6 { animation-delay: 0.32s; }

@keyframes homeFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-anim {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

/* Divisor entre hero e benefícios */
.home-section-split {
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(var(--primary-rgb), 0.35) 15%,
    var(--dark) 50%,
    rgba(var(--primary-rgb), 0.35) 85%,
    transparent 100%
  );
  opacity: 0.85;
}

.light-theme .home-section-split {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(var(--primary-rgb), 0.45) 20%,
    #0a0a0a 50%,
    rgba(var(--primary-rgb), 0.45) 80%,
    transparent 100%
  );
}

/* Demonstração do painel (home) */
.home-panel-demo {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.04) 0%, #fafbfc 45%, #ffffff 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.home-panel-demo-title {
  font-family: var(--primary-font);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.home-panel-demo-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-gray);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .home-panel-demo-desc {
    margin-left: 0;
    margin-right: 0;
  }
}

.home-panel-demo-bullets {
  margin-top: 18px;
  text-align: left !important;
}

.home-panel-demo-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.home-panel-demo-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary-deep);
}

.home-panel-demo-check svg {
  width: 14px;
  height: 14px;
}

.panel-demo-browser {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow:
    0 32px 64px -28px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.panel-demo-browser:hover {
  transform: translateY(-4px);
  box-shadow:
    0 40px 72px -32px rgba(var(--primary-rgb), 0.25),
    0 0 0 1px rgba(var(--primary-rgb), 0.12);
}

.panel-demo-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #eef2f7 0%, #e2e8f0 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.panel-demo-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.panel-demo-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.panel-demo-dots span:nth-child(1) {
  background: #fb7185;
}

.panel-demo-dots span:nth-child(2) {
  background: #fbbf24;
}

.panel-demo-dots span:nth-child(3) {
  background: #34d399;
}

.panel-demo-url {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  padding: 8px 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.panel-demo-url-lock {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #22c55e;
}

.panel-demo-shell {
  display: flex;
  min-height: 300px;
  background: #f1f5f9;
}

.panel-demo-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 54px;
  flex-shrink: 0;
  padding: 14px 0 18px;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-demo-brand {
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
  border-radius: 8px;
  background: rgba(var(--primary-rgb), 0.35);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-demo-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.15s ease, background 0.15s ease;
}

.panel-demo-nav-item svg {
  width: 18px;
  height: 18px;
}

.panel-demo-nav-item.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.panel-demo-stage {
  flex: 1;
  min-width: 0;
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel-demo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.panel-demo-breadcrumb {
  font-size: 12px;
  color: #64748b;
}

.panel-demo-breadcrumb strong {
  color: var(--dark);
  font-weight: 700;
}

.panel-demo-sep {
  margin: 0 4px;
  opacity: 0.5;
}

.panel-demo-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.panel-demo-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.panel-demo-card {
  padding: 12px 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 20px -16px rgba(15, 23, 42, 0.2);
}

.panel-demo-card-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 7px;
}

.panel-demo-card-value {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--dark);
  font-family: var(--third-font);
  line-height: 1.1;
}

.panel-demo-card-hint {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
}

.panel-demo-chart {
  padding: 12px 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px dashed rgba(var(--primary-rgb), 0.25);
}

.panel-demo-chart-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 10px;
}

.panel-demo-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
  height: 72px;
}

.panel-demo-bars span {
  flex: 1;
  min-width: 0;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.55) 0%, rgba(var(--primary-rgb), 0.15) 100%);
  opacity: 0.85;
}

.panel-demo-table-wrap {
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  font-size: 11px;
}

.panel-demo-table-head,
.panel-demo-table-row {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 1fr;
  gap: 8px;
  padding: 10px 12px;
  align-items: center;
}

.panel-demo-table-head {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  background: #f8fafc;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.panel-demo-table-row {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  color: #475569;
  font-weight: 600;
}

.panel-demo-td-main {
  color: var(--dark);
  font-weight: 700;
}

.panel-demo-status {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.panel-demo-disclaimer {
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
}

@media (max-width: 575.98px) {
  .panel-demo-cards {
    grid-template-columns: 1fr;
  }

  .panel-demo-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .panel-demo-table-head,
  .panel-demo-table-row {
    min-width: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .panel-demo-browser:hover {
    transform: none;
  }
}

/* Bloco benefícios */
.home-benefits {
  padding-top: 48px;
}

.home-benefits-head {
  margin-bottom: 32px;
  max-width: 560px;
}

.home-benefits-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-deep);
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
}

.home-benefits-title {
  font-family: var(--primary-font);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.home-benefits-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-gray);
  max-width: 560px;
}

.home-benefits-grid .box {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-benefits-grid .box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
  border-radius: 4px 0 0 4px;
  opacity: 0.9;
}

.light-theme .home-benefits-grid .box {
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 40px -28px rgba(0, 0, 0, 0.12);
}

.home-benefits-grid .box:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -32px rgba(var(--primary-rgb), 0.2);
}

.home-benefits-grid .box-kicker {
  color: var(--primary);
}

/* Soluções (3 cards) */
.home-solutions-head .se-title-2 {
  margin-bottom: 8px;
}

.home-solutions-tagline {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text-gray);
  max-width: 520px;
}

.home-solutions-wrap .solution-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.home-solutions-wrap .solution-link::after {
  transition: transform 0.2s ease;
}

.home-solutions-wrap .solution-card:hover .solution-link::after {
  transform: translateX(4px);
}

/* Planos em destaque */
.home-plans-head .se-copy {
  margin-top: 8px;
}

@media only screen and (max-width: 991.98px) {
  .hero-deco-ring {
    display: none;
  }
}
