:root {
  --hb-green: #22c55e;
  --hb-green-dark: #16a34a;
  --hb-green-glow: rgba(34, 197, 94, 0.35);
  --hb-bg: #050807;
  --hb-bg-soft: #0c1210;
  --hb-bg-card: #ffffff;
  --hb-text: #f8fafc;
  --hb-text-muted: #94a3b8;
  --hb-border: rgba(255, 255, 255, 0.08);
  --hb-radius: 18px;
  --hb-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --hb-max: 1180px;
  /* Margem lateral — alinha logo do header e textos do hero */
  --hb-page-inline: clamp(16px, 4vw, 16px);
  /* Tipografia do hero (referência Zapping) */
  --hb-hero-rating-size: 14px;
  --hb-hero-title-size: 64px;
  --hb-hero-lead-size: 18px;
  --hb-hero-note-size: 12px;
  --hb-hero-btn-size: 16px;
  --hb-hero-block-max: 660px;
  --hb-hero-title-max: 660px;
  --hb-hero-lead-max: 660px;
  --hb-hero-note-max: 660px;
  --hb-hero-content-offset-x: 350px;
  --hb-hero-content-offset-y: 40px;
  --hb-hero-min-height: 480px;
  --hb-hero-padding-top: 108px;
  --hb-hero-padding-bottom: 120px;
  --hb-hero-font-family: "Inter", system-ui, -apple-system, sans-serif;
  --hb-hero-title-color: #ffffff;
  --hb-hero-title-font: var(--hb-hero-font-family);
  --hb-hero-title-offset-x: 0px;
  --hb-hero-title-offset-y: 0px;
  --hb-hero-lead-color: #f8fafc;
  --hb-hero-lead-font: var(--hb-hero-font-family);
  --hb-hero-lead-offset-x: 0px;
  --hb-hero-lead-offset-y: 0px;
  --hb-hero-rating-color: #f8fafc;
  --hb-hero-rating-font: var(--hb-hero-font-family);
  --hb-hero-rating-offset-x: 0px;
  --hb-hero-rating-offset-y: 0px;
  --hb-hero-btn-secondary-color: #f8fafc;
  --hb-hero-btn-secondary-border-color: rgba(255, 255, 255, 0.1);
  --hb-hero-btn-secondary-bg-color: rgba(255, 255, 255, 0.06);
  --hb-hero-btn-secondary-hover-color: #f8fafc;
  --hb-hero-btn-secondary-border-hover-color: rgba(255, 255, 255, 0.18);
  --hb-hero-btn-secondary-bg-hover-color: rgba(255, 255, 255, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  touch-action: manipulation;
  margin: 0;
  font-family: "Segoe UI", Inter, system-ui, -apple-system, sans-serif;
  background: var(--hb-bg);
  color: var(--hb-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.hb-container {
  width: min(100% - (var(--hb-page-inline) * 2), var(--hb-max));
  margin-inline: auto;
}

.hb-top {
  position: relative;
  color: var(--hb-text);
}

.hb-mobile-header-shell {
  display: contents;
}

.hb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0 0;
  transition: padding 0.2s ease;
}

.hb-header.is-scrolled {
  padding-top: 10px;
}

.hb-header.is-scrolled .hb-header-inner {
  background: color-mix(in srgb, var(--hb-header-menu-bg-color, #121614) var(--hb-header-menu-bg-scrolled-opacity, 92%), transparent);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.hb-header-shell {
  padding: 0;
}

.hb-nav--mobile {
  display: none !important;
}

.hb-header-sticky {
  display: contents;
}

.hb-header-mobile-top {
  display: none;
}

.hb-header-help {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  color: rgba(248, 250, 252, 0.88);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.hb-header-help svg,
.hb-header-help-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hb-header-help-icon {
  display: block;
  object-fit: contain;
}

.hb-header-help:hover {
  color: #fff;
}

.hb-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 64px;
  padding: 10px var(--hb-page-inline);
  border-radius: 999px;
  background: color-mix(in srgb, var(--hb-header-menu-bg-color, #121614) var(--hb-header-menu-bg-opacity, 72%), transparent);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  position: relative;
}

.hb-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hb-brand img {
  max-height: var(--hb-brand-logo-max-height, 34px);
  width: auto;
}

.hb-nav.hb-nav--desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-width: 0;
}

.hb-nav a {
  color: rgba(248, 250, 252, 0.78);
  font-size: var(--hb-nav-font-size, 15px);
  font-weight: 600;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.hb-nav a:hover,
.hb-nav a.is-active {
  color: var(--hb-green);
}

.hb-nav-divider {
  width: 1px;
  height: 18px;
  margin: 0 2px;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
  align-self: center;
}

.hb-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.hb-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.hb-btn.hb-btn-account {
  background: var(--hb-header-btn-account-bg, color-mix(in srgb, #fff 6%, transparent));
  color: var(--hb-header-btn-account-text, var(--hb-text));
  border: 1px solid var(--hb-header-btn-account-border, color-mix(in srgb, #fff 10%, transparent));
  padding: 10px 16px;
  font-size: var(--hb-header-btn-font-size, 0.88rem);
  box-shadow: none;
}

.hb-btn.hb-btn-account:hover {
  background: color-mix(in srgb, var(--hb-header-btn-account-bg, color-mix(in srgb, #fff 6%, transparent)) 160%, transparent);
  border-color: color-mix(in srgb, var(--hb-header-btn-account-border, color-mix(in srgb, #fff 10%, transparent)) 180%, transparent);
  color: #fff;
}

.hb-header-actions .hb-btn-primary {
  padding: 10px 16px;
  font-size: var(--hb-header-btn-font-size, 0.88rem);
  border: 1px solid transparent;
  box-sizing: border-box;
  box-shadow: none;
}

.hb-btn-lg {
  padding: 14px 24px;
  font-size: var(--hb-hero-btn-size);
}

.hb-btn:hover {
  transform: translateY(-1px);
}

.hb-btn-primary {
  background: var(--hb-site-btn-bg, var(--hb-green));
  color: var(--hb-site-btn-text, #041109);
  box-shadow: none;
}

.hb-btn-primary,
.nio-card-btn,
.hb-streaming-card-btn,
.hb-faq-btn,
.hb-autoatendimento-featured-btn,
.hb-hero-plano-cta {
  box-shadow: none;
}

.hb-btn-primary:hover {
  background: var(--hb-site-btn-bg-hover, var(--hb-green-dark));
}

.hb-btn-ghost {
  background: transparent;
  color: var(--hb-text);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hb-hero-actions .hb-btn.hb-hero-btn-secondary {
  color: var(--hb-hero-btn-secondary-color, var(--hb-text));
  border: 1px solid var(--hb-hero-btn-secondary-border-color, rgba(255, 255, 255, 0.1));
  background: var(--hb-hero-btn-secondary-bg-color, rgba(255, 255, 255, 0.06));
  box-shadow: none;
}

.hb-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.42);
}

.hb-hero-actions .hb-btn.hb-hero-btn-secondary:hover {
  color: var(--hb-hero-btn-secondary-hover-color, var(--hb-text));
  background: var(--hb-hero-btn-secondary-bg-hover-color, rgba(255, 255, 255, 0.1));
  border-color: var(--hb-hero-btn-secondary-border-hover-color, rgba(255, 255, 255, 0.18));
}

.hb-btn-outline {
  background: transparent;
  color: var(--hb-text);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hb-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.hb-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--hb-border);
  background: transparent;
  color: var(--hb-text);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}

.hb-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hb-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hb-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hb-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.hb-site-menu-open {
  overflow: auto;
}

.hb-hero {
  position: relative;
  overflow: hidden;
  min-height: var(--hb-hero-min-height, 480px);
  display: flex;
  align-items: flex-start;
  padding: var(--hb-hero-padding-top, 108px) 0 var(--hb-hero-padding-bottom, 36px);
}

.hb-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.94) 0%, rgba(5, 8, 7, 0.72) 42%, rgba(5, 8, 7, 0.28) 100%),
    radial-gradient(circle at 78% 42%, rgba(34, 197, 94, 0.18), transparent 34%),
    linear-gradient(180deg, #0a100d 0%, #050807 100%);
}

.hb-hero-media--mobile {
  display: none;
}

.hb-hero-media.hb-hero-media--default {
  background: #000;
}

.hb-hero-carousel-track {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hb-hero-slide {
  position: absolute;
  inset: 0;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hb-hero-slide.is-active {
  opacity: 0.92;
}

.hb-hero-slide--plano {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.04), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(249, 115, 22, 0.08), transparent 32%),
    linear-gradient(135deg, #0f1412 0%, #050807 58%, #0a0d0c 100%);
  opacity: 0;
}

.hb-hero-slide--plano.is-active {
  opacity: 1;
}

.hb-hero-slide.hb-hero-slide--custom-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hb-banner-custom-bg);
  z-index: 0;
  pointer-events: none;
}

.hb-hero-slide.hb-hero-slide--custom-bg:not(.hb-hero-slide--plano) {
  background-color: transparent;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hb-hero-slide--plano.hb-hero-slide--custom-bg {
  background: none;
}

.hb-hero-slide--plano.hb-hero-slide--custom-bg > * {
  position: relative;
  z-index: 1;
}

.hb-hero--has-plano .hb-hero-overlay {
  background: linear-gradient(180deg, rgba(5, 8, 7, 0.08) 0%, rgba(5, 8, 7, 0.28) 100%);
}

.hb-hero-plano-wrap {
  position: relative;
  z-index: 1;
  margin-inline: auto;
}

.hb-hero-plano-inner {
  width: 100%;
  box-sizing: border-box;
  padding-inline: var(--hb-page-inline);
}

.hb-hero-plano {
  display: grid;
  grid-template-columns: minmax(0, var(--hb-plano-image-width, 42%)) minmax(0, 1fr);
  gap: var(--hb-hero-plano-gap, clamp(18px, 3vw, 42px));
  align-items: center;
  width: 100%;
  min-height: var(--hb-plano-image-height, clamp(320px, 42vw, 420px));
  box-sizing: border-box;
}

.hb-hero-plano-photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: var(--hb-plano-image-height, clamp(260px, 34vw, 380px));
  transform: translate(var(--hb-plano-image-offset-x, 0), var(--hb-plano-image-offset-y, 0));
  overflow: hidden;
  border-radius: 0 24px 24px 0;
}

.hb-hero-plano-offer {
  color: var(--hb-text);
  width: 100%;
  min-width: 0;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translate(var(--hb-plano-offer-offset-x, 0), var(--hb-plano-offer-offset-y, 0));
}

.hb-hero-plano--image-right {
  grid-template-columns: minmax(0, 1fr) minmax(0, var(--hb-plano-image-width, 42%));
}

.hb-hero-plano--image-right .hb-hero-plano-photo {
  grid-column: 2;
  border-radius: 24px 0 0 24px;
}

.hb-hero-plano--image-right .hb-hero-plano-photo img,
.hb-hero-plano--image-right .hb-hero-plano-photo-fallback {
  object-position: right center;
}

.hb-hero-plano--image-right .hb-hero-plano-offer {
  grid-column: 1;
  grid-row: 1;
}

.hb-hero-plano-headline {
  margin: 0 0 18px;
  max-width: none;
  font-size: var(--hb-plano-headline-size, clamp(28px, 3.4vw, 44px));
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hb-hero-plano-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  width: min(var(--hb-plano-box-max-width, 900px), 100%);
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  overflow: hidden;
  background: #050807;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: scale(var(--hb-plano-box-scale, 1));
  transform-origin: left top;
  position: relative;
  align-self: flex-start;
  margin-bottom: calc((1 - var(--hb-plano-box-scale, 1)) * -1 * 250px);
}

.hb-hero-plano-box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18%;
  height: 64%;
  width: 1px;
  background: rgba(255, 255, 255, 0.82);
  transform: translateX(-50%);
  pointer-events: none;
}

.hb-hero-plano-photo img,
.hb-hero-plano-photo-fallback {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  clip-path: none;
  box-shadow: none;
}

.hb-hero-plano-photo-fallback {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.hb-hero-plano-box-data,
.hb-hero-plano-box-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
  min-height: 100%;
  min-width: 0;
}

.hb-hero-plano-box-data {
  align-items: center;
  text-align: center;
  gap: 8px;
}

.hb-hero-plano-box-price {
  gap: 18px;
  align-items: center;
  text-align: center;
}

.hb-hero-plano-volume {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

.hb-hero-plano-volume-number,
.hb-hero-plano-volume-unit {
  display: block;
  line-height: 0.92;
  flex-shrink: 0;
}

.hb-hero-plano-volume-number {
  font-size: var(--hb-plano-volume-number-size, 56px);
}

.hb-hero-plano-volume-unit {
  font-size: var(--hb-plano-volume-unit-size, 56px);
}

.hb-hero-plano-volume-label {
  display: block;
  font-size: var(--hb-plano-volume-label-size, 16px);
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--hb-plano-volume-label-color, #f97316);
  text-transform: uppercase;
}

.hb-hero-plano-price-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  gap: 0;
  width: auto;
  max-width: 100%;
  line-height: 1;
}

.hb-hero-plano-price-amount {
  display: inline-flex;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 0;
  line-height: 0.88;
}

.hb-hero-plano-currency-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
  margin-right: 2px;
}

.hb-hero-plano-price-por {
  font-size: var(--hb-plano-price-por-size, 14px);
  font-weight: 800;
  color: var(--hb-plano-price-por-color, #f97316);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0 0 1px;
  transform: translate(var(--hb-plano-price-por-offset-x, 0), var(--hb-plano-price-por-offset-y, 0));
}

.hb-hero-plano-currency {
  font-size: var(--hb-plano-price-currency-size, 37px);
  font-weight: 900;
  color: var(--hb-plano-price-currency-color, #f97316);
  letter-spacing: -0.03em;
  line-height: 0.88;
  margin: 0;
}

.hb-hero-plano-price-main {
  font-size: var(--hb-plano-price-main-size, 56px);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  flex-shrink: 0;
}

.hb-hero-plano-cents-col {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  align-self: flex-start;
  margin: 0.32em 0 0 0;
}

.hb-hero-plano-price-cents {
  display: inline-flex;
  align-items: flex-start;
  font-size: var(--hb-plano-price-cents-size, 22px);
  font-weight: 800;
  color: var(--hb-plano-price-cents-color, #fff);
  line-height: 1;
  margin: 0;
  transform: translate(var(--hb-plano-price-cents-offset-x, 0), var(--hb-plano-price-cents-offset-y, 0));
}

.hb-hero-plano-price-asterisk {
  font-size: 0.92em;
  margin-left: 0;
}

.hb-hero-plano-price-suffix {
  font-size: var(--hb-plano-price-suffix-size, 13px);
  font-weight: 700;
  color: var(--hb-plano-price-suffix-color, #fff);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 2px 0 0 0;
  transform: translate(var(--hb-plano-price-suffix-offset-x, 0), var(--hb-plano-price-suffix-offset-y, 0));
}

.hb-hero-plano-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 220px);
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--hb-site-btn-bg, #f97316);
  color: var(--hb-site-btn-text, #fff);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
  align-self: center;
  flex-shrink: 0;
}

.hb-hero-plano-cta:hover {
  background: var(--hb-site-btn-bg-hover, #ea580c);
  transform: translateY(-1px);
}

.hb-hero-plano-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  align-self: flex-start;
  width: 100%;
  max-width: min(var(--hb-plano-box-max-width, 900px), 100%);
}

.hb-hero-plano-features li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.92);
}

.hb-hero-plano-check {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--hb-plano-check-color, #f97316);
  position: relative;
}

.hb-hero-plano-check::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .hb-hero-plano {
    grid-template-columns: 1fr;
  }

  .hb-hero-plano-headline {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hb-hero-plano-box {
    grid-template-columns: 1fr;
    transform: none;
    margin-bottom: 0;
  }

  .hb-hero-plano-box::after {
    display: none;
  }

  .hb-hero-plano-box-data {
    position: relative;
    padding-bottom: 22px;
  }

  .hb-hero-plano-box-data::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.82);
    pointer-events: none;
  }

  .hb-hero-plano-box-price {
    padding-top: 22px;
  }
}

.hb-hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transform: translateX(-50%);
}

.hb-hero-carousel-dot {
  width: 24px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.hb-hero-carousel-dot.is-active {
  width: 40px;
  height: 6px;
  background: #fff;
}

.hb-carousel-bullets {
  display: none;
  justify-content: var(--hb-carousel-bullets-justify, center);
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding-inline: 0;
  width: 100%;
  box-sizing: border-box;
}

.hb-carousel-bullet {
  width: 24px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--hb-carousel-bullet-color, #c8ccc9);
  cursor: pointer;
  flex-shrink: 0;
  touch-action: manipulation;
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
}

.hb-carousel-bullet.is-active {
  width: 40px;
  height: 6px;
  background: var(--hb-carousel-bullet-active-color, #3faf5e);
}

.hb-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 38%, rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 8, 7, 0.12) 0%, rgba(5, 8, 7, 0.55) 100%);
  pointer-events: none;
}

.hb-hero--text-hidden .hb-hero-overlay {
  background: linear-gradient(180deg, rgba(5, 8, 7, 0.04) 0%, rgba(5, 8, 7, 0.22) 100%);
}

.hb-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-left: var(--hb-page-inline);
  text-align: left;
}

.hb-hero-content-inner {
  max-width: var(--hb-hero-block-max);
  transform: translate(var(--hb-hero-content-offset-x), var(--hb-hero-content-offset-y));
}

.hb-hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--hb-hero-rating-color, rgba(248, 250, 252, 0.92));
  font-family: var(--hb-hero-rating-font, var(--hb-hero-font-family));
  font-size: var(--hb-hero-rating-size);
  font-weight: 600;
  line-height: 1.4;
  transform: translate(var(--hb-hero-rating-offset-x, 0px), var(--hb-hero-rating-offset-y, 0px));
}

.hb-hero-stars {
  color: #facc15;
  letter-spacing: 0.08em;
  font-size: var(--hb-hero-rating-size);
}

.hb-hero h1 {
  margin: 0 0 20px;
  max-width: 100%;
  color: var(--hb-hero-title-color, #ffffff);
  font-family: var(--hb-hero-title-font, var(--hb-hero-font-family));
  font-size: clamp(2.25rem, 5vw, var(--hb-hero-title-size));
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  transform: translate(var(--hb-hero-title-offset-x, 0px), var(--hb-hero-title-offset-y, 0px));
}

.hb-hero-lead {
  margin: 0;
  max-width: 100%;
  color: var(--hb-hero-lead-color, rgba(248, 250, 252, 0.82));
  font-family: var(--hb-hero-lead-font, var(--hb-hero-font-family));
  font-size: clamp(1rem, 1.6vw, var(--hb-hero-lead-size));
  font-weight: 400;
  line-height: 1.55;
  transform: translate(var(--hb-hero-lead-offset-x, 0px), var(--hb-hero-lead-offset-y, 0px));
}

.hb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hb-hero-note {
  max-width: 100%;
  margin: 24px 0 0;
  color: rgba(148, 163, 184, 0.88);
  font-size: var(--hb-hero-note-size);
  line-height: 1.5;
}

.hb-cep-panel {
  max-width: 560px;
  margin: 0 auto 28px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hb-border);
}

.hb-cep-form {
  display: flex;
  gap: 10px;
}

.hb-cep-form input {
  flex: 1;
  min-width: 0;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: var(--hb-text);
  padding: 0 16px;
  font-size: 1rem;
}

.hb-cep-form input:focus {
  outline: none;
  border-color: var(--hb-green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.hb-cep-status {
  min-height: 22px;
  margin-top: 12px;
  font-size: 0.92rem;
}

.hb-cep-status.is-ok {
  color: #86efac;
}

.hb-cep-status.is-error {
  color: #fca5a5;
}

.hb-hero-stats {
  display: none;
}

.hb-stat {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hb-border);
}

.hb-stat strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.hb-stat span {
  color: var(--hb-text-muted);
  font-size: 0.88rem;
}

.hb-section {
  padding: 84px 0;
}

#planos,
#autoatendimento,
#como-funciona,
#beneficios,
#faq {
  scroll-margin-top: 96px;
}

.hb-section-soft {
  background: var(--hb-bg-soft);
}

.hb-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}

.hb-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
}

.hb-section-head p {
  margin: 0;
  color: var(--hb-text-muted);
  font-size: 1.05rem;
}

.hb-plans-section-head {
  width: fit-content;
  max-width: min(760px, 100%);
  margin: 0 0 34px;
  text-align: var(--hb-plans-section-head-align, left);
  transform: translate(
    var(--hb-plans-section-head-offset-x, 0px),
    var(--hb-plans-section-head-offset-y, 0px)
  );
}

.hb-plans-section-head--align-left {
  margin-right: auto;
  margin-left: 0;
}

.hb-plans-section-head--align-center {
  margin-inline: auto;
}

.hb-plans-section-head--align-right {
  margin-left: auto;
  margin-right: 0;
}

.hb-plans-section-head h2 {
  margin: 0 0 12px;
  color: var(--hb-plans-section-title-color, #144723);
  font-size: var(--hb-plans-section-title-size, clamp(1.85rem, 3.4vw, 2.65rem));
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-align: inherit;
}

.hb-plans-section-head p {
  margin: 0;
  max-width: 640px;
  color: var(--hb-plans-section-subtitle-color, #64748b);
  font-size: var(--hb-plans-section-subtitle-size, 1rem);
  line-height: 1.5;
  text-align: inherit;
}

.hb-section-plans {
  background: var(--hb-plans-section-bg, #fff);
  color: #1f2937;
  padding-top: var(--hb-hero-plans-gap, 48px);
  padding-bottom: 72px;
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
}

.hb-empty--plans {
  background: #faf8f2;
  border-color: #e7e0d4;
  color: #64748b;
}

.nio-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(var(--nio-plans-card-width, 272px), 100%), 1fr));
  gap: var(--hb-site-card-gap, 16px);
  align-items: stretch;
  justify-content: start;
}

.hb-plans-section-head--align-center ~ .nio-plans {
  justify-content: center;
}

.hb-plans-section-head--align-right ~ .nio-plans {
  justify-content: end;
}

@media (min-width: 1180px) {
  .nio-plans {
    grid-template-columns: repeat(4, minmax(0, var(--nio-plans-card-width, 272px)));
  }

  .nio-plans[data-count="3"] {
    grid-template-columns: repeat(3, minmax(0, var(--nio-plans-card-width, 272px)));
    max-width: none;
  }
}

.nio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: var(--nio-card-radius-tl, 24px) var(--nio-card-radius-tr, 24px) var(--nio-card-radius-br, 0) var(--nio-card-radius-bl, 0);
  background: var(--nio-card-bg, #faf8f2);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
  overflow: visible;
  isolation: isolate;
}

.nio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--hb-plans-card-hover-color, #000);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 4;
}

.nio-card:hover::after {
  opacity: calc(var(--hb-plans-card-hover-opacity, 12) / 100);
}

.nio-card-badge {
  position: absolute;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 6px 12px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.2;
  box-shadow: none;
  box-sizing: border-box;
  height: var(--hb-plans-badge-height, auto);
  min-height: var(--hb-plans-badge-height, auto);
  border-radius: var(--hb-plans-badge-radius, 8px);
  transition: background 0.2s ease, color 0.2s ease;
}

.hb-section-plans:not([data-plans-badge-style="center"]) .nio-plans-carousel {
  overflow: hidden;
}

.hb-section-plans:not([data-plans-badge-style="center"]) .nio-plans-carousel,
.hb-section-plans:not([data-plans-badge-style="center"]) .nio-plans {
  padding-top: var(--hb-plans-badge-wrap-padding-top, 14px);
}

.hb-section-plans:not([data-plans-badge-style="center"]) .nio-card-badge {
  top: var(--hb-plans-badge-offset-top, -12px);
  right: var(--hb-plans-badge-offset-right, -10px);
  left: auto;
  transform: none;
  gap: 6px;
  width: var(--hb-plans-badge-width, auto);
  max-width: var(--hb-plans-badge-max-width, calc(100% - 8px));
  justify-content: center;
  background: var(--hb-plans-badge-bg, #DC2626);
  color: var(--hb-plans-badge-text, #fff);
}

.hb-section-plans:not([data-plans-badge-style="center"]) .nio-card-badge svg,
.hb-section-plans:not([data-plans-badge-style="center"]) .nio-card-badge-icon {
  display: inline-block;
}

.hb-section-plans:not([data-plans-badge-style="center"]) .nio-card-badge--is-promo,
.hb-section-plans:not([data-plans-badge-style="center"]) .nio-card-badge--is-new,
.hb-section-plans:not([data-plans-badge-style="center"]) .nio-card-badge--is-choice {
  background: var(--hb-plans-badge-bg, #DC2626);
  color: var(--hb-plans-badge-text, #fff);
}

.hb-section-plans .nio-card:hover .nio-card-badge,
.hb-section-plans .nio-card:hover .nio-card-badge--is-promo,
.hb-section-plans .nio-card:hover .nio-card-badge--is-new,
.hb-section-plans .nio-card:hover .nio-card-badge--is-choice {
  background: var(--hb-plans-badge-hover-bg, #FACC15);
  color: var(--hb-plans-badge-hover-text, #111827);
}

.hb-section-plans[data-plans-badge-style="center"] .nio-card-badge {
  top: var(--hb-plans-badge-offset-top, -13px);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  gap: 6px;
  padding: 7px 14px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
  width: var(--hb-plans-badge-width, auto);
  max-width: var(--hb-plans-badge-max-width, none);
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
  background: var(--hb-plans-badge-bg, #DC2626);
  color: var(--hb-plans-badge-text, #fff);
}

.hb-section-plans[data-plans-badge-style="center"] .nio-card-badge--is-promo,
.hb-section-plans[data-plans-badge-style="center"] .nio-card-badge--is-new,
.hb-section-plans[data-plans-badge-style="center"] .nio-card-badge--is-choice {
  background: var(--hb-plans-badge-bg, #DC2626);
  color: var(--hb-plans-badge-text, #fff);
}

.nio-card-badge-icon,
.nio-card-badge svg {
  width: var(--hb-plans-badge-icon-size, 14px);
  height: var(--hb-plans-badge-icon-size, 14px);
  flex: 0 0 var(--hb-plans-badge-icon-size, 14px);
  object-fit: contain;
}

.nio-card-badge--is-promo {
  background: #ffc8d0;
  color: #9f1239;
}

.nio-card-badge--is-new {
  background: #d6fb47;
  color: #144723;
}

.nio-card-badge--is-choice {
  background: #fde68a;
  color: #92400e;
}

.nio-card-media {
  position: relative;
  z-index: 5;
  height: var(--hb-plans-card-media-height, 210px);
  overflow: hidden;
  border-radius: var(--nio-card-radius-tl, 24px) var(--nio-card-radius-tr, 24px) 0 0;
  background: #1e293b;
  contain: paint;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.nio-card-media--empty {
  background: linear-gradient(145deg, #1e293b 0%, #334155 55%, #475569 100%);
}

.nio-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: inherit;
  transform: scale(1.03);
  transform-origin: center center;
  background: #334155;
}

.nio-card-media-shade {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.58) 24%,
    rgba(0, 0, 0, 0.22) 52%,
    rgba(0, 0, 0, 0) 78%
  );
  pointer-events: none;
}

.nio-card-media-text {
  position: absolute;
  top: 22px;
  left: 18px;
  right: 18px;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.nio-card-tier {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 6px;
}

.nio-card-speed {
  display: block;
  font-size: clamp(2rem, 4.2vw, 2.55rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nio-card-fixed {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.92;
}

.nio-card-body {
  position: relative;
  margin-top: -18px;
  padding: 0 16px 20px;
  border-radius: var(--nio-card-radius-tl, 24px) var(--nio-card-radius-tr, 24px) var(--nio-card-radius-br, 0) var(--nio-card-radius-bl, 0);
  background: var(--nio-card-bg, #faf8f2);
  z-index: 5;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: visible;
}

.nio-card-pricing {
  padding: 4px 2px 0;
}

.nio-card-price {
  margin: 0;
  color: var(--nio-card-price, #144723);
  font-size: clamp(1.85rem, 3.6vw, 2.15rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nio-card-price span {
  font-size: 0.95rem;
  font-weight: 700;
}

.nio-card-price-alt {
  margin: 2px 0 0;
  color: var(--nio-card-text, #64748b);
  font-size: 0.72rem;
  line-height: 1.2;
}

.nio-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
  min-height: 48px;
  border-radius: 999px;
  background: var(--hb-site-btn-bg, var(--nio-card-btn, #144723));
  color: var(--hb-site-btn-text, #fff);
  font-size: 0.98rem;
  font-weight: 800;
  transition: background 0.18s ease, transform 0.18s ease;
}

.nio-card-btn:hover {
  background: var(--hb-site-btn-bg-hover, color-mix(in srgb, var(--nio-card-btn, #144723) 82%, #000));
  transform: translateY(-1px);
}

.nio-card-btn svg {
  width: 20px;
  height: 20px;
}

.nio-card-feats {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.nio-card-feats li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 4px 0;
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--nio-card-text, #334155);
}

.nio-card-feat-text {
  flex: 1;
  min-width: 0;
}

.nio-card-feat-icon {
  width: var(--hb-midia-icon-size, 28px);
  height: var(--hb-midia-icon-size, 28px);
  flex: 0 0 var(--hb-midia-icon-size, 28px);
  display: grid;
  place-items: center;
  color: #64748b;
}

.nio-card-feat-icon svg {
  width: 22px;
  height: 22px;
}

.nio-card-feat-icon img:not(.nio-card-app-icon-img),
.nio-card-feat-img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.nio-card-includes {
  --nio-card-logo-size: var(--hb-midia-logo-size, 36px);
  --nio-card-tip-max-width: min(240px, 100cqw);
  container-type: inline-size;
  margin-top: 8px;
  position: relative;
  overflow: visible;
  z-index: 3;
}

.nio-card-includes-label {
  margin: 0 0 6px;
  font-size: 0.88rem;
  font-weight: inherit;
  line-height: 1.35;
  color: var(--nio-card-text, #334155);
}

.nio-card-includes-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 1;
}

.nio-card-app-icon {
  width: var(--nio-card-logo-size, 36px);
  height: var(--nio-card-logo-size, 36px);
  border-radius: calc(var(--nio-card-logo-size, 36px) * 0.22);
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.1);
  box-sizing: border-box;
}

.nio-card-app-icon--has-tip {
  overflow: visible;
  cursor: pointer;
  position: relative;
}

.nio-card-app-icon--has-tip:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--nio-card-btn, #144723) 70%, #fff);
  outline-offset: 2px;
}

.nio-card-app-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: inherit;
}

.nio-card-app-tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 0;
  width: max-content;
  max-width: var(--nio-card-tip-max-width, min(240px, 100%));
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(43, 47, 54, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(248, 250, 252, 0.96);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 20;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

.nio-card-app-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(43, 47, 54, 0.88);
}

.nio-card-app-icon--has-tip:not(.nio-card-app-icon--tip-first):not(.nio-card-app-icon--tip-second):not(.nio-card-app-icon--tip-penultimate):not(.nio-card-app-icon--tip-last):hover .nio-card-app-tip,
.nio-card-app-icon--has-tip:not(.nio-card-app-icon--tip-first):not(.nio-card-app-icon--tip-second):not(.nio-card-app-icon--tip-penultimate):not(.nio-card-app-icon--tip-last):focus-visible .nio-card-app-tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(calc(-50% + var(--nio-tip-shift-x, 0px))) translateY(0);
}

.nio-card-app-icon--has-tip:not(.nio-card-app-icon--tip-first):not(.nio-card-app-icon--tip-second):not(.nio-card-app-icon--tip-penultimate):not(.nio-card-app-icon--tip-last) .nio-card-app-tip::after {
  left: calc(50% - var(--nio-tip-shift-x, 0px));
}

.nio-card-app-icon--tip-first .nio-card-app-tip,
.nio-card-app-icon--tip-second .nio-card-app-tip {
  left: 0;
  right: auto;
  transform: translateX(var(--nio-tip-shift-x, 0px)) translateY(4px);
}

.nio-card-app-icon--tip-first .nio-card-app-tip::after,
.nio-card-app-icon--tip-second .nio-card-app-tip::after {
  left: calc(var(--nio-card-logo-size, 36px) * 0.5 - var(--nio-tip-shift-x, 0px));
  right: auto;
  transform: translateX(-50%);
}

.nio-card-app-icon--tip-first:hover .nio-card-app-tip,
.nio-card-app-icon--tip-first:focus-visible .nio-card-app-tip,
.nio-card-app-icon--tip-second:hover .nio-card-app-tip,
.nio-card-app-icon--tip-second:focus-visible .nio-card-app-tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(var(--nio-tip-shift-x, 0px)) translateY(0);
}

.nio-card-app-icon--tip-penultimate .nio-card-app-tip,
.nio-card-app-icon--tip-last .nio-card-app-tip {
  left: auto;
  right: 0;
  transform: translateX(var(--nio-tip-shift-x, 0px)) translateY(4px);
}

.nio-card-app-icon--tip-penultimate .nio-card-app-tip::after,
.nio-card-app-icon--tip-last .nio-card-app-tip::after {
  left: auto;
  right: calc(var(--nio-card-logo-size, 36px) * 0.5 + var(--nio-tip-shift-x, 0px));
  transform: translateX(50%);
}

.nio-card-app-icon--tip-penultimate:hover .nio-card-app-tip,
.nio-card-app-icon--tip-penultimate:focus-visible .nio-card-app-tip,
.nio-card-app-icon--tip-last:hover .nio-card-app-tip,
.nio-card-app-icon--tip-last:focus-visible .nio-card-app-tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(var(--nio-tip-shift-x, 0px)) translateY(0);
}

@media (max-width: 980px) {
  .nio-card-includes {
    --nio-card-tip-max-width: min(260px, calc(100vw - 48px));
  }
}

.nio-globoplay {
  display: inline-block;
  font-weight: 800;
  color: #e30613;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.nio-highlight {
  color: #144723;
  font-weight: 800;
}

.nio-card-copy {
  margin: 14px 0 0;
  color: var(--nio-card-text, #64748b);
  font-size: 0.84rem;
  line-height: 1.5;
  text-align: center;
}

.nio-card-terms {
  display: block;
  margin-top: auto;
  padding-top: 14px;
  text-align: center;
  color: color-mix(in srgb, var(--nio-card-text, #94a3b8) 72%, transparent);
  font-size: 0.78rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nio-card-terms:hover {
  color: #144723;
}

.hb-section-autoatendimento {
  position: relative;
  overflow: visible;
  background: var(--hb-autoatendimento-bg, #26b596);
  color: #fff;
  padding: 56px 0 72px;
}

.hb-section-autoatendimento .hb-container {
  position: relative;
  z-index: 1;
}

.hb-autoatendimento-head {
  width: fit-content;
  max-width: min(760px, 100%);
  margin: 0 0 34px;
  text-align: var(--hb-autoatendimento-head-align, left);
  transform: translate(
    var(--hb-autoatendimento-head-offset-x, 0px),
    var(--hb-autoatendimento-head-offset-y, 0px)
  );
}

.hb-autoatendimento-head--align-left {
  margin-right: auto;
  margin-left: 0;
}

.hb-autoatendimento-head--align-center {
  margin-inline: auto;
}

.hb-autoatendimento-head--align-right {
  margin-left: auto;
  margin-right: 0;
}

.hb-autoatendimento-head h2 {
  margin: 0 0 12px;
  color: var(--hb-autoatendimento-title-color, #fff);
  font-size: var(--hb-autoatendimento-title-size, clamp(1.85rem, 3.4vw, 2.65rem));
  font-family: var(--hb-autoatendimento-title-font, Inter, "Segoe UI", sans-serif);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-align: inherit;
}

.hb-autoatendimento-head p {
  margin: 0;
  max-width: 640px;
  color: var(--hb-autoatendimento-subtitle-color, rgba(255, 255, 255, 0.92));
  font-size: var(--hb-autoatendimento-subtitle-size, 1rem);
  font-family: var(--hb-autoatendimento-subtitle-font, Inter, "Segoe UI", sans-serif);
  line-height: 1.5;
  text-align: inherit;
}

.hb-autoatendimento-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.hb-autoatendimento-layout--grid-only {
  grid-template-columns: 1fr;
  justify-items: start;
}

.hb-autoatendimento-layout--grid-only .hb-autoatendimento-grid-wrap {
  max-width: 100%;
  margin-left: 0;
  justify-self: start;
}

.hb-autoatendimento-featured {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: center;
  min-height: 276px;
  padding: 8px 4px;
  background: transparent;
  color: #fff;
  text-align: left;
}

.hb-autoatendimento-featured-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.hb-autoatendimento-featured-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 72px;
  height: 72px;
  margin: 0 0 18px;
  flex: 0 0 auto;
}

.hb-autoatendimento-featured-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hb-autoatendimento-featured-foot {
  width: 100%;
  max-width: 300px;
}

.hb-autoatendimento-featured h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: left;
}

.hb-autoatendimento-featured p {
  margin: 0 0 18px;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.45;
  text-align: left;
}

.hb-autoatendimento-featured-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--hb-site-btn-bg, #facc15);
  color: var(--hb-site-btn-text, #111827);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.hb-autoatendimento-featured-btn:hover {
  transform: translateY(-1px);
}

.hb-autoatendimento-grid-wrap {
  width: fit-content;
  max-width: 100%;
  margin-left: var(--hb-autoatendimento-grid-offset-x, 0px);
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

.hb-autoatendimento-grid {
  display: grid;
  grid-template-columns: repeat(var(--hb-autoatendimento-card-columns, 4), var(--hb-autoatendimento-card-width, var(--hb-autoatendimento-card-size, 186px)));
  gap: var(--hb-site-card-gap, 16px);
  align-items: start;
  justify-content: start;
  width: max-content;
  min-width: 0;
  max-width: none;
}

.hb-autoatendimento-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: calc(var(--hb-autoatendimento-card-width, var(--hb-autoatendimento-card-size, 186px)) * var(--hb-autoatendimento-card-content-gap-ratio, 0.06));
  width: 100%;
  min-width: 0;
  max-width: none;
  min-height: var(--hb-autoatendimento-card-height, var(--hb-autoatendimento-card-width, var(--hb-autoatendimento-card-size, 186px)));
  height: var(--hb-autoatendimento-card-height, auto);
  padding: calc(var(--hb-autoatendimento-card-width, var(--hb-autoatendimento-card-size, 186px)) * var(--hb-autoatendimento-card-padding-ratio, 0.12));
  border-radius: var(--hb-autoatendimento-card-radius-tl, var(--hb-autoatendimento-card-radius, 16px)) var(--hb-autoatendimento-card-radius-tr, var(--hb-autoatendimento-card-radius, 16px)) var(--hb-autoatendimento-card-radius-br, var(--hb-autoatendimento-card-radius, 16px)) var(--hb-autoatendimento-card-radius-bl, var(--hb-autoatendimento-card-radius, 16px));
  background: color-mix(in srgb, var(--hb-autoatendimento-card-bg-color, #000000) var(--hb-autoatendimento-card-bg-opacity, 14%), transparent);
  color: #fff;
  text-decoration: none;
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  transition: background 0.15s ease;
}

.hb-autoatendimento-card:hover {
  background: color-mix(in srgb, var(--hb-autoatendimento-card-bg-color, #000000) var(--hb-autoatendimento-card-bg-hover-opacity, 22%), transparent);
}

.hb-autoatendimento-card-icon {
  display: block;
  flex: 0 0 auto;
  width: calc(var(--hb-autoatendimento-card-width, var(--hb-autoatendimento-card-size, 186px)) * var(--hb-autoatendimento-card-icon-ratio, 0.22));
  height: calc(var(--hb-autoatendimento-card-width, var(--hb-autoatendimento-card-size, 186px)) * var(--hb-autoatendimento-card-icon-ratio, 0.22));
  min-width: 32px;
  min-height: 32px;
}

.hb-autoatendimento-card-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
  filter: brightness(0) invert(1);
}

.hb-autoatendimento-card-label {
  display: block;
  margin: 0;
  width: 100%;
  text-align: left;
  font-size: max(0.8125rem, calc(var(--hb-autoatendimento-card-width, var(--hb-autoatendimento-card-size, 186px)) * var(--hb-autoatendimento-card-font-ratio, 0.085)));
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.hb-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.hb-plan {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 24px;
  background: var(--hb-bg-card);
  color: #0f172a;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.hb-plan.is-featured {
  transform: translateY(-8px);
  outline: 2px solid var(--hb-green);
}

.hb-plan-top {
  padding: 28px 28px 18px;
}

.hb-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hb-plan h3 {
  margin: 14px 0 8px;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.hb-plan-speed {
  color: #64748b;
  font-size: 0.98rem;
  margin-bottom: 18px;
}

.hb-plan ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hb-plan li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid #eef2f7;
  font-size: 0.95rem;
}

.hb-plan li::before {
  content: "✓";
  color: var(--hb-green-dark);
  font-weight: 800;
}

.hb-plan-footer {
  margin-top: auto;
  padding: 22px 28px 28px;
  border-top: 1px solid #eef2f7;
}

.hb-plan-price-label {
  display: block;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hb-plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin: 8px 0 18px;
  color: #0f172a;
}

.hb-plan-price-currency {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.hb-plan-price-main {
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hb-plan-price-cents {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hb-plan .hb-btn {
  width: 100%;
}

.hb-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.hb-step {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hb-border);
}

.hb-step-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
  font-weight: 800;
  margin-bottom: 16px;
}

.hb-step h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.hb-step p {
  margin: 0;
  color: var(--hb-text-muted);
}

.hb-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hb-benefit {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hb-border);
}

.hb-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, 0.14);
  color: #86efac;
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.hb-benefit h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.hb-benefit p {
  margin: 0;
  color: var(--hb-text-muted);
  font-size: 0.92rem;
}

.hb-faq {
  width: 100%;
}

.hb-section-faq {
  background: var(--hb-faq-section-bg, #fff);
}

.hb-faq-head {
  margin: 0 0 28px;
}

.hb-faq-head h2 {
  margin: 0 0 10px;
  font-size: var(--hb-faq-title-size, clamp(1.6rem, 2.4vw, 2.35rem));
  line-height: 1.15;
  color: var(--hb-faq-title-color, #0f172a);
  font-weight: 800;
}

.hb-faq-head p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--hb-faq-subtitle-color, #64748b);
}

.hb-faq-item {
  border-bottom: var(--hb-faq-border-width, 1px) solid var(--hb-faq-border-line, rgba(226, 232, 240, 0.4));
}

.hb-faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  border: none;
  background: transparent;
  color: var(--hb-faq-question-color, var(--hb-text));
  font: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.hb-faq-question {
  flex: 1 1 auto;
  min-width: 0;
}

.hb-faq-chevron {
  flex: 0 0 auto;
  color: var(--hb-faq-chevron-color, #94a3b8);
  line-height: 1;
  transition: transform .2s ease;
}

.hb-faq-chevron svg {
  width: 18px;
  height: 18px;
  display: block;
}

.hb-faq-item.is-open .hb-faq-chevron {
  transform: rotate(180deg);
}

.hb-faq-item button span[data-faq-icon] {
  color: var(--hb-green);
  font-size: 1.4rem;
  line-height: 1;
}

.hb-faq-panel {
  display: none;
  padding: 0 0 22px;
  color: var(--hb-faq-answer-color, var(--hb-text-muted));
  line-height: 1.55;
}

.hb-faq-item.is-open .hb-faq-panel {
  display: block;
}

.hb-faq-foot {
  width: 100%;
  margin: var(--hb-faq-btn-margin-top, 18px) 0 0;
  display: var(--hb-faq-btn-display, flex);
  justify-content: var(--hb-faq-btn-justify, flex-end);
}

.hb-faq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--hb-site-btn-bg, var(--hb-faq-btn-bg, #26b596));
  color: var(--hb-site-btn-text, var(--hb-faq-btn-text, #fff));
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.hb-faq-btn:hover {
  transform: translateY(-1px);
}

.hb-cta {
  padding: 72px 0;
}

.hb-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.05));
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.hb-cta-box h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.hb-cta-box p {
  margin: 0;
  color: var(--hb-text-muted);
}

.hb-footer {
  padding: 42px 0 0;
  border-top: 1px solid var(--hb-border);
  color: var(--hb-footer-main-text-color, var(--hb-text-muted));
  font-size: 0.92rem;
}

.hb-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.55fr) minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.hb-footer-grid-spacer {
  min-height: 1px;
}

.hb-footer-brand {
  margin: 0 0 12px;
}

.hb-footer-brand h3 {
  margin: 0;
}

.hb-footer-brand img {
  display: block;
  max-height: var(--hb-footer-logo-max-height, 40px);
  width: auto;
}

.hb-footer h3 {
  margin: 0;
  color: var(--hb-footer-main-text-color, var(--hb-text));
  font-size: 1rem;
}

.hb-footer-grid > div > p {
  margin: 0;
  line-height: 1.55;
  white-space: pre-line;
  color: var(--hb-footer-main-text-color, inherit);
}

.hb-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hb-footer li + li {
  margin-top: 8px;
}

.hb-footer-grid > div:nth-child(3) a {
  color: var(--hb-footer-link-color, inherit);
  text-decoration: none;
}

.hb-footer-grid > div:nth-child(3) a:hover {
  color: var(--hb-footer-link-hover-color, #9e0000);
}

.hb-footer-contacts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hb-footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hb-footer-contact-color, inherit);
  text-decoration: none;
}

.hb-footer-contact-link:hover {
  color: var(--hb-footer-contact-hover-color, #9e0000);
}

.hb-footer-contact-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
}

.hb-footer-copybar {
  color: var(--hb-footer-copybar-text-color, #fff);
  background: var(--hb-footer-copybar-bg-color, #1e7e68);
  font-size: var(--hb-footer-copybar-font-size, 15px);
  border-top: 1px solid rgba(255, 255, 255, var(--hb-footer-copybar-divider-opacity, 0.12));
}

.hb-footer-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: calc((var(--hb-footer-copybar-padding-y, 28px) * 2) + var(--hb-footer-logo-max-height, 40px));
  padding: var(--hb-footer-copybar-padding-y, 28px) 0;
}

.hb-footer-copybar-brand {
  flex: 0 0 auto;
}

.hb-footer-copybar-brand img {
  display: block;
  max-height: var(--hb-footer-logo-max-height, 40px);
  width: auto;
}

.hb-footer-brand-text {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--hb-footer-copybar-text-color, #fff);
  white-space: nowrap;
}

.hb-footer-copy {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.hb-footer-copy-main {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  max-width: 100%;
}

.hb-footer-line {
  display: inline-block;
  margin: 0;
  line-height: 1.35;
  white-space: nowrap;
}

.hb-footer-line--main {
  font-weight: 500;
}

.hb-footer-line--legal {
  display: block;
  font-size: 0.94em;
  opacity: 0.96;
  white-space: nowrap;
}

.hb-floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
}

.hb-empty {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed var(--hb-border);
  text-align: center;
  color: var(--hb-text-muted);
}

.nio-plans-nav,
.hb-autoatendimento-nav,
.hb-section-streaming .hb-streaming-nav {
  display: none;
}

@media (max-width: 980px) {
  :root {
    --hb-mobile-header-inline: 8px;
    --hb-mobile-safe-top: env(safe-area-inset-top, 0px);
  }

  html,
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  main,
  .hb-footer {
    overflow-x: hidden;
    max-width: 100%;
  }

  .hb-top {
    padding-top: 0;
    margin-top: 0;
    overflow-x: hidden;
    max-width: 100%;
  }

  body.hb-header-is-scrolled .hb-top {
    padding-top: 0;
  }

  .hb-mobile-header-shell {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 130;
  }

  .hb-header-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 54px;
    padding: calc(var(--hb-mobile-safe-top) + 4px) 0 4px 12px;
    background: transparent;
    color: #fff;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: 1;
    transform: translateY(var(--hb-mobile-topbar-offset-y, 0px));
    max-height: 120px;
    opacity: 1;
    overflow: hidden;
    pointer-events: auto;
    transition: max-height 0.22s ease, opacity 0.22s ease, padding 0.22s ease, min-height 0.22s ease;
  }

  body.hb-header-is-scrolled .hb-header-mobile-top {
    max-height: 0;
    min-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    pointer-events: none;
  }

  .hb-header-help {
    gap: 3px;
    transform: translateX(var(--hb-mobile-help-offset-x, 0px));
  }

  .hb-header-help span {
    line-height: 1;
  }

  .hb-header-mobile-top .hb-menu-toggle {
    transform: translateX(var(--hb-mobile-menu-offset-x, 0px));
  }

  .hb-header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    z-index: 1;
  }

  .hb-header.is-scrolled {
    top: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .hb-header-sticky {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--hb-mobile-header-inline, 8px);
    background: transparent;
    transition: background 0.2s ease;
    overflow: visible;
  }

  .hb-header.is-scrolled .hb-header-sticky {
    background: transparent;
  }

  .hb-header-shell {
    display: block;
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: visible;
  }

  .hb-header .hb-header-shell.hb-container {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .hb-header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "brand actions";
    width: 100%;
    border-radius: 70px;
    padding: 6px 6px 6px 14px;
    gap: 8px;
    min-height: 52px;
    background: color-mix(in srgb, var(--hb-header-menu-bg-color, #252628) var(--hb-header-menu-bg-opacity, 72%), transparent);
    border: 1px solid var(--hb-header-menu-mobile-border, color-mix(in srgb, #fff 8%, transparent));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: none;
    position: relative;
    z-index: 2;
    overflow: visible;
  }

  .hb-header.is-scrolled .hb-header-inner {
    background: color-mix(in srgb, var(--hb-header-menu-bg-color, #252628) var(--hb-header-menu-bg-scrolled-opacity, 92%), transparent);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  }

  .hb-brand {
    grid-area: brand;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hb-brand span,
  .hb-brand img {
    max-width: 100%;
  }

  .hb-header-actions {
    grid-area: actions;
    gap: 0;
    flex-wrap: nowrap;
  }

  .hb-nav--desktop {
    display: none !important;
  }

  .hb-nav--mobile {
    display: none !important;
    position: static;
    width: 100%;
    z-index: 1;
    padding: 0;
    border-radius: 0;
    background: #050505;
    border: 0;
    box-shadow: none;
    overflow: hidden;
    order: 1;
  }

  .hb-header-shell {
    order: 2;
  }

  .hb-nav--mobile.is-open {
    display: block !important;
  }

  .hb-nav--mobile .hb-nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4px 16px 12px;
  }

  .hb-nav--mobile a {
    display: block;
    width: 100%;
    padding: 16px 8px;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(248, 250, 252, 0.84);
    line-height: 1.25;
  }

  .hb-nav--mobile a:hover,
  .hb-nav--mobile a.is-active {
    color: #fff;
  }

  .hb-nav--mobile .hb-nav-divider {
    width: calc(100% - 16px);
    height: 1px;
    margin: 8px 8px 12px;
    background: rgba(255, 255, 255, 0.14);
    align-self: stretch;
  }

  body.hb-site-menu-open .hb-mobile-header-shell {
    background: #050505;
  }

  body.hb-site-menu-open .hb-header-mobile-top {
    background: #050505;
  }

  body.hb-site-menu-open .hb-header-sticky {
    padding-top: 0;
  }

  body.hb-site-menu-open .hb-header-inner {
    margin-top: 4px;
  }

  .hb-menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    padding: 0;
    gap: 6px;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    outline: none;
  }

  .hb-menu-toggle:focus,
  .hb-menu-toggle:focus-visible {
    outline: none;
    box-shadow: none;
  }

  .hb-menu-toggle span {
    width: 22px;
    height: 2px;
    margin: 0;
    border-radius: 1px;
  }

  .hb-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hb-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .hb-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hb-btn.hb-btn-account {
    display: none;
  }

  .hb-header-actions .hb-btn-primary {
    padding: 10px 16px;
    font-size: var(--hb-header-btn-font-size, 0.88rem) !important;
    border: 1px solid transparent;
    box-sizing: border-box;
    min-width: 0;
    white-space: nowrap;
    box-shadow: none;
  }

  .hb-header-actions .hb-btn-primary svg {
    display: none;
  }

  .hb-hero {
    min-height: 0;
    padding-top: 0 !important;
    padding-bottom: 0;
    margin-top: 0;
    overflow: visible;
    display: block;
  }

  .hb-hero.hb-hero--has-plano {
    padding-top: 0 !important;
    min-height: 0 !important;
  }

  .hb-hero-media--desktop {
    display: none;
  }

  .hb-hero-media--mobile {
    display: block;
    position: relative;
    inset: auto;
    min-height: 0;
    background: none;
  }

  .hb-hero-media--mobile.hb-hero-media--default {
    min-height: 0;
    background: #000;
  }

  .hb-hero-media--mobile .hb-hero-carousel-track {
    position: relative;
    inset: auto;
    min-height: 0;
  }

  .hb-hero-media--mobile .hb-hero-slide {
    position: relative;
    inset: auto;
    opacity: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    min-height: 0;
    transition: opacity 0.6s ease;
  }

  .hb-hero-media--mobile .hb-hero-slide.is-active {
    opacity: 1;
    height: auto;
    overflow: visible;
    pointer-events: auto;
  }

  .hb-hero-media--mobile .hb-hero-slide:not(.hb-hero-slide--plano):not(.hb-hero-slide--mobile-image):not(.hb-hero-slide--mobile-promo).is-active {
    min-height: var(--hb-plano-mobile-image-height, clamp(180px, 42vw, 260px));
    background-size: cover;
    background-position: var(--hb-plano-mobile-image-focus-x, 50%) var(--hb-plano-mobile-image-focus-y, 50%);
    margin-top: var(--hb-plano-mobile-image-offset-y, 0px);
    transform: none;
  }

  .hb-hero-media--mobile .hb-hero-slide--mobile-image {
    background: transparent !important;
    background-image: none !important;
    min-height: 0 !important;
    transform: none !important;
  }

  .hb-hero-media--mobile .hb-hero-slide--mobile-image.is-active {
    min-height: 0 !important;
    height: auto !important;
  }

  .hb-hero-media--mobile .hb-hero-slide--plano {
    display: block;
    align-items: stretch;
    background: transparent;
  }

  .hb-hero-media--mobile .hb-hero-slide--plano.is-active {
    opacity: 1;
  }

  .hb-hero-media--mobile .hb-hero-plano-wrap {
    padding-bottom: 8px;
  }

  .hb-hero-media--mobile .hb-hero-plano {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    gap: 14px;
    align-items: stretch;
  }

  .hb-hero-media--mobile .hb-hero-plano-photo {
    position: relative;
    min-height: var(--hb-plano-mobile-image-height, 220px);
    height: var(--hb-plano-mobile-image-height, 220px);
    max-height: none;
    margin-top: var(--hb-plano-mobile-image-offset-y, 0px);
    transform: none !important;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    grid-column: auto !important;
  }

  .hb-hero-media--mobile .hb-hero-plano-photo img,
  .hb-hero-media--mobile .hb-hero-plano-photo-fallback {
    width: 100%;
    height: 100%;
    max-height: none;
    min-height: 0;
    object-fit: cover;
    object-position: var(--hb-plano-mobile-image-focus-x, 50%) var(--hb-plano-mobile-image-focus-y, 50%);
    border-radius: 0;
    transform: none !important;
  }

  .hb-hero-media--mobile .hb-hero-slide--mobile-text .hb-hero-plano-photo {
    display: none;
  }

  .hb-hero-media--mobile .hb-hero-slide--mobile-promo {
    background: #000;
    transform: none !important;
    margin-top: 0;
    min-height: 0 !important;
  }

  .hb-hero-media--mobile .hb-hero-slide--mobile-promo.is-active {
    min-height: 0 !important;
    height: auto !important;
    margin-top: 0;
  }

  .hb-hero-mobile-promo {
    background: #000;
    color: #fff;
    padding-top: calc(var(--hb-mobile-safe-top) + var(--hb-mobile-header-height, 136px));
  }

  body.hb-header-is-scrolled .hb-hero-mobile-promo {
    padding-top: calc(var(--hb-mobile-safe-top) + var(--hb-mobile-header-height-compact, 80px));
  }

  .hb-hero-mobile-promo-media {
    position: relative;
    width: 100%;
    height: var(--hb-plano-mobile-image-height, 340px);
    min-height: var(--hb-plano-mobile-image-height, 340px);
    margin-top: var(--hb-plano-mobile-image-offset-y, 0px);
    overflow: hidden;
  }

  .hb-hero-mobile-promo-media img,
  .hb-hero-mobile-promo-media-fallback {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--hb-plano-mobile-image-focus-x, 50%) var(--hb-plano-mobile-image-focus-y, 50%);
  }

  .hb-hero-mobile-promo-media-fallback {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  }

  .hb-hero-mobile-promo-fade {
    display: none;
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(var(--hb-mobile-image-fade-rgb, 0, 0, 0), var(--hb-mobile-image-fade-opacity, 0.72)) 0%,
      rgba(var(--hb-mobile-image-fade-rgb, 0, 0, 0), 0) var(--hb-mobile-image-fade-top, 24%),
      rgba(var(--hb-mobile-image-fade-rgb, 0, 0, 0), 0) calc(100% - var(--hb-mobile-image-fade-bottom, 40%)),
      rgba(var(--hb-mobile-image-fade-rgb, 0, 0, 0), var(--hb-mobile-image-fade-opacity, 0.72)) 100%
    );
  }

  .hb-hero-media--mobile .hb-hero-slide--mobile-fade .hb-hero-mobile-promo-fade {
    display: block;
  }

  .hb-hero-media--mobile .hb-hero-slide--mobile-fade .hb-hero-plano-photo::after,
  .hb-hero-media--mobile .hb-hero-slide--mobile-fade.hb-hero-slide--mobile-image .hb-hero-plano-photo::after,
  .hb-hero-media--mobile .hb-hero-slide--mobile-fade:not(.hb-hero-slide--plano):not(.hb-hero-slide--mobile-image):not(.hb-hero-slide--mobile-promo).is-active::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(
      180deg,
      rgba(var(--hb-mobile-image-fade-rgb, 0, 0, 0), var(--hb-mobile-image-fade-opacity, 0.72)) 0%,
      rgba(var(--hb-mobile-image-fade-rgb, 0, 0, 0), 0) var(--hb-mobile-image-fade-top, 24%),
      rgba(var(--hb-mobile-image-fade-rgb, 0, 0, 0), 0) calc(100% - var(--hb-mobile-image-fade-bottom, 40%)),
      rgba(var(--hb-mobile-image-fade-rgb, 0, 0, 0), var(--hb-mobile-image-fade-opacity, 0.72)) 100%
    );
  }

  .hb-hero-media--mobile .hb-hero-slide--mobile-fade:not(.hb-hero-slide--plano):not(.hb-hero-slide--mobile-image):not(.hb-hero-slide--mobile-promo).is-active {
    position: relative;
  }

  @keyframes hb-promo-fade-up {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }

  @keyframes hb-promo-fade-in {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes hb-promo-slide-left {
    from {
      opacity: 0;
      transform: translateX(-28px);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }

  @keyframes hb-promo-slide-right {
    from {
      opacity: 0;
      transform: translateX(28px);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }

  @keyframes hb-promo-zoom-in {
    from {
      opacity: 0;
      transform: scale(0.92);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }

  .hb-hero-slide--mobile-promo.is-active:not([data-promo-animate]) [data-promo-anim]:not([data-promo-anim="none"]) {
    opacity: 0;
  }

  .hb-hero-slide--mobile-promo[data-promo-animate] [data-promo-anim="fade-up"] {
    animation: hb-promo-fade-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hb-hero-slide--mobile-promo[data-promo-animate] [data-promo-anim="fade-in"] {
    animation: hb-promo-fade-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hb-hero-slide--mobile-promo[data-promo-animate] [data-promo-anim="slide-left"] {
    animation: hb-promo-slide-left 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hb-hero-slide--mobile-promo[data-promo-animate] [data-promo-anim="slide-right"] {
    animation: hb-promo-slide-right 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hb-hero-slide--mobile-promo[data-promo-animate] [data-promo-anim="zoom-in"] {
    animation: hb-promo-zoom-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hb-hero-slide--mobile-promo[data-promo-animate] .hb-hero-mobile-promo-proof[data-promo-anim]:not([data-promo-anim="none"]) {
    animation-delay: 50ms;
  }

  .hb-hero-slide--mobile-promo[data-promo-animate] .hb-hero-mobile-promo-headline[data-promo-anim]:not([data-promo-anim="none"]) {
    animation-delay: 200ms;
  }

  .hb-hero-slide--mobile-promo[data-promo-animate] .hb-hero-mobile-promo-lead[data-promo-anim]:not([data-promo-anim="none"]) {
    animation-delay: 380ms;
  }

  @media (prefers-reduced-motion: reduce) {
    .hb-hero-slide--mobile-promo [data-promo-anim] {
      opacity: 1 !important;
      animation: none !important;
      transform: none !important;
    }
  }

  .hb-hero-mobile-promo-copy {
    position: relative;
    z-index: 1;
    margin-top: calc(-28px + var(--hb-plano-mobile-text-offset-y, 0px));
    padding: 0 24px 32px;
    text-align: center;
  }

  .hb-hero-mobile-promo-proof {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
    font-size: 0.78rem;
    line-height: 1.35;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.84);
  }

  .hb-hero-mobile-promo-avatars {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }

  .hb-hero-mobile-promo-avatars span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-left: -8px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  }

  .hb-hero-mobile-promo-avatars span:first-child {
    margin-left: 0;
    background: linear-gradient(135deg, #38bdf8, #0284c7);
  }

  .hb-hero-mobile-promo-avatars span:nth-child(2) {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
  }

  .hb-hero-mobile-promo-avatars span:nth-child(3) {
    background: linear-gradient(135deg, #fb7185, #e11d48);
  }

  .hb-hero-mobile-promo-headline {
    margin: 0 0 16px;
    font-size: clamp(1.65rem, 7.4vw, 2.15rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
  }

  .hb-hero-mobile-promo-lead {
    margin: 0;
    font-size: clamp(0.92rem, 3.8vw, 1rem);
    line-height: 1.55;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
  }

  .hb-hero-media--mobile .hb-hero-plano-offer {
    transform: none !important;
    padding: 0;
    grid-column: auto !important;
    margin-top: var(--hb-plano-mobile-text-offset-y, 0px);
  }

  .hb-hero-media--mobile .hb-hero-plano-headline {
    font-size: clamp(1.1rem, 5vw, 1.45rem);
    margin-bottom: 8px;
  }

  .hb-hero-media--mobile .hb-hero-plano-box {
    grid-template-columns: 1fr;
    transform: none;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    align-self: stretch;
  }

  .hb-hero-media--mobile .hb-hero-plano-box::after {
    display: none;
  }

  .hb-hero-media--mobile .hb-hero-plano-box-data {
    position: relative;
    padding: 20px 24px 22px;
  }

  .hb-hero-media--mobile .hb-hero-plano-box-data::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.82);
    pointer-events: none;
  }

  .hb-hero-media--mobile .hb-hero-plano-box-price {
    padding: 22px 24px 24px;
  }

  .hb-hero-media--mobile .hb-hero-carousel-dots {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 12px auto 0;
    padding-bottom: 4px;
  }

  .hb-hero-media,
  .hb-hero-carousel-track,
  .hb-hero-slide {
    z-index: 0;
  }

  .hb-hero--has-mobile-banners .hb-hero-content {
    display: none;
  }

  .hb-hero-content,
  .hb-hero-plano-wrap {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--hb-mobile-safe-top) + var(--hb-mobile-header-height, 136px) + 12px);
  }

  .hb-hero-plano-wrap {
    padding-top: calc(var(--hb-mobile-safe-top) + var(--hb-mobile-header-height, 136px) + 12px);
  }

  body.hb-header-is-scrolled .hb-hero-content,
  body.hb-header-is-scrolled .hb-hero-plano-wrap {
    padding-top: calc(var(--hb-mobile-safe-top) + var(--hb-mobile-header-height-compact, 80px) + 12px);
  }

  .hb-hero h1 {
    max-width: none;
    font-size: clamp(1.75rem, 7.5vw, var(--hb-hero-title-size, 64px));
  }

  .hb-hero-content-inner {
    max-width: none;
  }

  .hb-hero-lead {
    font-size: clamp(0.95rem, 4vw, var(--hb-hero-lead-size, 18px));
  }

  .hb-steps,
  .hb-benefits,
  .hb-footer-grid {
    grid-template-columns: 1fr;
  }

  .hb-footer-grid-spacer {
    display: none;
  }

  .hb-footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    min-height: 0;
    padding: var(--hb-footer-copybar-padding-y, 28px) 0;
  }

  .hb-footer-copy {
    gap: 6px;
    width: 100%;
  }

  .hb-footer-copy-main {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
  }

  .hb-footer-line,
  .hb-footer-line--legal {
    white-space: pre-line;
  }

  .hb-section-plans,
  .hb-section-streaming,
  .hb-section-autoatendimento {
    touch-action: auto;
    overflow-x: hidden;
    max-width: 100%;
  }

  .hb-section-plans .hb-container,
  .hb-section-streaming .hb-container {
    overflow-x: hidden;
    max-width: 100%;
  }

  .hb-section-plans .nio-plans-track-wrap,
  .hb-section-streaming .hb-streaming-track-wrap,
  .hb-streaming-track-wrap,
  .hb-autoatendimento-track-wrap {
    margin-inline: calc(-1 * var(--hb-page-inline));
    width: calc(100% + (var(--hb-page-inline) * 2));
    max-width: 100%;
    overflow-x: auto !important;
    overflow-y: visible;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    touch-action: pan-x pan-y;
    padding-inline: 0;
    scroll-padding-inline: var(--hb-carousel-track-padding-inline, var(--hb-page-inline));
    padding-top: 20px;
    padding-bottom: 8px;
    isolation: isolate;
  }

  .nio-plans .nio-card,
  .hb-streaming-card,
  .hb-autoatendimento-carousel .hb-autoatendimento-card {
    touch-action: pan-x pan-y;
    -webkit-user-drag: none;
    user-select: none;
  }

  .hb-carousel-bullets {
    display: var(--hb-carousel-bullets-display, flex);
  }

  .hb-autoatendimento-track-wrap {
    padding-top: 0;
  }

  .nio-plans-track-wrap::-webkit-scrollbar,
  .hb-streaming-track-wrap::-webkit-scrollbar,
  .hb-autoatendimento-track-wrap::-webkit-scrollbar {
    display: none;
  }

  .nio-plans,
  .hb-section-streaming .hb-streaming-track,
  .hb-streaming-track,
  .hb-autoatendimento-carousel .hb-autoatendimento-grid {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    width: max-content;
    min-width: 0;
    transform: none !important;
  }

  .nio-plans::before,
  .nio-plans::after,
  .hb-section-streaming .hb-streaming-track::before,
  .hb-section-streaming .hb-streaming-track::after,
  .hb-streaming-track::before,
  .hb-streaming-track::after {
    content: '';
    flex: 0 0 var(--hb-carousel-track-padding-inline, var(--hb-page-inline));
    width: var(--hb-carousel-track-padding-inline, var(--hb-page-inline));
    height: 1px;
    pointer-events: none;
  }

  .hb-autoatendimento-grid-wrap--mobile-grid {
    width: 100%;
    max-width: 100%;
  }

  .hb-autoatendimento-grid-wrap--mobile-grid .hb-autoatendimento-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    gap: var(--hb-site-card-gap, 16px);
  }

  .hb-autoatendimento-grid-wrap--mobile-grid .hb-autoatendimento-card {
    max-width: none;
    width: 100%;
  }

  .hb-autoatendimento-carousel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
  }

  .hb-autoatendimento-grid-wrap {
    width: 100%;
    max-width: 100%;
  }

  .hb-autoatendimento-carousel .hb-autoatendimento-grid::before,
  .hb-autoatendimento-carousel .hb-autoatendimento-grid::after {
    content: none;
    display: none;
  }

  .hb-carousel-edge-spacer {
    flex: 0 0 var(--hb-carousel-track-padding-inline, var(--hb-page-inline));
    width: var(--hb-carousel-track-padding-inline, var(--hb-page-inline));
    min-width: var(--hb-carousel-track-padding-inline, var(--hb-page-inline));
    height: 1px;
    pointer-events: none;
    scroll-snap-align: none;
  }

  .hb-autoatendimento-carousel .hb-autoatendimento-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    max-width: none !important;
    grid-template-columns: none !important;
    gap: var(--hb-site-card-gap, 16px);
  }

  .hb-autoatendimento-carousel .hb-autoatendimento-card {
    flex: 0 0 var(--hb-autoatendimento-carousel-card-basis, calc((100vw - (var(--hb-carousel-track-padding-inline, var(--hb-page-inline, 16px)) * 2) - var(--hb-site-card-gap, 16px)) / 2 - 10px));
    width: var(--hb-autoatendimento-carousel-card-basis, calc((100vw - (var(--hb-carousel-track-padding-inline, var(--hb-page-inline, 16px)) * 2) - var(--hb-site-card-gap, 16px)) / 2 - 10px));
    max-width: var(--hb-autoatendimento-carousel-card-basis, calc((100vw - (var(--hb-carousel-track-padding-inline, var(--hb-page-inline, 16px)) * 2) - var(--hb-site-card-gap, 16px)) / 2 - 10px));
    min-width: 0;
    scroll-snap-align: start;
  }

  .nio-plans-nav,
  .hb-section-streaming .hb-streaming-nav,
  .hb-autoatendimento-nav {
    align-items: center;
    gap: 12px;
    margin-top: var(--hb-carousel-nav-margin-top, 14px);
    padding-inline: 0;
    width: 100%;
    box-sizing: border-box;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
  }

  .nio-plans-nav,
  .hb-section-streaming .hb-streaming-nav {
    display: var(--hb-carousel-nav-display-mobile, flex);
  }

  .nio-plans-nav {
    justify-content: var(--hb-plans-nav-justify, center);
  }

  .hb-section-streaming .hb-streaming-nav {
    justify-content: var(--hb-streaming-nav-justify, flex-end);
  }

  .hb-autoatendimento-nav {
    display: none;
  }

  .hb-section-autoatendimento.hb-autoatendimento--mobile-carousel {
    overflow: visible;
  }

  .hb-autoatendimento-layout .hb-autoatendimento-grid-wrap--mobile-carousel {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0 !important;
    overflow: visible;
  }

  .hb-autoatendimento-carousel .hb-autoatendimento-track-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    scroll-padding-inline: var(--hb-carousel-track-padding-inline, var(--hb-page-inline));
    touch-action: auto;
  }

  .hb-autoatendimento-carousel .hb-autoatendimento-nav {
    display: var(--hb-carousel-nav-display-mobile, flex) !important;
    justify-content: var(--hb-autoatendimento-nav-justify, center);
    align-items: center;
    gap: 12px;
    margin-top: var(--hb-carousel-nav-margin-top, 14px);
    padding-inline: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 3;
    pointer-events: auto;
    flex-wrap: nowrap;
  }

  .hb-autoatendimento-carousel .hb-autoatendimento-nav .hb-streaming-nav-btn--prev {
    background: var(--hb-streaming-nav-prev-bg, #0f4c5c);
    color: #fff;
  }

  .hb-autoatendimento-carousel .hb-autoatendimento-nav .hb-streaming-nav-btn--next {
    background: var(--hb-streaming-nav-next-bg, #0f4c5c);
    color: #fff;
  }

  .nio-plans {
    gap: var(--hb-site-card-gap, 16px);
    grid-template-columns: unset !important;
  }

  .nio-plans .nio-card {
    flex: 0 0 var(--hb-plans-carousel-card-basis, min(var(--nio-plans-card-width, 272px), 78vw));
    width: var(--hb-plans-carousel-card-basis, min(var(--nio-plans-card-width, 272px), 78vw));
    max-width: var(--hb-plans-carousel-card-basis, min(var(--nio-plans-card-width, 272px), 78vw));
    scroll-snap-align: start;
    overflow: visible;
  }

  .hb-section-plans[data-plans-badge-style="center"] .nio-plans .nio-card-badge {
    top: -14px;
    z-index: 7;
  }

  .hb-streaming-card {
    flex: 0 0 var(--hb-plans-carousel-card-basis, var(--hb-streaming-carousel-card-basis, min(var(--nio-plans-card-width, 272px), 78vw))) !important;
    min-width: 0;
    width: var(--hb-plans-carousel-card-basis, var(--hb-streaming-carousel-card-basis, min(var(--nio-plans-card-width, 272px), 78vw)));
    max-width: var(--hb-plans-carousel-card-basis, var(--hb-streaming-carousel-card-basis, min(var(--nio-plans-card-width, 272px), 78vw)));
    min-height: 22rem !important;
    height: auto;
    justify-content: flex-start;
    scroll-snap-align: start;
    overflow: hidden;
  }

  .hb-streaming-card-top {
    flex: 0 0 9rem !important;
    height: 9rem !important;
    min-height: 9rem !important;
    max-height: 9rem !important;
    overflow: hidden !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 18px 0 !important;
    box-sizing: border-box;
  }

  .hb-streaming-card-top h3 {
    display: -webkit-box !important;
    overflow: hidden !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical;
    margin: 0 0 8px !important;
    line-height: 1.2;
    flex: 0 0 auto;
  }

  .hb-streaming-card-top p {
    display: -webkit-box !important;
    overflow: hidden !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.45;
    flex: 0 0 auto;
  }

  .hb-streaming-card-logo {
    flex: 0 0 auto !important;
    min-height: auto !important;
    padding: 12px 18px 16px !important;
  }

  .hb-streaming-card-foot {
    flex: 0 0 auto !important;
    margin-top: auto !important;
    padding: 0 18px 20px !important;
  }

  .hb-plan.is-featured {
    transform: none;
  }

  .hb-hero-stats {
    grid-template-columns: 1fr;
  }

  .hb-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hb-autoatendimento-layout {
    grid-template-columns: 1fr;
  }

  .hb-section-plans {
    padding-top: var(--hb-hero-plans-gap, 24px);
    padding-bottom: 56px;
    overflow-x: hidden;
  }

  .hb-section-plans .nio-plans-carousel {
    overflow: hidden;
    max-width: 100%;
  }

  .hb-section-streaming .hb-streaming-carousel {
    overflow: hidden;
    max-width: 100%;
  }

  .hb-streaming-track {
    gap: var(--hb-site-card-gap, 16px);
  }

  .nio-card-media {
    height: var(--hb-plans-card-media-height, 150px);
  }
}

@media (max-width: 760px) {
  .hb-header-inner {
    border-radius: 999px;
  }

  .hb-hero h1 {
    font-size: var(--hb-hero-title-size, clamp(1.65rem, 8vw, 2.4rem));
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .hb-hero-lead {
    font-size: var(--hb-hero-lead-size, 1rem);
  }

  .hb-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hb-hero-actions .hb-btn {
    width: 100%;
  }

  .hb-cep-form {
    flex-direction: column;
  }

  .hb-section {
    padding: 48px 0;
  }

  .hb-plans-section-head {
    margin-bottom: 20px;
  }

  .hb-plans-section-head h2 {
    font-size: var(--hb-plans-section-title-size, clamp(1.45rem, 6.5vw, 2rem));
  }

  .hb-plans-section-head p {
    font-size: var(--hb-plans-section-subtitle-size, 0.95rem);
  }

  .nio-card-media {
    height: var(--hb-plans-card-media-height, 132px);
  }

  .nio-card-speed {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }
}

/* Streamings carousel */
.hb-section-streaming {
  background: var(--hb-streaming-section-bg, #fff);
}

.hb-streaming-head {
  width: fit-content;
  max-width: min(920px, 100%);
  margin-bottom: 28px;
  text-align: var(--hb-streaming-head-align, left);
  transform: translate(
    var(--hb-streaming-head-offset-x, 0px),
    var(--hb-streaming-head-offset-y, 0px)
  );
}

.hb-streaming-head--align-left {
  margin-right: auto;
  margin-left: 0;
}

.hb-streaming-head--align-center {
  margin-inline: auto;
}

.hb-streaming-head--align-right {
  margin-left: auto;
  margin-right: 0;
}

.hb-streaming-head h2 {
  margin: 0 0 10px;
  font-size: var(--hb-streaming-title-size, clamp(1.6rem, 2.4vw, 2.35rem));
  line-height: 1.15;
  color: var(--hb-streaming-title-color, #0f4c5c);
  font-weight: 800;
  font-family: var(--hb-streaming-title-font, Inter, "Segoe UI", sans-serif);
  text-align: inherit;
}

.hb-streaming-head p {
  margin: 0;
  font-size: var(--hb-streaming-subtitle-size, 1rem);
  line-height: 1.5;
  color: var(--hb-streaming-subtitle-color, #64748b);
  font-family: var(--hb-streaming-subtitle-font, Inter, "Segoe UI", sans-serif);
  text-align: inherit;
}

.hb-streaming-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
}

.hb-streaming-track-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
}

.hb-streaming-track-wrap::-webkit-scrollbar {
  display: none;
}

@media (min-width: 981px) {
  .hb-streaming-track-wrap {
    overflow-x: auto;
    overflow-y: visible;
  }
}

.hb-streaming-track {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--hb-site-card-gap, 16px);
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  will-change: auto;
}

.hb-streaming-card {
  position: relative;
  flex: 0 0 calc((100% - (var(--hb-site-card-gap, 16px) * (var(--hb-streaming-visible-slots, 4) - 1))) / var(--hb-streaming-visible-slots, 4));
  min-width: 220px;
  width: auto;
  scroll-snap-align: start;
  min-height: var(--hb-streaming-card-height, 420px);
  height: var(--hb-streaming-card-height, auto);
  border-radius: var(--hb-streaming-card-radius-tl, var(--hb-streaming-card-radius, 22px)) var(--hb-streaming-card-radius-tr, var(--hb-streaming-card-radius, 22px)) var(--hb-streaming-card-radius-br, var(--hb-streaming-card-radius, 22px)) var(--hb-streaming-card-radius-bl, var(--hb-streaming-card-radius, 22px));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--hb-streaming-card-bottom-bg, var(--hb-streaming-card-bottom, #7cb342));
  border: var(--hb-streaming-card-border-width, 0) solid var(--hb-streaming-card-border-color, transparent);
  box-shadow:
    0 14px 34px rgba(15, 23, 42, var(--hb-streaming-card-shadow-opacity, 0.12)),
    inset 0 0 0 var(--hb-streaming-card-corner-outline-width, 0) var(--hb-streaming-card-corner-outline-color, transparent);
  transition: transform .28s ease, box-shadow .28s ease;
  isolation: isolate;
}

.hb-streaming-carousel--shine .hb-streaming-card::after {
  content: '';
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.22) 50%, transparent 58%);
  transform: translateX(-120%) rotate(8deg);
  animation: hb-streaming-card-shine 4.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

.hb-streaming-carousel--glass .hb-streaming-card-logo-frame {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.hb-streaming-carousel--glass .hb-streaming-card-foot {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.08) 100%);
}

.hb-streaming-carousel--glow .hb-streaming-card {
  box-shadow:
    0 14px 34px rgba(15, 23, 42, var(--hb-streaming-card-shadow-opacity, 0.12)),
    0 0 calc(16px + 18px * var(--hb-streaming-card-glow-opacity, 0.4))
      color-mix(in srgb, var(--hb-streaming-card-glow-color, var(--hb-streaming-card-top, #1b5e20)) calc(var(--hb-streaming-card-glow-opacity, 0.4) * 100%), transparent),
    inset 0 0 0 var(--hb-streaming-card-corner-outline-width, 0) var(--hb-streaming-card-corner-outline-color, transparent);
}

.hb-streaming-carousel--hover-lift .hb-streaming-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, calc(var(--hb-streaming-card-shadow-opacity, 0.12) + 0.08));
}

.hb-streaming-carousel--hover-scale .hb-streaming-card:hover {
  transform: scale(1.03);
  z-index: 3;
}

.hb-streaming-carousel--hover-glow .hb-streaming-card:hover {
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.18),
    0 0 36px color-mix(in srgb, var(--hb-streaming-card-glow-color, var(--hb-streaming-card-top, #1b5e20)) 55%, transparent),
    inset 0 0 0 var(--hb-streaming-card-corner-outline-width, 0) var(--hb-streaming-card-corner-outline-color, transparent);
}

.hb-streaming-carousel--hover-shine .hb-streaming-card:hover {
  filter: brightness(1.08) saturate(1.04);
  box-shadow:
    0 20px 42px rgba(15, 23, 42, calc(var(--hb-streaming-card-shadow-opacity, 0.12) + 0.1)),
    inset 0 0 0 var(--hb-streaming-card-corner-outline-width, 0) var(--hb-streaming-card-corner-outline-color, transparent);
}

.hb-streaming-carousel--hover-tilt .hb-streaming-card:hover {
  transform: perspective(900px) rotateX(4deg) rotateY(-3deg) translateY(-4px);
}

.hb-streaming-carousel--hover-scale.hb-streaming-carousel--glow .hb-streaming-card:hover {
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.16),
    0 0 calc(20px + 20px * var(--hb-streaming-card-glow-opacity, 0.4))
      color-mix(in srgb, var(--hb-streaming-card-glow-color, var(--hb-streaming-card-top, #1b5e20)) calc(var(--hb-streaming-card-glow-opacity, 0.4) * 100%), transparent);
}

.hb-streaming-card-top {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  min-height: 6.875rem;
  max-height: 6.875rem;
  overflow: hidden;
  padding: 20px 18px 6px;
  box-sizing: border-box;
  color: var(--hb-streaming-card-text, #fff);
  text-align: center;
}

.hb-streaming-card-top h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hb-streaming-card-top p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  opacity: 0.95;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hb-streaming-card-wave {
  position: absolute;
  inset: 0 0 auto 0;
  height: calc(var(--hb-streaming-card-split, 46%) + 46px);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hb-streaming-card-wave::before {
  content: '';
  position: absolute;
  inset: 0 0 46px 0;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255, 255, 255, 0.14) 0%, transparent 58%),
    var(--hb-streaming-card-top-bg, var(--hb-streaming-card-top, #1b5e20));
}

.hb-streaming-card-wave::after {
  content: '';
  position: absolute;
  left: -34%;
  right: -34%;
  bottom: -2px;
  height: 92px;
  background: var(--hb-streaming-card-wave-after-bg, var(--hb-streaming-card-top, #1b5e20));
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.hb-streaming-carousel--wave-soft .hb-streaming-card-wave::after {
  left: -18%;
  right: -18%;
  height: 68px;
  bottom: 4px;
}

.hb-streaming-carousel--wave-deep .hb-streaming-card-wave {
  height: calc(var(--hb-streaming-card-split, 46%) + 58px);
}

.hb-streaming-carousel--wave-deep .hb-streaming-card-wave::after {
  height: 118px;
  left: -44%;
  right: -44%;
  bottom: -8px;
}

.hb-streaming-carousel--wave-flat .hb-streaming-card-wave::after {
  left: -6%;
  right: -6%;
  height: 34px;
  border-radius: 42% 42% 0 0 / 90% 90% 0 0;
  box-shadow: none;
}

.hb-streaming-carousel--wave-steep .hb-streaming-card-wave::after {
  height: 108px;
  left: -52%;
  right: -52%;
  bottom: -14px;
}

.hb-streaming-carousel--wave-double .hb-streaming-card-wave::after {
  height: 70px;
  left: -30%;
  right: -30%;
  box-shadow: 0 22px 0 -10px var(--hb-streaming-card-wave-after-bg, var(--hb-streaming-card-top, #1b5e20));
}

.hb-streaming-card-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-height: 0;
  padding: 4px 20px;
}

.hb-streaming-card-logo-frame {
  width: var(--hb-streaming-card-logo-frame-size, 120px);
  height: var(--hb-streaming-card-logo-frame-size, 120px);
  border-radius: var(--hb-streaming-card-logo-radius, 18px);
  border: var(--hb-streaming-card-logo-frame-border-width, 4px) solid var(--hb-streaming-card-logo-frame-border-color, #fff);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: transform .28s ease, box-shadow .28s ease;
}

.hb-streaming-carousel--hover-scale .hb-streaming-card:hover .hb-streaming-card-logo-frame {
  transform: scale(1.06);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.hb-streaming-card-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
}

.hb-streaming-card-logo-frame img[hidden] {
  display: none;
}

.hb-streaming-card-foot {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  padding: 0 18px 22px;
  margin-top: auto;
}

.hb-streaming-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--hb-site-btn-bg, var(--hb-streaming-card-btn-bg, #ffcc00));
  color: var(--hb-site-btn-text, var(--hb-streaming-card-btn-text, #111));
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: none;
  transition: transform .2s ease, filter .2s ease;
}

.hb-streaming-card-btn:not(.hb-streaming-card-btn--static):hover,
.hb-streaming-carousel--hover-lift .hb-streaming-card:hover .hb-streaming-card-btn,
.hb-streaming-carousel--hover-scale .hb-streaming-card:hover .hb-streaming-card-btn,
.hb-streaming-carousel--hover-glow .hb-streaming-card:hover .hb-streaming-card-btn {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

@keyframes hb-streaming-card-shine {
  0%, 100% { transform: translateX(-120%) rotate(8deg); }
  45% { transform: translateX(120%) rotate(8deg); }
}

.hb-streaming-card-btn--static {
  cursor: default;
}

@media (max-width: 980px) {
  .hb-streaming-card {
    min-height: 22rem !important;
    justify-content: flex-start;
  }

  .hb-streaming-track-wrap {
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
    overscroll-behavior-x: none;
    overscroll-behavior-y: auto;
    margin-inline: calc(-1 * var(--hb-page-inline));
    width: calc(100% + (var(--hb-page-inline) * 2));
    max-width: 100vw;
    scroll-snap-type: x proximity;
    scroll-padding-inline: var(--hb-carousel-track-padding-inline, var(--hb-page-inline));
  }

  .hb-streaming-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    min-width: 0 !important;
    transform: none !important;
  }

  .hb-streaming-card-top {
    flex: 0 0 9rem !important;
    height: 9rem !important;
    min-height: 9rem !important;
    max-height: 9rem !important;
    overflow: hidden !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 18px 0 !important;
    box-sizing: border-box;
  }

  .hb-streaming-card-top h3 {
    display: -webkit-box !important;
    overflow: hidden !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical;
    margin: 0 0 8px !important;
    flex: 0 0 auto;
  }

  .hb-streaming-card-top p {
    display: -webkit-box !important;
    overflow: hidden !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.45;
    flex: 0 0 auto;
  }

  .hb-streaming-card-logo {
    flex: 0 0 auto !important;
    min-height: auto !important;
    padding: 12px 18px 16px !important;
  }

  .hb-streaming-card-foot {
    flex: 0 0 auto !important;
    margin-top: auto !important;
    padding: 0 18px 20px !important;
  }
}

@media (min-width: 981px) {
  .hb-section-plans.hb-plans--desktop-carousel .nio-plans-track-wrap {
    margin-inline: calc(-1 * var(--hb-page-inline));
    width: calc(100% + (var(--hb-page-inline) * 2));
    max-width: 100vw;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    scroll-padding-inline: var(--hb-carousel-track-padding-inline, var(--hb-page-inline));
  }

  .hb-section-plans.hb-plans--desktop-carousel .nio-plans-track-wrap::-webkit-scrollbar {
    display: none;
  }

  .hb-section-plans.hb-plans--desktop-carousel .nio-plans {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    width: max-content;
    min-width: 0;
    grid-template-columns: unset !important;
    transform: none !important;
  }

  .hb-section-plans.hb-plans--desktop-carousel .nio-plans::before,
  .hb-section-plans.hb-plans--desktop-carousel .nio-plans::after {
    content: '';
    flex: 0 0 var(--hb-carousel-track-padding-inline, var(--hb-page-inline));
    width: var(--hb-carousel-track-padding-inline, var(--hb-page-inline));
    height: 1px;
    pointer-events: none;
  }

  .hb-section-plans.hb-plans--desktop-carousel .nio-plans .nio-card {
    flex: 0 0 var(--nio-plans-card-width, 272px);
    width: var(--nio-plans-card-width, 272px);
    max-width: var(--nio-plans-card-width, 272px);
    scroll-snap-align: start;
  }

  .nio-plans-nav,
  .hb-section-streaming .hb-streaming-nav {
    display: var(--hb-carousel-nav-display-desktop, none);
    align-items: center;
    gap: 12px;
    margin-top: var(--hb-carousel-nav-margin-top, 18px);
    padding-inline: 0;
    width: 100%;
    box-sizing: border-box;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
  }

  .nio-plans-nav {
    justify-content: var(--hb-plans-nav-justify, center);
  }

  .hb-section-streaming .hb-streaming-nav {
    justify-content: var(--hb-streaming-nav-justify, flex-end);
  }

  .hb-section-streaming [data-streaming-carousel][data-card-count="1"] .hb-streaming-nav,
  .hb-section-streaming [data-streaming-carousel][data-card-count="2"] .hb-streaming-nav,
  .hb-section-streaming [data-streaming-carousel][data-card-count="3"] .hb-streaming-nav,
  .hb-section-streaming [data-streaming-carousel][data-card-count="4"] .hb-streaming-nav,
  .hb-section-plans .nio-plans-nav.is-carousel-nav-hidden-desktop,
  .hb-section-plans [data-plans-carousel][data-card-count="1"] .nio-plans-nav,
  .hb-section-plans [data-plans-carousel][data-card-count="2"] .nio-plans-nav,
  .hb-section-plans [data-plans-carousel][data-card-count="3"] .nio-plans-nav,
  .hb-section-plans [data-plans-carousel][data-card-count="4"] .nio-plans-nav,
  .hb-section-streaming .hb-streaming-nav.is-carousel-nav-hidden-desktop,
  .hb-section-streaming [data-streaming-carousel] .hb-streaming-nav.is-carousel-nav-hidden-desktop {
    display: none !important;
  }
}

.hb-section-streaming .hb-streaming-nav,
.nio-plans-nav {
  gap: 10px;
  padding: 0;
}

.hb-streaming-nav-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform .15s ease, opacity .15s ease;
}

.hb-streaming-nav-btn svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.hb-streaming-nav-btn--prev {
  background: var(--hb-streaming-nav-prev-bg, #0f4c5c);
  color: #fff;
}

.hb-streaming-nav-btn--next {
  background: var(--hb-streaming-nav-next-bg, #0f4c5c);
  color: #fff;
}

.hb-streaming-nav-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

@media (max-width: 1100px) {
  .hb-section-streaming .hb-streaming-card,
  .hb-streaming-card {
    flex: 0 0 var(--hb-plans-carousel-card-basis, var(--hb-streaming-carousel-card-basis, min(var(--nio-plans-card-width, 272px), 78vw))) !important;
    width: var(--hb-plans-carousel-card-basis, var(--hb-streaming-carousel-card-basis, min(var(--nio-plans-card-width, 272px), 78vw))) !important;
    max-width: var(--hb-plans-carousel-card-basis, var(--hb-streaming-carousel-card-basis, min(var(--nio-plans-card-width, 272px), 78vw))) !important;
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .hb-streaming-card-top h3 {
    margin-bottom: 14px !important;
  }
}

.hb-site-preview-mode .is-inactive,
.hb-streaming-card.is-inactive,
.hb-autoatendimento-card.is-inactive,
.hb-autoatendimento-featured.is-inactive,
.nio-card.is-inactive,
.hb-faq-item.is-inactive,
.hb-hero-slide.is-inactive {
  opacity: 0.45;
}
