/* =========================================================
     HERO NOTIFIKA
     Estilos isolados dentro de #notifika-hero
     ========================================================= */

  #notifika-hero,
  #notifika-hero * {
    box-sizing: border-box;
  }

  #notifika-hero {
    width: 100%;
    padding: 30px 32px 0px 88px;

    background: #ffffff;
    color: #0a0a0a;

    font-family:
      Inter,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif;
  }

  #notifika-hero .notifika-hero__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(240px, 0.65fr);
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
  }

  /* =========================================================
     CONTEÚDO
     ========================================================= */

  #notifika-hero .notifika-hero__content {
    min-width: 0;
  }

  /* Badge de prova social */

  #notifika-hero .notifika-hero__badge {
    position: relative;
    max-width: 100%;
    margin: 0 0 24px;
    padding: 9px 15px;

    display: inline-flex;
    align-items: center;

    overflow: visible;

    background: #0a0a0a;
    border: 1px solid #0a0a0a;
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(10, 10, 10, 0.18);

    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;

    white-space: normal;
  }

  #notifika-hero .notifika-hero__badge::after {
    position: absolute;
    top: -5px;
    right: -5px;

    width: 11px;
    height: 11px;

    content: "";

    background: #22c55e;
    border: 2px solid #ffffff;
    border-radius: 999px;
  }

  #notifika-hero .notifika-hero__badge span:last-child {
    overflow-wrap: anywhere;
  }

  /* Título */

  #notifika-hero .notifika-hero__title {
    max-width: 900px;
    margin: 0;

    color: #0a0a0a;

    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  /* Subtítulo */

  #notifika-hero .notifika-hero__subtitle {
    max-width: 680px;
    margin: 28px 0 0;

    color: #5f6368;

    font-size: clamp(17px, 1.45vw, 20px);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -0.01em;
  }

  /* Badge Smart CRM */

  #notifika-hero .notifika-hero__subtitle-badge {
    margin-left: 8px;
    padding: 5px 10px;

    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    white-space: nowrap;

    background: #ffffff;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(7, 16, 32, 0.05);

    color: #0a0a0a;

    font-size: 0.68em;
    font-weight: 700;
    line-height: 1;
  }

  /* =========================================================
     BOTÕES
     ========================================================= */

  #notifika-hero .notifika-hero__actions {
    margin-top: 36px;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  #notifika-hero .notifika-hero__button {
    min-height: 48px;
    padding: 14px 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid transparent;
    border-radius: 12px;

    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-decoration: none;

    cursor: pointer;

    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      color 180ms ease,
      transform 180ms ease,
      box-shadow 180ms ease;
  }

  #notifika-hero .notifika-hero__button:hover {
    transform: translateY(-1px);
  }

  #notifika-hero .notifika-hero__button:active {
    transform: translateY(0);
  }

  #notifika-hero .notifika-hero__button:focus-visible {
    outline: 3px solid rgba(0, 0, 0, 0.18);
    outline-offset: 3px;
  }

  #notifika-hero .notifika-hero__button--primary {
    background: #0a0a0a;
    border-color: #0a0a0a;
    color: #ffffff;
  }

  #notifika-hero .notifika-hero__button--primary:hover {
    background: #272727;
    border-color: #272727;
    color: #ffffff;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  }

  #notifika-hero .notifika-hero__button--secondary {
    background: #ffffff;
    border-color: #d8d8d8;
    color: #0a0a0a;
  }

  #notifika-hero .notifika-hero__button--secondary:hover {
    background: #f7f7f7;
    border-color: #b8b8b8;
    color: #0a0a0a;
  }

  /* Microcopy */

  #notifika-hero .notifika-hero__note {
    margin: 16px 0 0;

    color: #777777;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
  }

  /* =========================================================
     VÍDEO
     ========================================================= */

  #notifika-hero .notifika-hero__visual {
    width: 100%;
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Moldura do celular */

  #notifika-hero .notifika-phone {
    position: relative;

    width: min(100%, 255px);
    padding: 10px;

    background: #202630;
    border: 1px solid #343b46;
    border-radius: 42px;

    box-shadow:
      0 30px 70px rgba(17, 24, 39, 0.18),
      0 8px 24px rgba(17, 24, 39, 0.12);
  }

  #notifika-hero .notifika-phone__screen {
    position: relative;

    width: 100%;
    aspect-ratio: 9 / 18;

    overflow: hidden;

    background: #ffffff;
    border-radius: 33px;
  }

  #notifika-hero .notifika-phone__video,
  #notifika-hero .notifika-phone__video-trigger {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;
    border: 0;
  }

  #notifika-hero .notifika-phone__video-trigger {
    padding: 0;

    overflow: hidden;

    background: #ffffff;
    color: #ffffff;
    cursor: pointer;
  }

  #notifika-hero .notifika-phone__preview {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
  }

  #notifika-hero .notifika-phone__play {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(10, 10, 10, 0.28);

    transform: translate(-50%, -50%);
    transition:
      background-color 160ms ease,
      transform 160ms ease;
  }

  #notifika-hero .notifika-phone__play svg {
    width: 26px;
    height: 26px;

    fill: currentColor;
  }

  #notifika-hero .notifika-phone__video-trigger:hover .notifika-phone__play {
    background: #0a0a0a;
    transform: translate(-50%, -50%) scale(1.06);
  }

  #notifika-hero .notifika-phone__video-trigger:focus-visible {
    outline: 3px solid #22c55e;
    outline-offset: -5px;
  }

  /* Notch */

  #notifika-hero .notifika-phone__notch {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 50%;

    width: 42%;
    height: 22px;

    background: #202630;
    border-radius: 0 0 15px 15px;

    transform: translateX(-50%);
    pointer-events: none;
  }

  /* Botões laterais */

  #notifika-hero .notifika-phone__button {
    position: absolute;

    width: 3px;

    background: #202630;
  }

  #notifika-hero .notifika-phone__button--left-top {
    top: 99px;
    left: -4px;

    height: 34px;

    border-radius: 5px 0 0 5px;
  }

  #notifika-hero .notifika-phone__button--left-bottom {
    top: 141px;
    left: -4px;

    height: 49px;

    border-radius: 5px 0 0 5px;
  }

  #notifika-hero .notifika-phone__button--right {
    top: 124px;
    right: -4px;

    height: 60px;

    border-radius: 0 5px 5px 0;
  }

  /* =========================================================
     TABLET
     ========================================================= */

  @media (max-width: 1024px) {
    #notifika-hero {
      padding: 32px 28px 76px;
    }

    #notifika-hero .notifika-hero__container {
      grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
      gap: 32px;
    }

    #notifika-hero .notifika-hero__title {
      font-size: clamp(34px, 4.5vw, 44px);
    }

    #notifika-hero .notifika-phone {
      max-width: 230px;
    }

    #notifika-hero .notifika-phone__button--left-top {
      top: 92px;
      height: 32px;
    }

    #notifika-hero .notifika-phone__button--left-bottom {
      top: 131px;
      height: 44px;
    }

    #notifika-hero .notifika-phone__button--right {
      top: 115px;
      height: 54px;
    }
  }

  /* =========================================================
     CELULAR
     ========================================================= */

  @media (max-width: 767px) {
    #notifika-hero {
      padding: 40px 20px 64px;
    }

    #notifika-hero .notifika-hero__container {
      grid-template-columns: 1fr;
      gap: 52px;
    }

    #notifika-hero .notifika-hero__badge {
      margin-bottom: 16px;
    }

    #notifika-hero .notifika-hero__title {
      max-width: none;

      font-size: clamp(32px, 9vw, 40px);
      line-height: 1.08;
      letter-spacing: -0.04em;
      text-wrap: pretty;
    }

    #notifika-hero .notifika-hero__subtitle {
      margin-top: 22px;

      font-size: 17px;
      line-height: 1.6;
    }

    #notifika-hero .notifika-hero__subtitle-badge {
      margin-left: 6px;
      padding: 5px 9px;
    }

    #notifika-hero .notifika-hero__actions {
      margin-top: 30px;
    }

    #notifika-hero .notifika-hero__button {
      flex: 1 1 190px;
    }

    #notifika-hero .notifika-phone {
      max-width: 238px;
    }
  }

  /* =========================================================
     CELULARES PEQUENOS
     ========================================================= */

  @media (max-width: 430px) {
    #notifika-hero {
      padding-right: 18px;
      padding-left: 18px;
    }

    #notifika-hero .notifika-hero__actions {
      flex-direction: column;
      align-items: stretch;
    }

    #notifika-hero .notifika-hero__button {
      width: 100%;
      flex: none;
    }

    #notifika-hero .notifika-hero__note {
      text-align: center;
    }

    #notifika-hero .notifika-phone {
      max-width: 221px;
    }
  }

  /* =========================================================
     ACESSIBILIDADE
     ========================================================= */

  @media (prefers-reduced-motion: reduce) {
    #notifika-hero .notifika-hero__button,
    #notifika-hero .notifika-phone__play {
      transition: none;
    }

    #notifika-hero .notifika-hero__button:hover,
    #notifika-hero .notifika-phone__video-trigger:hover .notifika-phone__play {
      transform: none;
    }

    #notifika-hero .notifika-phone__video-trigger:hover .notifika-phone__play {
      transform: translate(-50%, -50%);
    }
  }

/* =========================================================
     BENEFÍCIOS NOTIFIKA
     Estilos isolados dentro de #notifika-beneficios
     ========================================================= */

  #notifika-beneficios,
  #notifika-beneficios * {
    box-sizing: border-box;
  }

  #notifika-beneficios {
    --notifika-benefits-bg: #ffffff;
    --notifika-benefits-card: #ffffff;
    --notifika-benefits-text: #0a0a0a;
    --notifika-benefits-muted: #666666;
    --notifika-benefits-border: #e7e7e7;
    --notifika-benefits-soft: #f5f5f5;
    --notifika-benefits-green: #3f3f46;
    --notifika-benefits-green-soft: #f5f5f5;

    width: 100%;
    padding: 96px 32px;

    background: var(--notifika-benefits-bg);
    color: var(--notifika-benefits-text);

    font-family:
      Inter,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif;
  }

  #notifika-beneficios .notifika-benefits__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* =========================================================
     CABEÇALHO
     ========================================================= */

  #notifika-beneficios .notifika-benefits__header {
    max-width: 760px;
    margin-bottom: 48px;
  }

  #notifika-beneficios .notifika-benefits__eyebrow {
    margin: 0 0 14px;

    display: flex;
    align-items: center;
    color: #474747;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  #notifika-beneficios .notifika-benefits__title {
    margin: 0;

    color: var(--notifika-benefits-text);

    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  #notifika-beneficios .notifika-benefits__subtitle {
    max-width: 700px;
    margin: 20px 0 0;

    color: var(--notifika-benefits-muted);

    font-size: clamp(17px, 1.45vw, 20px);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -0.01em;
  }

  /* =========================================================
     GRADE BENTO
     ========================================================= */

  #notifika-beneficios .notifika-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  #notifika-beneficios .notifika-benefit-card {
    position: relative;
    min-width: 0;
    min-height: 290px;
    padding: 28px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: var(--notifika-benefits-card);
    border: 1px solid var(--notifika-benefits-border);
    border-radius: 16px;

    transition:
      border-color 180ms ease,
      box-shadow 180ms ease,
      transform 180ms ease;
  }

  #notifika-beneficios .notifika-benefit-card:hover {
    border-color: #d7d7d7;
    box-shadow: 0 16px 40px rgba(10, 10, 10, 0.06);
    transform: translateY(-2px);
  }

  #notifika-beneficios .notifika-benefit-card--featured {
    grid-column: span 2;
  }

  #notifika-beneficios .notifika-benefit-card__number {
    position: absolute;
    top: 24px;
    right: 26px;

    color: #b8b8b8;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
  }

  #notifika-beneficios .notifika-benefit-card__content {
    margin-top: auto;
  }

  #notifika-beneficios .notifika-benefit-card__title {
    max-width: 520px;
    margin: 26px 0 0;

    color: var(--notifika-benefits-text);

    font-size: clamp(21px, 2vw, 26px);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.025em;
    text-wrap: balance;
  }

  #notifika-beneficios .notifika-benefit-card__description {
    max-width: 570px;
    margin: 12px 0 0;

    color: var(--notifika-benefits-muted);

    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
  }

  /* =========================================================
     CARD 1 — ENTREGA RÁPIDA
     ========================================================= */

  #notifika-beneficios .notifika-speed {
    width: fit-content;
    max-width: calc(100% - 40px);
  }

  #notifika-beneficios .notifika-speed__label {
    margin: 0 0 9px;

    color: #6a6a6a;

    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  #notifika-beneficios .notifika-speed__value {
    display: flex;
    align-items: baseline;
    gap: 8px;

    color: var(--notifika-benefits-text);

    font-size: clamp(27px, 3vw, 40px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.045em;
  }

  #notifika-beneficios .notifika-speed__indicator {
    width: 100%;
    height: 6px;
    margin-top: 16px;

    overflow: hidden;

    background: #e9e9e9;
    border-radius: 999px;
  }

  #notifika-beneficios .notifika-speed__indicator-fill {
    width: 88%;
    height: 100%;

    background: #22c55e;
    border-radius: inherit;
  }

  /* =========================================================
     CARD 2 — FONTES DE LEADS
     ========================================================= */

  #notifika-beneficios .notifika-sources {
    max-width: calc(100% - 32px);

    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  #notifika-beneficios .notifika-sources__item {
    min-height: 32px;
    padding: 7px 11px;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    background: var(--notifika-benefits-soft);
    border: 1px solid #ebebeb;
    border-radius: 8px;

    color: #343434;

    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
  }

  /* =========================================================
     CARD 3 — CONTATO DIRETO
     ========================================================= */

  #notifika-beneficios .notifika-contact {
    width: 100%;
    max-width: 270px;
    padding: 14px;

    background: #f8f8f8;
    border: 1px solid #ececec;
    border-radius: 12px;
  }

  #notifika-beneficios .notifika-contact__person {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  #notifika-beneficios .notifika-contact__avatar {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e4e4e4;
    border-radius: 50%;

    color: #555555;

    font-size: 12px;
    font-weight: 700;
  }

  #notifika-beneficios .notifika-contact__info {
    min-width: 0;
  }

  #notifika-beneficios .notifika-contact__name {
    display: block;

    overflow: hidden;

    color: #202020;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #notifika-beneficios .notifika-contact__phone {
    display: block;
    margin-top: 2px;

    color: #777777;

    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
  }

  #notifika-beneficios .notifika-contact__button {
    width: 100%;
    min-height: 34px;
    margin-top: 12px;
    padding: 8px 12px;

    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    border-radius: 8px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
  }

  #notifika-beneficios .notifika-contact__button:hover {
    background: #272727;
  }

  /* =========================================================
     CARD 4 — DISTRIBUIÇÃO
     ========================================================= */

  #notifika-beneficios .notifika-distribution {
    max-width: calc(100% - 32px);

    display: flex;
    align-items: center;
    gap: 8px;
  }

  #notifika-beneficios .notifika-distribution__item {
    min-height: 36px;
    padding: 9px 12px;

    display: inline-flex;
    align-items: center;

    background: var(--notifika-benefits-soft);
    border: 1px solid #e9e9e9;
    border-radius: 8px;

    color: #343434;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
  }

  #notifika-beneficios .notifika-distribution__item--destination {
    background: #f5f5f5;
    border-color: #e5e5e5;
    color: #525252;
  }

  #notifika-beneficios .notifika-distribution__arrow {
    flex: 0 0 auto;

    color: #999999;

    font-size: 18px;
    font-weight: 400;
    line-height: 1;
  }

  /* =========================================================
     CARD 5 — SMART CRM
     ========================================================= */

  #notifika-beneficios .notifika-crm {
    width: 100%;
    max-width: 310px;

    display: grid;
    grid-template-columns: repeat(3, minmax(72px, 1fr));
    gap: 7px;
  }

  #notifika-beneficios .notifika-crm__stage {
    min-width: 0;
    padding: 10px 8px;

    background: var(--notifika-benefits-soft);
    border: 1px solid #e9e9e9;
    border-radius: 8px;
  }

  #notifika-beneficios .notifika-crm__stage-name {
    display: block;

    overflow: hidden;

    color: #505050;

    font-size: 9px;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #notifika-beneficios .notifika-crm__lead {
    height: 22px;
    margin-top: 8px;

    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
  }

  #notifika-beneficios .notifika-crm__stage--active {
    background: #f5f5f5;
    border-color: #e5e5e5;
  }

  #notifika-beneficios .notifika-crm__stage--active
    .notifika-crm__stage-name {
    color: #525252;
  }

  /* =========================================================
     TABLET
     ========================================================= */

  @media (max-width: 1024px) {
    #notifika-beneficios {
      padding: 80px 28px;
    }

    #notifika-beneficios .notifika-benefits__header {
      margin-bottom: 40px;
    }

    #notifika-beneficios .notifika-benefits__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #notifika-beneficios .notifika-benefit-card--featured {
      grid-column: span 2;
    }

    #notifika-beneficios .notifika-benefit-card {
      min-height: 280px;
    }

    #notifika-beneficios .notifika-benefit-card:last-child {
      grid-column: span 2;
    }
  }

  /* =========================================================
     CELULAR
     ========================================================= */

  @media (max-width: 767px) {
    #notifika-beneficios {
      padding: 64px 20px;
    }

    #notifika-beneficios .notifika-benefits__header {
      margin-bottom: 34px;
    }

    #notifika-beneficios .notifika-benefits__title {
      font-size: clamp(32px, 9vw, 40px);
      line-height: 1.1;
    }

    #notifika-beneficios .notifika-benefits__subtitle {
      margin-top: 16px;

      font-size: 17px;
      line-height: 1.6;
    }

    #notifika-beneficios .notifika-benefits__grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    #notifika-beneficios .notifika-benefit-card,
    #notifika-beneficios .notifika-benefit-card--featured,
    #notifika-beneficios .notifika-benefit-card:last-child {
      grid-column: auto;
    }

    #notifika-beneficios .notifika-benefit-card {
      min-height: 270px;
      padding: 24px;
    }

    #notifika-beneficios .notifika-benefit-card__number {
      top: 22px;
      right: 22px;
    }

    #notifika-beneficios .notifika-benefit-card__title {
      margin-top: 24px;

      font-size: 22px;
    }
  }

  /* =========================================================
     CELULARES PEQUENOS
     ========================================================= */

  @media (max-width: 430px) {
    #notifika-beneficios {
      padding-right: 18px;
      padding-left: 18px;
    }

    #notifika-beneficios .notifika-speed__value {
      font-size: 29px;
    }

    #notifika-beneficios .notifika-distribution {
      max-width: 100%;
      flex-wrap: wrap;
    }

    #notifika-beneficios .notifika-distribution__item {
      flex: 1 1 110px;
    }

    #notifika-beneficios .notifika-crm {
      grid-template-columns: 1fr;
    }

    #notifika-beneficios .notifika-crm__stage {
      display: grid;
      grid-template-columns: 1fr 48px;
      align-items: center;
      gap: 8px;
    }

    #notifika-beneficios .notifika-crm__lead {
      margin-top: 0;
    }
  }

  /* =========================================================
     ACESSIBILIDADE
     ========================================================= */

  @media (prefers-reduced-motion: reduce) {
    #notifika-beneficios .notifika-benefit-card {
      transition: none;
    }

    #notifika-beneficios .notifika-benefit-card:hover {
      transform: none;
    }
  }

/* =========================================================
     COMO FUNCIONA — NOTIFIKA
     Estilos isolados dentro de #comofunciona
     ========================================================= */

  #comofunciona,
  #comofunciona * {
    box-sizing: border-box;
  }

  #comofunciona {
    --notifika-how-text: #0a0a0a;
    --notifika-how-muted: #666666;
    --notifika-how-border: #e7e7e7;
    --notifika-how-soft: #f7f7f7;
    --notifika-how-green: #3f3f46;

    width: 100%;
    padding: 96px 32px;

    background: #ffffff;
    color: var(--notifika-how-text);

    font-family:
      Inter,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif;
  }

  #comofunciona .notifika-how__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* =========================================================
     CABEÇALHO
     ========================================================= */

  #comofunciona .notifika-how__header {
    max-width: 780px;
    margin-bottom: 52px;
  }

  #comofunciona .notifika-how__eyebrow {
    margin: 0 0 14px;

    display: flex;
    align-items: center;

    color: #474747;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  #comofunciona .notifika-how__title {
    margin: 0;

    color: var(--notifika-how-text);

    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  #comofunciona .notifika-how__subtitle {
    max-width: 720px;
    margin: 20px 0 0;

    color: var(--notifika-how-muted);

    font-size: clamp(17px, 1.45vw, 20px);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -0.01em;
  }

  /* =========================================================
     CONTEÚDO EM DUAS COLUNAS
     ========================================================= */

  #comofunciona .notifika-how__content {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: clamp(52px, 7vw, 92px);
  }

  /* =========================================================
     PASSOS
     ========================================================= */

  #comofunciona .notifika-how__steps {
    min-width: 0;
  }

  #comofunciona .notifika-how-step {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 20px;

    padding: 28px 0;

    border-bottom: 1px solid var(--notifika-how-border);
  }

  #comofunciona .notifika-how-step:first-child {
    padding-top: 0;
  }

  #comofunciona .notifika-how-step:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  #comofunciona .notifika-how-step__number {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--notifika-how-soft);
    border: 1px solid var(--notifika-how-border);
    border-radius: 12px;

    color: #555555;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  #comofunciona .notifika-how-step__content {
    min-width: 0;
    padding-top: 5px;
  }

  #comofunciona .notifika-how-step__title {
    margin: 0;

    color: var(--notifika-how-text);

    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
  }

  #comofunciona .notifika-how-step__description {
    margin: 10px 0 0;

    color: var(--notifika-how-muted);

    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
  }

  /* =========================================================
     CAPA DO VÍDEO
     ========================================================= */

  #comofunciona .notifika-how-video {
    min-width: 0;
  }

  #comofunciona .notifika-how-video__trigger {
    position: relative;

    width: 100%;
    padding: 0;

    display: block;
    overflow: hidden;

    background: #111111;
    border: 1px solid #dedede;
    border-radius: 16px;
    box-shadow:
      0 24px 60px rgba(10, 10, 10, 0.12),
      0 6px 18px rgba(10, 10, 10, 0.06);

    appearance: none;
    cursor: pointer;

    transition:
      transform 180ms ease,
      box-shadow 180ms ease;
  }

  #comofunciona .notifika-how-video__trigger:hover {
    transform: translateY(-2px);

    box-shadow:
      0 30px 70px rgba(10, 10, 10, 0.16),
      0 8px 22px rgba(10, 10, 10, 0.08);
  }

  #comofunciona .notifika-how-video__trigger:focus-visible {
    outline: 3px solid rgba(0, 0, 0, 0.22);
    outline-offset: 4px;
  }

  #comofunciona .notifika-how-video__image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;

    display: block;
    object-fit: cover;

    transition: transform 350ms ease;
  }

  #comofunciona
    .notifika-how-video__trigger:hover
    .notifika-how-video__image {
    transform: scale(1.015);
  }

  #comofunciona .notifika-how-video__overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.16) 45%,
        rgba(0, 0, 0, 0.62) 100%
      );
  }

  #comofunciona .notifika-how-video__play {
    width: 66px;
    height: 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);

    transition:
      background-color 180ms ease,
      transform 180ms ease;
  }

  #comofunciona
    .notifika-how-video__trigger:hover
    .notifika-how-video__play {
    background: #f2f2f2;
    transform: scale(1.04);
  }

  #comofunciona .notifika-how-video__play-icon {
    width: 0;
    height: 0;
    margin-left: 4px;

    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 15px solid #0a0a0a;
  }

  #comofunciona .notifika-how-video__duration {
    position: absolute;
    top: 18px;
    right: 18px;

    padding: 7px 10px;

    background: rgba(10, 10, 10, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    backdrop-filter: blur(8px);

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }

  #comofunciona .notifika-how-video__caption {
    position: absolute;
    right: 24px;
    bottom: 22px;
    left: 24px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;

    text-align: left;
  }

  #comofunciona .notifika-how-video__label {
    color: rgba(255, 255, 255, 0.78);

    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  #comofunciona .notifika-how-video__title {
    color: #ffffff;

    font-size: clamp(17px, 1.7vw, 22px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
  }

  #comofunciona .notifika-how-video__hint {
    margin: 15px 0 0;

    color: #777777;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
  }

  /* =========================================================
     MODAL DO VÍDEO
     ========================================================= */

  #comofunciona .notifika-video-modal[hidden] {
    display: none;
  }

  #comofunciona .notifika-video-modal {
    position: fixed;
    z-index: 999999;
    inset: 0;

    padding: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);

    opacity: 0;

    transition: opacity 180ms ease;
  }

  #comofunciona .notifika-video-modal.is-open {
    opacity: 1;
  }

  #comofunciona .notifika-video-modal__dialog {
    position: relative;

    width: min(100%, 1080px);

    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);

    transform: translateY(8px) scale(0.99);

    transition: transform 180ms ease;
  }

  #comofunciona
    .notifika-video-modal.is-open
    .notifika-video-modal__dialog {
    transform: translateY(0) scale(1);
  }

  #comofunciona .notifika-video-modal__player {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #000000;
    border-radius: 15px;
  }

  #comofunciona .notifika-video-modal__player iframe {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;
    border: 0;
  }

  #comofunciona .notifika-video-modal__close {
    position: absolute;
    z-index: 2;
    top: -46px;
    right: 0;

    width: 38px;
    height: 38px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;

    appearance: none;
    cursor: pointer;

    transition:
      background-color 180ms ease,
      border-color 180ms ease;
  }

  #comofunciona .notifika-video-modal__close:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.38);
  }

  #comofunciona .notifika-video-modal__close:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.4);
    outline-offset: 3px;
  }

  #comofunciona .notifika-video-modal__close::before,
  #comofunciona .notifika-video-modal__close::after {
    position: absolute;

    width: 17px;
    height: 2px;

    content: "";

    background: #ffffff;
    border-radius: 999px;
  }

  #comofunciona .notifika-video-modal__close::before {
    transform: rotate(45deg);
  }

  #comofunciona .notifika-video-modal__close::after {
    transform: rotate(-45deg);
  }

  /* =========================================================
     TABLET
     ========================================================= */

  @media (max-width: 1024px) {
    #comofunciona {
      padding: 80px 28px;
    }

    #comofunciona .notifika-how__content {
      grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
      gap: 42px;
    }

    #comofunciona .notifika-how-step {
      grid-template-columns: 44px minmax(0, 1fr);
      gap: 16px;

      padding: 22px 0;
    }

    #comofunciona .notifika-how-step__number {
      width: 40px;
      height: 40px;
    }
  }

  /* =========================================================
     CELULAR
     ========================================================= */

  @media (max-width: 767px) {
    #comofunciona {
      padding: 64px 20px;
    }

    #comofunciona .notifika-how__header {
      margin-bottom: 38px;
    }

    #comofunciona .notifika-how__title {
      font-size: clamp(32px, 9vw, 40px);
    }

    #comofunciona .notifika-how__subtitle {
      margin-top: 16px;

      font-size: 17px;
      line-height: 1.6;
    }

    #comofunciona .notifika-how__content {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    #comofunciona .notifika-how-video__play {
      width: 58px;
      height: 58px;

      border-radius: 14px;
    }

    #comofunciona .notifika-how-video__caption {
      right: 18px;
      bottom: 17px;
      left: 18px;
    }

    #comofunciona .notifika-video-modal {
      padding: 16px;
    }

    #comofunciona .notifika-video-modal__close {
      top: -44px;
    }
  }

  /* =========================================================
     CELULARES PEQUENOS
     ========================================================= */

  @media (max-width: 430px) {
    #comofunciona {
      padding-right: 18px;
      padding-left: 18px;
    }

    #comofunciona .notifika-how-step {
      grid-template-columns: 40px minmax(0, 1fr);
      gap: 14px;
    }

    #comofunciona .notifika-how-step__number {
      width: 38px;
      height: 38px;
    }

    #comofunciona .notifika-how-video__duration {
      top: 12px;
      right: 12px;
    }

    #comofunciona .notifika-how-video__label {
      display: none;
    }

    #comofunciona .notifika-how-video__title {
      font-size: 16px;
    }
  }

  /* =========================================================
     ACESSIBILIDADE
     ========================================================= */

  @media (prefers-reduced-motion: reduce) {
    #comofunciona .notifika-how-video__trigger,
    #comofunciona .notifika-how-video__image,
    #comofunciona .notifika-how-video__play,
    #comofunciona .notifika-video-modal,
    #comofunciona .notifika-video-modal__dialog {
      transition: none;
    }

    #comofunciona .notifika-how-video__trigger:hover,
    #comofunciona
      .notifika-how-video__trigger:hover
      .notifika-how-video__image,
    #comofunciona
      .notifika-how-video__trigger:hover
      .notifika-how-video__play {
      transform: none;
    }
  }

/* =========================================================
     SMART CRM — NOTIFIKA
     Estilos isolados dentro de #smartcrm
     ========================================================= */

  #smartcrm,
  #smartcrm * {
    box-sizing: border-box;
  }

  #smartcrm {
    --crm-bg: #ffffff;
    --crm-card: #ffffff;
    --crm-text: #0a0a0a;
    --crm-muted: #666666;
    --crm-border: #e5e5e5;
    --crm-soft: #f5f5f5;
    --crm-green: #3f3f46;
    --crm-green-dark: #3f3f46;
    --crm-green-soft: #f5f5f5;

    width: 100%;
    padding: 96px 32px;

    background: var(--crm-bg);
    color: var(--crm-text);

    font-family:
      Inter,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif;
  }

  #smartcrm .notifika-crm-section__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  #smartcrm .notifika-crm-section__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    align-items: center;
    gap: clamp(52px, 7vw, 88px);
  }

  /* =========================================================
     CONTEÚDO
     ========================================================= */

  #smartcrm .notifika-crm-copy {
    min-width: 0;
  }

  #smartcrm .notifika-crm-copy__eyebrow {
    margin: 0 0 14px;

    display: flex;
    align-items: center;
    color: #474747;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  #smartcrm .notifika-crm-copy__badge {
    width: fit-content;
    margin-bottom: 20px;
    padding: 7px 11px;

    display: inline-flex;
    align-items: center;
    background: var(--crm-green-soft);
    border: 1px solid #e5e5e5;
    border-radius: 8px;

    color: var(--crm-green-dark);

    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }

  #smartcrm .notifika-crm-copy__title {
    margin: 0;

    color: var(--crm-text);

    font-size: clamp(34px, 3.7vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  #smartcrm .notifika-crm-copy__subtitle {
    margin: 22px 0 0;

    color: var(--crm-muted);

    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.01em;
  }

  /* =========================================================
     BENEFÍCIOS
     ========================================================= */

  #smartcrm .notifika-crm-features {
    margin-top: 34px;
  }

  #smartcrm .notifika-crm-feature {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;

    padding: 19px 0;

    border-bottom: 1px solid #dfdfdf;
  }

  #smartcrm .notifika-crm-feature:first-child {
    padding-top: 0;
  }

  #smartcrm .notifika-crm-feature:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  #smartcrm .notifika-crm-feature__marker {
    width: 28px;
    height: 28px;
    margin-top: 2px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--crm-card);
    border: 1px solid var(--crm-border);
    border-radius: 8px;

    color: var(--crm-green-dark);

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
  }

  #smartcrm .notifika-crm-feature__title {
    margin: 0;

    color: var(--crm-text);

    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
  }

  #smartcrm .notifika-crm-feature__description {
    margin: 5px 0 0;

    color: var(--crm-muted);

    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
  }

  /* =========================================================
     CTA
     ========================================================= */

  #smartcrm .notifika-crm-copy__action {
    margin-top: 34px;
  }

  #smartcrm .notifika-crm-copy__button {
    min-height: 48px;
    padding: 14px 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #0a0a0a;
    border: 1px solid #0a0a0a;
    border-radius: 12px;

    color: #ffffff;

    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-decoration: none;

    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease,
      transform 180ms ease;
  }

  #smartcrm .notifika-crm-copy__button:hover {
    background: #272727;
    border-color: #272727;
    color: #ffffff;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    transform: translateY(-1px);
  }

  #smartcrm .notifika-crm-copy__button:active {
    transform: translateY(0);
  }

  #smartcrm .notifika-crm-copy__button:focus-visible {
    outline: 3px solid rgba(0, 0, 0, 0.18);
    outline-offset: 3px;
  }

  #smartcrm .notifika-crm-copy__note {
    margin: 13px 0 0;

    color: #777777;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
  }

  /* =========================================================
     REPRESENTAÇÃO DO CRM
     ========================================================= */

  #smartcrm .notifika-crm-preview {
    min-width: 0;
  }

  #smartcrm .notifika-crm-window {
    width: 100%;

    overflow: hidden;

    background: var(--crm-card);
    border: 1px solid #dedede;
    border-radius: 16px;
    box-shadow:
      0 28px 70px rgba(10, 10, 10, 0.11),
      0 8px 22px rgba(10, 10, 10, 0.05);
  }

  /* Barra superior */

  #smartcrm .notifika-crm-window__topbar {
    min-height: 54px;
    padding: 0 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    border-bottom: 1px solid var(--crm-border);
  }

  #smartcrm .notifika-crm-window__brand {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  #smartcrm .notifika-crm-window__logo {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0a0a0a;
    border-radius: 7px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
  }

  #smartcrm .notifika-crm-window__name {
    color: #202020;

    font-size: 12px;
    font-weight: 700;
  }

  #smartcrm .notifika-crm-window__actions {
    display: flex;
    gap: 6px;
  }

  #smartcrm .notifika-crm-window__action {
    width: 27px;
    height: 27px;

    background: var(--crm-soft);
    border: 1px solid var(--crm-border);
    border-radius: 7px;
  }

  /* Área interna */

  #smartcrm .notifika-crm-window__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;

    min-height: 460px;
  }

  /* Kanban */

  #smartcrm .notifika-crm-board {
    min-width: 0;
    padding: 16px;

    display: grid;
    grid-template-columns: repeat(3, minmax(90px, 1fr));
    gap: 10px;

    background: #fafafa;
  }

  #smartcrm .notifika-crm-column {
    min-width: 0;
  }

  #smartcrm .notifika-crm-column__header {
    margin-bottom: 10px;
    padding: 0 3px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
  }

  #smartcrm .notifika-crm-column__title {
    overflow: hidden;

    color: #555555;

    font-size: 9px;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  #smartcrm .notifika-crm-column__count {
    min-width: 19px;
    height: 19px;
    padding: 0 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eeeeee;
    border-radius: 6px;

    color: #707070;

    font-size: 9px;
    font-weight: 700;
  }

  #smartcrm .notifika-crm-column__cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* Cards fictícios */

  #smartcrm .notifika-lead-card {
    min-width: 0;
    padding: 10px;

    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 9px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.025);
  }

  #smartcrm .notifika-lead-card--active {
    border-color: #bde8cc;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.08);
  }

  #smartcrm .notifika-lead-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
  }

  #smartcrm .notifika-lead-card__name {
    min-width: 0;
    overflow: hidden;

    color: #252525;

    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #smartcrm .notifika-lead-card__activity {
    width: 6px;
    height: 6px;

    flex: 0 0 6px;

    background: var(--crm-green);
    border-radius: 999px;
  }

  #smartcrm .notifika-lead-card__source {
    margin-top: 5px;

    color: #858585;

    font-size: 8px;
    font-weight: 500;
    line-height: 1.3;
  }

  #smartcrm .notifika-lead-card__footer {
    margin-top: 9px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
  }

  #smartcrm .notifika-lead-card__value {
    color: #454545;

    font-size: 9px;
    font-weight: 700;
  }

  #smartcrm .notifika-lead-card__time {
    color: #999999;

    font-size: 8px;
    font-weight: 500;
  }

  /* Painel lateral */

  #smartcrm .notifika-crm-drawer {
    min-width: 0;
    padding: 16px;

    background: #ffffff;
    border-left: 1px solid var(--crm-border);
  }

  #smartcrm .notifika-crm-drawer__header {
    padding-bottom: 14px;

    border-bottom: 1px solid var(--crm-border);
  }

  #smartcrm .notifika-crm-drawer__label {
    color: #999999;

    font-size: 8px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  #smartcrm .notifika-crm-drawer__name {
    margin-top: 5px;

    color: #202020;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
  }

  #smartcrm .notifika-crm-drawer__status {
    width: fit-content;
    margin-top: 9px;
    padding: 5px 7px;

    background: var(--crm-green-soft);
    border-radius: 6px;

    color: var(--crm-green-dark);

    font-size: 8px;
    font-weight: 700;
  }

  #smartcrm .notifika-crm-drawer__details {
    padding: 14px 0;

    display: grid;
    gap: 12px;

    border-bottom: 1px solid var(--crm-border);
  }

  #smartcrm .notifika-crm-detail__label {
    display: block;

    color: #999999;

    font-size: 8px;
    font-weight: 600;
    line-height: 1.3;
  }

  #smartcrm .notifika-crm-detail__value {
    display: block;
    margin-top: 3px;

    overflow: hidden;

    color: #3c3c3c;

    font-size: 9px;
    font-weight: 600;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #smartcrm .notifika-crm-history {
    padding-top: 14px;
  }

  #smartcrm .notifika-crm-history__title {
    color: #555555;

    font-size: 9px;
    font-weight: 700;
    line-height: 1.3;
  }

  #smartcrm .notifika-crm-history__item {
    position: relative;

    margin-top: 12px;
    padding-left: 15px;
  }

  #smartcrm .notifika-crm-history__item::before {
    position: absolute;
    top: 3px;
    left: 0;

    width: 7px;
    height: 7px;

    content: "";

    background: var(--crm-green);
    border-radius: 999px;
  }

  #smartcrm .notifika-crm-history__text {
    color: #666666;

    font-size: 8px;
    font-weight: 500;
    line-height: 1.45;
  }

  #smartcrm .notifika-crm-preview__note {
    margin: 15px 0 0;

    color: #888888;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
  }

  /* =========================================================
     TABLET
     ========================================================= */

  @media (max-width: 1024px) {
    #smartcrm {
      padding: 80px 28px;
    }

    #smartcrm .notifika-crm-section__layout {
      grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
      gap: 44px;
    }

    #smartcrm .notifika-crm-window__body {
      grid-template-columns: minmax(0, 1fr) 165px;
    }

    #smartcrm .notifika-crm-board {
      padding: 12px;
      gap: 7px;
    }

    #smartcrm .notifika-crm-drawer {
      padding: 13px;
    }
  }

  /* =========================================================
     TABLET VERTICAL E CELULAR
     ========================================================= */

  @media (max-width: 900px) {
    #smartcrm .notifika-crm-section__layout {
      grid-template-columns: 1fr;
      gap: 52px;
    }

    #smartcrm .notifika-crm-copy {
      order: 1;
      max-width: 720px;
    }

    #smartcrm .notifika-crm-preview {
      order: 2;
    }

    #smartcrm .notifika-crm-window__body {
      grid-template-columns: minmax(0, 1fr) 190px;
    }
  }

  @media (max-width: 767px) {
    #smartcrm {
      padding: 64px 20px;
    }

    #smartcrm .notifika-crm-copy__title {
      font-size: clamp(32px, 9vw, 40px);
    }

    #smartcrm .notifika-crm-copy__subtitle {
      margin-top: 18px;

      font-size: 17px;
      line-height: 1.65;
    }

    #smartcrm .notifika-crm-features {
      margin-top: 30px;
    }

    #smartcrm .notifika-crm-window__body {
      grid-template-columns: 1fr;
    }

    #smartcrm .notifika-crm-drawer {
      display: none;
    }

    #smartcrm .notifika-crm-board {
      min-height: 390px;
    }
  }

  /* =========================================================
     CELULARES PEQUENOS
     ========================================================= */

  @media (max-width: 540px) {
    #smartcrm {
      padding-right: 18px;
      padding-left: 18px;
    }

    #smartcrm .notifika-crm-copy__button {
      width: 100%;
    }

    #smartcrm .notifika-crm-copy__note {
      text-align: center;
    }

    #smartcrm .notifika-crm-board {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    #smartcrm .notifika-crm-column {
      padding: 10px;

      background: #f5f5f5;
      border: 1px solid #e7e7e7;
      border-radius: 10px;
    }

    #smartcrm .notifika-crm-column__cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #smartcrm
      .notifika-crm-column__cards
      .notifika-lead-card:only-child {
      grid-column: span 2;
    }
  }

  /* =========================================================
     ACESSIBILIDADE
     ========================================================= */

  @media (prefers-reduced-motion: reduce) {
    #smartcrm .notifika-crm-copy__button {
      transition: none;
    }

    #smartcrm .notifika-crm-copy__button:hover {
      transform: none;
    }
  }

/* =========================================================
     REPORT SEMANAL — NOTIFIKA
     Estilos isolados dentro de #notifika-report-semanal
     ========================================================= */

  #notifika-report-semanal,
  #notifika-report-semanal * {
    box-sizing: border-box;
  }

  #notifika-report-semanal {
    --report-text: #0a0a0a;
    --report-muted: #666666;
    --report-border: #e5e5e5;
    --report-soft: #f7f7f7;
    --report-green: #3f3f46;
    --report-green-dark: #3f3f46;
    --report-green-soft: #f5f5f5;
    --report-amber: #d97706;
    --report-amber-soft: #fff7e8;
    --report-amber-border: #f4d7a4;

    width: 100%;
    padding: 96px 32px;

    background: #ffffff;
    color: var(--report-text);

    font-family:
      Inter,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif;
  }

  #notifika-report-semanal .notifika-report__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  #notifika-report-semanal .notifika-report__layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: clamp(52px, 7vw, 88px);
  }

  /* =========================================================
     COPY
     ========================================================= */

  #notifika-report-semanal .notifika-report-copy {
    min-width: 0;
  }

  #notifika-report-semanal .notifika-report-copy__eyebrow {
    margin: 0 0 14px;

    display: flex;
    align-items: center;
    color: #474747;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  #notifika-report-semanal .notifika-report-copy__title {
    margin: 0;

    color: var(--report-text);

    font-size: clamp(34px, 3.7vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  #notifika-report-semanal .notifika-report-copy__subtitle {
    margin: 22px 0 0;

    color: var(--report-muted);

    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.01em;
  }

  /* =========================================================
     SELOS
     ========================================================= */

  #notifika-report-semanal .notifika-report-copy__badges {
    margin-top: 32px;

    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  #notifika-report-semanal .notifika-report-copy__badge {
    min-height: 34px;
    padding: 8px 11px;

    display: inline-flex;
    align-items: center;
    background: var(--report-soft);
    border: 1px solid var(--report-border);
    border-radius: 8px;

    color: #454545;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
  }

  /* =========================================================
     REPRESENTAÇÃO VISUAL
     ========================================================= */

  #notifika-report-semanal .notifika-report-preview {
    position: relative;

    width: 100%;
    min-width: 0;
    min-height: 610px;
  }

  #notifika-report-semanal .notifika-report-preview__surface {
    position: absolute;
    inset: 30px 0 30px 34px;

    overflow: hidden;

    background:
      linear-gradient(
        135deg,
        #f6f6f6 0%,
        #fbfbfb 48%,
        #f2f2f2 100%
      );
    border: 1px solid #e3e3e3;
    border-radius: 20px;
  }

  #notifika-report-semanal .notifika-report-preview__surface::before,
  #notifika-report-semanal .notifika-report-preview__surface::after {
    position: absolute;

    width: 180px;
    height: 180px;

    content: "";

    border: 1px solid rgba(10, 10, 10, 0.04);
    border-radius: 50%;
  }

  #notifika-report-semanal .notifika-report-preview__surface::before {
    top: -80px;
    right: -60px;
  }

  #notifika-report-semanal .notifika-report-preview__surface::after {
    bottom: -100px;
    left: -70px;
  }

  /* Card base */

  #notifika-report-semanal .notifika-report-card {
    position: absolute;

    overflow: hidden;

    background: #ffffff;
    border: 1px solid #dfdfdf;
    border-radius: 16px;
    box-shadow:
      0 24px 60px rgba(10, 10, 10, 0.13),
      0 7px 18px rgba(10, 10, 10, 0.06);
  }

  /* Card de alerta, ao fundo */

  #notifika-report-semanal .notifika-report-card--alert {
    z-index: 1;
    top: 0;
    right: 0;

    width: 78%;
    min-height: 350px;

    background: #fffdfa;
    border-color: var(--report-amber-border);

    transform: rotate(1.2deg);
  }

  /* Card principal */

  #notifika-report-semanal .notifika-report-card--summary {
    z-index: 2;
    bottom: 0;
    left: 0;

    width: 84%;
    min-height: 410px;

    transform: rotate(-0.5deg);
  }

  /* Cabeçalho dos cards */

  #notifika-report-semanal .notifika-report-card__header {
    min-height: 52px;
    padding: 0 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    border-bottom: 1px solid var(--report-border);
  }

  #notifika-report-semanal
    .notifika-report-card--alert
    .notifika-report-card__header {
    background: var(--report-amber-soft);
    border-bottom-color: var(--report-amber-border);
  }

  #notifika-report-semanal .notifika-report-card__brand {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  #notifika-report-semanal .notifika-report-card__logo {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0a0a0a;
    border-radius: 8px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
  }

  #notifika-report-semanal .notifika-report-card__brand-name {
    color: #242424;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
  }

  #notifika-report-semanal .notifika-report-card__tag {
    padding: 6px 8px;

    border-radius: 7px;

    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  #notifika-report-semanal .notifika-report-card__tag--summary {
    background: var(--report-green-soft);
    color: var(--report-green-dark);
  }

  #notifika-report-semanal .notifika-report-card__tag--alert {
    background: #ffffff;
    color: var(--report-amber);
  }

  /* Conteúdo comum */

  #notifika-report-semanal .notifika-report-card__body {
    padding: 18px;
  }

  #notifika-report-semanal .notifika-report-card__period {
    color: #909090;

    font-size: 9px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  #notifika-report-semanal .notifika-report-card__title {
    margin: 6px 0 0;

    color: #202020;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
  }

  /* Métricas do resumo */

  #notifika-report-semanal .notifika-report-metrics {
    margin-top: 16px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  #notifika-report-semanal .notifika-report-metric {
    min-width: 0;
    padding: 12px;

    background: var(--report-soft);
    border: 1px solid #e9e9e9;
    border-radius: 10px;
  }

  #notifika-report-semanal .notifika-report-metric--primary {
    background: var(--report-green-soft);
    border-color: #ccefd8;
  }

  #notifika-report-semanal .notifika-report-metric__label {
    display: block;

    color: #858585;

    font-size: 8px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  #notifika-report-semanal
    .notifika-report-metric--primary
    .notifika-report-metric__label {
    color: var(--report-green-dark);
  }

  #notifika-report-semanal .notifika-report-metric__value {
    display: block;
    margin-top: 5px;

    color: #202020;

    font-size: 17px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  #notifika-report-semanal .notifika-report-metric__comparison {
    display: block;
    margin-top: 4px;

    color: var(--report-green-dark);

    font-size: 8px;
    font-weight: 700;
    line-height: 1.3;
  }

  /* Rodapé do resumo */

  #notifika-report-semanal .notifika-report-summary__details {
    margin-top: 13px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  #notifika-report-semanal .notifika-report-summary__detail {
    min-width: 0;
    padding: 10px 11px;

    border: 1px solid var(--report-border);
    border-radius: 9px;
  }

  #notifika-report-semanal .notifika-report-summary__label {
    display: block;

    color: #999999;

    font-size: 8px;
    font-weight: 600;
    line-height: 1.3;
  }

  #notifika-report-semanal .notifika-report-summary__value {
    display: block;
    margin-top: 3px;

    overflow: hidden;

    color: #3b3b3b;

    font-size: 9px;
    font-weight: 700;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Conteúdo do alerta */

  #notifika-report-semanal .notifika-report-alert__status {
    margin-top: 15px;
    padding: 12px;

    display: flex;
    align-items: center;
    gap: 10px;

    background: var(--report-amber-soft);
    border: 1px solid var(--report-amber-border);
    border-radius: 10px;
  }

  #notifika-report-semanal .notifika-report-alert__icon {
    width: 29px;
    height: 29px;

    flex: 0 0 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid var(--report-amber-border);
    border-radius: 8px;

    color: var(--report-amber);

    font-size: 14px;
    font-weight: 800;
  }

  #notifika-report-semanal .notifika-report-alert__status-text {
    color: #74430b;

    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
  }

  #notifika-report-semanal .notifika-report-alert__explanation {
    margin-top: 13px;

    color: #696969;

    font-size: 9px;
    font-weight: 500;
    line-height: 1.55;
  }

  #notifika-report-semanal .notifika-report-alert__recommendation {
    margin-top: 12px;
    padding: 11px;

    background: #fafafa;
    border: 1px solid var(--report-border);
    border-radius: 9px;
  }

  #notifika-report-semanal
    .notifika-report-alert__recommendation-label {
    display: block;

    color: #999999;

    font-size: 8px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  #notifika-report-semanal
    .notifika-report-alert__recommendation-text {
    display: block;
    margin-top: 4px;

    color: #444444;

    font-size: 9px;
    font-weight: 600;
    line-height: 1.45;
  }

  #notifika-report-semanal .notifika-report-preview__note {
    position: absolute;
    right: 0;
    bottom: -28px;
    left: 0;

    margin: 0;

    color: #888888;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
  }

  /* =========================================================
     TABLET
     ========================================================= */

  @media (max-width: 1024px) {
    #notifika-report-semanal {
      padding: 80px 28px;
    }

    #notifika-report-semanal .notifika-report__layout {
      grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
      gap: 44px;
    }

    #notifika-report-semanal .notifika-report-preview {
      min-height: 580px;
    }

    #notifika-report-semanal .notifika-report-card--alert {
      width: 82%;
    }

    #notifika-report-semanal .notifika-report-card--summary {
      width: 88%;
    }
  }

  /* =========================================================
     TABLET VERTICAL
     ========================================================= */

  @media (max-width: 900px) {
    #notifika-report-semanal .notifika-report__layout {
      grid-template-columns: 1fr;
      gap: 58px;
    }

    #notifika-report-semanal .notifika-report-copy {
      max-width: 720px;
    }

    #notifika-report-semanal .notifika-report-preview {
      width: min(100%, 680px);
      min-height: 620px;
      margin: 0 auto;
    }
  }

  /* =========================================================
     CELULAR
     ========================================================= */

  @media (max-width: 767px) {
    #notifika-report-semanal {
      padding: 64px 20px;
    }

    #notifika-report-semanal .notifika-report-copy__title {
      font-size: clamp(32px, 9vw, 40px);
    }

    #notifika-report-semanal .notifika-report-copy__subtitle {
      margin-top: 18px;

      font-size: 17px;
      line-height: 1.65;
    }

    #notifika-report-semanal .notifika-report-preview {
      min-height: 600px;
    }

    #notifika-report-semanal .notifika-report-preview__surface {
      inset: 24px 0 24px 18px;
    }

    #notifika-report-semanal .notifika-report-card--alert {
      width: 86%;
    }

    #notifika-report-semanal .notifika-report-card--summary {
      width: 91%;
    }
  }

  /* =========================================================
     CELULARES PEQUENOS
     ========================================================= */

  @media (max-width: 480px) {
    #notifika-report-semanal {
      padding-right: 18px;
      padding-left: 18px;
    }

    #notifika-report-semanal .notifika-report-copy__badges {
      flex-direction: column;
      align-items: stretch;
    }

    #notifika-report-semanal .notifika-report-copy__badge {
      justify-content: center;
    }

    #notifika-report-semanal .notifika-report-preview {
      min-height: 670px;
    }

    #notifika-report-semanal .notifika-report-preview__surface {
      inset: 30px 0;
    }

    #notifika-report-semanal .notifika-report-card--alert {
      top: 0;
      right: 0;

      width: 94%;
      min-height: 330px;
    }

    #notifika-report-semanal .notifika-report-card--summary {
      bottom: 0;
      left: 0;

      width: 96%;
      min-height: 390px;
    }

    #notifika-report-semanal .notifika-report-card__body {
      padding: 15px;
    }
  }

/* =========================================================
     PROVA SOCIAL — NOTIFIKA
     Estilos isolados dentro de #nosso-orgulho
     ========================================================= */

  #nosso-orgulho,
  #nosso-orgulho * {
    box-sizing: border-box;
  }

  #nosso-orgulho {
    --social-bg: #ffffff;
    --social-card: #ffffff;
    --social-text: #0a0a0a;
    --social-muted: #666666;
    --social-border: #e5e5e5;
    --social-green: #22c55e;
    --social-green-dark: #16a34a;
    --social-green-soft: #dcfce7;
    --social-star: #f59e0b;

    width: 100%;
    padding: 96px 32px;

    background: var(--social-bg);
    color: var(--social-text);

    font-family:
      Inter,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif;
  }

  #nosso-orgulho .notifika-social__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* =========================================================
     CABEÇALHO
     ========================================================= */

  #nosso-orgulho .notifika-social__header {
    max-width: 780px;
    margin-bottom: 48px;
  }

  #nosso-orgulho .notifika-social__eyebrow {
    margin: 0 0 14px;

    display: flex;
    align-items: center;
    color: #474747;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  #nosso-orgulho .notifika-social__title {
    margin: 0;

    color: var(--social-text);

    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  #nosso-orgulho .notifika-social__subtitle {
    max-width: 720px;
    margin: 20px 0 0;

    color: var(--social-muted);

    font-size: clamp(17px, 1.45vw, 20px);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -0.01em;
  }

  /* =========================================================
     INDICADORES
     ========================================================= */

  #nosso-orgulho .notifika-social-metrics {
    margin-bottom: 18px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    overflow: hidden;

    background: var(--social-card);
    border: 1px solid var(--social-border);
    border-radius: 16px;
  }

  #nosso-orgulho .notifika-social-metric {
    position: relative;
    min-width: 0;
    padding: 25px 28px;
  }

  #nosso-orgulho .notifika-social-metric:not(:last-child) {
    border-right: 1px solid var(--social-border);
  }

  #nosso-orgulho .notifika-social-metric__value {
    display: block;

    color: var(--social-text);

    font-size: clamp(25px, 2.8vw, 36px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  #nosso-orgulho .notifika-social-metric__label {
    display: block;
    margin-top: 8px;

    color: var(--social-muted);

    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
  }

  #nosso-orgulho .notifika-social-metric__indicator {
    position: absolute;
    top: 26px;
    right: 26px;

    width: 8px;
    height: 8px;

    background: var(--social-green);
    border-radius: 999px;
  }

  /* =========================================================
     GRADE DE DEPOIMENTOS
     ========================================================= */

  #nosso-orgulho .notifika-testimonials {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 18px;
  }

  #nosso-orgulho .notifika-testimonials__side {
    min-width: 0;

    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  /* =========================================================
     CARD DE DEPOIMENTO
     ========================================================= */

  #nosso-orgulho .notifika-testimonial {
    position: relative;
    min-width: 0;
    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    background: var(--social-card);
    border: 1px solid var(--social-border);
    border-radius: 16px;

    transition:
      border-color 180ms ease,
      box-shadow 180ms ease,
      transform 180ms ease;
  }

  #nosso-orgulho .notifika-testimonial:hover {
    border-color: #d5d5d5;
    box-shadow: 0 16px 42px rgba(10, 10, 10, 0.06);
    transform: translateY(-2px);
  }

  #nosso-orgulho .notifika-testimonial--featured {
    min-height: 430px;
    padding: 36px;
  }

  #nosso-orgulho .notifika-testimonial__top {
    position: relative;
    z-index: 1;
  }

  #nosso-orgulho .notifika-testimonial__source {
    width: fit-content;
    padding: 7px 10px;

    display: inline-flex;
    align-items: center;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 8px;

    color: #575757;

    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  /* Estrelas desenhadas em CSS */

  #nosso-orgulho .notifika-testimonial__rating {
    margin-top: 17px;

    display: flex;
    align-items: center;
    gap: 5px;
  }

  #nosso-orgulho .notifika-testimonial__star {
    width: 15px;
    height: 15px;

    display: block;

    background: var(--social-star);

    clip-path: polygon(
      50% 0%,
      61% 34%,
      98% 35%,
      68% 57%,
      79% 92%,
      50% 71%,
      21% 92%,
      32% 57%,
      2% 35%,
      39% 34%
    );
  }

  /* Citação */

  #nosso-orgulho .notifika-testimonial__quote {
    position: relative;
    z-index: 1;

    margin: 28px 0 34px;

    color: #242424;

    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: -0.01em;
  }

  #nosso-orgulho
    .notifika-testimonial--featured
    .notifika-testimonial__quote {
    max-width: 650px;

    font-size: clamp(22px, 2.5vw, 31px);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.025em;
  }

  #nosso-orgulho
    .notifika-testimonial--featured::after {
    position: absolute;
    top: 20px;
    right: 32px;

    content: "“";

    color: #eeeeee;

    font-family: Georgia, serif;
    font-size: 160px;
    font-weight: 700;
    line-height: 1;

    pointer-events: none;
  }

  /* Identificação */

  #nosso-orgulho .notifika-testimonial__author {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    gap: 12px;
  }

  #nosso-orgulho .notifika-testimonial__avatar {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0a0a0a;
    border-radius: 12px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }

  #nosso-orgulho
    .notifika-testimonial--featured
    .notifika-testimonial__avatar {
    width: 48px;
    height: 48px;

    flex-basis: 48px;
  }

  #nosso-orgulho .notifika-testimonial__author-info {
    min-width: 0;
  }

  #nosso-orgulho .notifika-testimonial__name {
    display: block;

    color: var(--social-text);

    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
  }

  #nosso-orgulho .notifika-testimonial__company {
    display: block;
    margin-top: 3px;

    color: #7a7a7a;

    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
  }

  /* =========================================================
     TABLET
     ========================================================= */

  @media (max-width: 1024px) {
    #nosso-orgulho {
      padding: 80px 28px;
    }

    #nosso-orgulho .notifika-testimonials {
      grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.9fr);
    }

    #nosso-orgulho .notifika-testimonial--featured {
      padding: 30px;
    }

    #nosso-orgulho .notifika-testimonial {
      padding: 24px;
    }
  }

  /* =========================================================
     TABLET VERTICAL
     ========================================================= */

  @media (max-width: 850px) {
    #nosso-orgulho .notifika-social-metrics {
      grid-template-columns: 1fr;
    }

    #nosso-orgulho .notifika-social-metric {
      padding: 22px 24px;
    }

    #nosso-orgulho
      .notifika-social-metric:not(:last-child) {
      border-right: 0;
      border-bottom: 1px solid var(--social-border);
    }

    #nosso-orgulho .notifika-testimonials {
      grid-template-columns: 1fr;
    }

    #nosso-orgulho .notifika-testimonials__side {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-template-rows: none;
    }

    #nosso-orgulho .notifika-testimonial--featured {
      min-height: 380px;
    }
  }

  /* =========================================================
     CELULAR
     ========================================================= */

  @media (max-width: 767px) {
    #nosso-orgulho {
      padding: 64px 20px;
    }

    #nosso-orgulho .notifika-social__header {
      margin-bottom: 38px;
    }

    #nosso-orgulho .notifika-social__title {
      font-size: clamp(32px, 9vw, 40px);
    }

    #nosso-orgulho .notifika-social__subtitle {
      margin-top: 16px;

      font-size: 17px;
      line-height: 1.6;
    }

    #nosso-orgulho .notifika-testimonials__side {
      grid-template-columns: 1fr;
    }

    #nosso-orgulho .notifika-testimonial,
    #nosso-orgulho .notifika-testimonial--featured {
      min-height: auto;
      padding: 24px;
    }

    #nosso-orgulho
      .notifika-testimonial--featured
      .notifika-testimonial__quote {
      font-size: 22px;
      line-height: 1.55;
    }

    #nosso-orgulho .notifika-testimonial__quote {
      margin-top: 24px;
      margin-bottom: 30px;
    }
  }

  /* =========================================================
     CELULARES PEQUENOS
     ========================================================= */

  @media (max-width: 430px) {
    #nosso-orgulho {
      padding-right: 18px;
      padding-left: 18px;
    }

    #nosso-orgulho .notifika-social-metric__value {
      font-size: 28px;
    }

    #nosso-orgulho
      .notifika-testimonial--featured::after {
      right: 18px;

      font-size: 120px;
    }
  }

  /* =========================================================
     ACESSIBILIDADE
     ========================================================= */

  @media (prefers-reduced-motion: reduce) {
    #nosso-orgulho .notifika-testimonial {
      transition: none;
    }

    #nosso-orgulho .notifika-testimonial:hover {
      transform: none;
    }
  }

/* =========================================================
     INTEGRAÇÕES — NOTIFIKA
     Estilos isolados dentro de #metaads
     ========================================================= */

  #metaads,
  #metaads * {
    box-sizing: border-box;
  }

  #metaads {
    --integration-text: #0a0a0a;
    --integration-muted: #666666;
    --integration-border: #e5e5e5;
    --integration-soft: #f7f7f7;
    --integration-card: #ffffff;
    --integration-green: #3f3f46;
    --integration-green-dark: #3f3f46;
    --integration-green-soft: #f5f5f5;

    width: 100%;
    padding: 96px 32px;

    background: #ffffff;
    color: var(--integration-text);

    font-family:
      Inter,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif;
  }

  #metaads .notifika-integrations__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* =========================================================
     CABEÇALHO
     ========================================================= */

  #metaads .notifika-integrations__header {
    max-width: 780px;
    margin-bottom: 48px;
  }

  #metaads .notifika-integrations__eyebrow {
    margin: 0 0 14px;

    display: flex;
    align-items: center;
    color: #474747;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  #metaads .notifika-integrations__title {
    margin: 0;

    color: var(--integration-text);

    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  #metaads .notifika-integrations__subtitle {
    max-width: 720px;
    margin: 20px 0 0;

    color: var(--integration-muted);

    font-size: clamp(17px, 1.45vw, 20px);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -0.01em;
  }

  /* =========================================================
     GRADE
     ========================================================= */

  #metaads .notifika-integrations__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  #metaads .notifika-integration-card {
    position: relative;
    min-width: 0;
    min-height: 460px;
    padding: 28px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: var(--integration-card);
    border: 1px solid var(--integration-border);
    border-radius: 16px;

    transition:
      border-color 180ms ease,
      box-shadow 180ms ease,
      transform 180ms ease;
  }

  #metaads .notifika-integration-card:hover {
    border-color: #d5d5d5;
    box-shadow: 0 18px 46px rgba(10, 10, 10, 0.07);
    transform: translateY(-2px);
  }

  #metaads .notifika-integration-card__number {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 1;

    color: #b8b8b8;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
  }

  #metaads .notifika-integration-card__visual {
    min-height: 185px;
    padding: 44px 20px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: var(--integration-soft);
    border: 1px solid #ebebeb;
    border-radius: 12px;
  }

  #metaads .notifika-integration-card__content {
    margin-top: auto;
    padding-top: 30px;
  }

  #metaads .notifika-integration-card__badge {
    width: fit-content;
    margin-bottom: 13px;
    padding: 7px 10px;

    display: inline-flex;
    align-items: center;
    background: var(--integration-green-soft);
    border: 1px solid #e5e5e5;
    border-radius: 8px;

    color: var(--integration-green-dark);

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
  }

  #metaads .notifika-integration-card__title {
    margin: 0;

    color: var(--integration-text);

    font-size: 23px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
    text-wrap: balance;
  }

  #metaads .notifika-integration-card__description {
    margin: 12px 0 0;

    color: var(--integration-muted);

    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
  }

  /* =========================================================
     ELEMENTOS DO FLUXO
     ========================================================= */

  #metaads .notifika-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  #metaads .notifika-flow__group {
    min-width: 0;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  #metaads .notifika-flow__node {
    min-height: 34px;
    padding: 9px 11px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 8px;

    color: #3e3e3e;

    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }

  #metaads .notifika-flow__node--notifika {
    background: #0a0a0a;
    border-color: #0a0a0a;
    color: #ffffff;
  }

  #metaads .notifika-flow__node--destination {
    background: var(--integration-green-soft);
    border-color: #e5e5e5;
    color: var(--integration-green-dark);
  }

  #metaads .notifika-flow__node-dot {
    width: 6px;
    height: 6px;

    flex: 0 0 6px;

    background: var(--integration-green);
    border-radius: 999px;
  }

  #metaads .notifika-flow__arrow {
    flex: 0 0 auto;

    color: #989898;

    font-size: 17px;
    font-weight: 400;
    line-height: 1;
  }

  /* =========================================================
     META ADS
     ========================================================= */

  #metaads .notifika-meta-sources {
    margin-bottom: 17px;

    display: flex;
    justify-content: center;
    gap: 8px;
  }

  #metaads .notifika-meta-source {
    min-height: 38px;
    padding: 10px 12px;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 9px;

    color: #343434;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
  }

  #metaads .notifika-meta-source__indicator {
    width: 7px;
    height: 7px;

    background: #d4d4d8;
    border-radius: 999px;
  }

  #metaads .notifika-meta-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  /* =========================================================
     PORTAIS
     ========================================================= */

  #metaads .notifika-portals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
  }

  #metaads .notifika-portal {
    min-height: 31px;
    padding: 8px 10px;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 8px;

    color: #454545;

    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }

  #metaads .notifika-portal__indicator {
    width: 5px;
    height: 5px;

    flex: 0 0 5px;

    background: #d4d4d8;
    border-radius: 999px;
  }

  #metaads .notifika-portals-route {
    margin-top: 17px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  /* =========================================================
     SITE
     ========================================================= */

  #metaads .notifika-site-window {
    width: min(100%, 170px);
    margin: 0 auto 16px;

    overflow: hidden;

    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 9px;
  }

  #metaads .notifika-site-window__bar {
    height: 25px;
    padding: 0 8px;

    display: flex;
    align-items: center;
    gap: 4px;

    background: #f1f1f1;
    border-bottom: 1px solid #e3e3e3;
  }

  #metaads .notifika-site-window__dot {
    width: 5px;
    height: 5px;

    background: #c8c8c8;
    border-radius: 999px;
  }

  #metaads .notifika-site-window__form {
    padding: 10px;

    display: grid;
    gap: 6px;
  }

  #metaads .notifika-site-window__field {
    height: 9px;

    background: #eeeeee;
    border-radius: 4px;
  }

  #metaads .notifika-site-window__field--short {
    width: 65%;
  }

  #metaads .notifika-site-window__button {
    width: 42%;
    height: 13px;
    margin-top: 2px;

    background: #3f3f46;
    border-radius: 4px;
  }

  #metaads .notifika-site-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  /* =========================================================
     TABLET
     ========================================================= */

  @media (max-width: 1024px) {
    #metaads {
      padding: 80px 28px;
    }

    #metaads .notifika-integrations__grid {
      gap: 14px;
    }

    #metaads .notifika-integration-card {
      min-height: 450px;
      padding: 22px;
    }

    #metaads .notifika-integration-card__visual {
      min-height: 178px;
      padding: 16px;
    }

    #metaads .notifika-flow {
      flex-wrap: wrap;
    }

    #metaads .notifika-flow__arrow {
      font-size: 15px;
    }
  }

  /* =========================================================
     TABLET VERTICAL
     ========================================================= */

  @media (max-width: 850px) {
    #metaads .notifika-integrations__grid {
      grid-template-columns: 1fr;
    }

    #metaads .notifika-integration-card {
      min-height: auto;

      display: grid;
      grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
      align-items: center;
      gap: 28px;
    }

    #metaads .notifika-integration-card__visual {
      min-height: 200px;
    }

    #metaads .notifika-integration-card__content {
      margin-top: 0;
      padding-top: 0;
    }
  }

  /* =========================================================
     CELULAR
     ========================================================= */

  @media (max-width: 767px) {
    #metaads {
      padding: 64px 20px;
    }

    #metaads .notifika-integrations__header {
      margin-bottom: 38px;
    }

    #metaads .notifika-integrations__title {
      font-size: clamp(32px, 9vw, 40px);
    }

    #metaads .notifika-integrations__subtitle {
      margin-top: 16px;

      font-size: 17px;
      line-height: 1.6;
    }

    #metaads .notifika-integration-card {
      display: flex;
      min-height: 450px;
      padding: 24px;
    }

    #metaads .notifika-integration-card__visual {
      min-height: 185px;
    }

    #metaads .notifika-integration-card__content {
      margin-top: auto;
      padding-top: 28px;
    }
  }

  /* =========================================================
     CELULARES PEQUENOS
     ========================================================= */

  @media (max-width: 430px) {
    #metaads {
      padding-right: 18px;
      padding-left: 18px;
    }

    #metaads .notifika-integration-card {
      min-height: 430px;
      padding: 20px;
    }

    #metaads .notifika-integration-card__number {
      top: 22px;
      right: 22px;
    }

    #metaads .notifika-integration-card__visual {
      padding: 14px;
    }

    #metaads .notifika-meta-sources {
      flex-wrap: wrap;
    }

    #metaads .notifika-flow__node,
    #metaads .notifika-meta-source {
      white-space: normal;
    }
  }

  /* =========================================================
     ACESSIBILIDADE
     ========================================================= */

  @media (prefers-reduced-motion: reduce) {
    #metaads .notifika-integration-card {
      transition: none;
    }

    #metaads .notifika-integration-card:hover {
      transform: none;
    }
  }

/* =========================================================
     PLANOS E PREÇOS — NOTIFIKA
     Estilos isolados dentro de #planos
     ========================================================= */

  #planos,
  #planos * {
    box-sizing: border-box;
  }

  #planos {
    --plans-bg: #ffffff;
    --plans-card: #ffffff;
    --plans-text: #0a0a0a;
    --plans-muted: #666666;
    --plans-border: #e2e2e2;
    --plans-soft: #f5f5f5;
    --plans-green: #3f3f46;
    --plans-green-dark: #3f3f46;
    --plans-green-soft: #f5f5f5;
    --plans-amber: #b76800;
    --plans-amber-soft: #fff7e8;
    --plans-sticky-offset: 80px;
    --plans-sticky-header-height: 48px;

    width: 100%;
    padding: 96px 32px;

    background: var(--plans-bg);
    color: var(--plans-text);

    font-family:
      Inter,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif;
  }

  #planos .notifika-plans__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* =========================================================
     CABEÇALHO
     ========================================================= */

  #planos .notifika-plans__header {
    max-width: 780px;
    margin-bottom: 48px;
  }

  #planos .notifika-plans__eyebrow {
    margin: 0 0 14px;

    display: flex;
    align-items: center;
    color: #474747;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  #planos .notifika-plans__title {
    margin: 0;

    color: var(--plans-text);

    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  #planos .notifika-plans__subtitle {
    max-width: 700px;
    margin: 20px 0 0;

    color: var(--plans-muted);

    font-size: clamp(17px, 1.45vw, 20px);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -0.01em;
  }

  /* =========================================================
     CARDS DOS PLANOS
     ========================================================= */

  #planos .notifika-plans__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
  }

  #planos .notifika-plan-card {
    position: relative;
    min-width: 0;
    padding: 30px;

    display: flex;
    flex-direction: column;

    background: var(--plans-card);
    border: 1px solid var(--plans-border);
    border-radius: 16px;

    transition:
      border-color 180ms ease,
      box-shadow 180ms ease,
      transform 180ms ease;
  }

  #planos .notifika-plan-card:hover {
    border-color: #cecece;
    box-shadow: 0 18px 50px rgba(10, 10, 10, 0.07);
    transform: translateY(-2px);
  }

  #planos .notifika-plan-card--popular {
    border: 2px solid #0a0a0a;
    box-shadow: 0 22px 60px rgba(10, 10, 10, 0.1);
  }

  #planos .notifika-plan-card__popular {
    position: absolute;
    top: -14px;
    left: 50%;

    padding: 7px 13px;

    background: #0a0a0a;
    border-radius: 8px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    transform: translateX(-50%);
    white-space: nowrap;
  }

  #planos .notifika-plan-card__name {
    margin: 0;

    color: var(--plans-text);

    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  #planos .notifika-plan-card__audience {
    min-height: 48px;
    margin: 10px 0 0;

    color: var(--plans-muted);

    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
  }

  /* Preço */

  #planos .notifika-plan-card__price {
    margin-top: 25px;

    display: flex;
    align-items: flex-end;
    gap: 7px;
  }

  #planos .notifika-plan-card__currency {
    padding-bottom: 7px;

    color: #434343;

    font-size: 17px;
    font-weight: 700;
    line-height: 1;
  }

  #planos .notifika-plan-card__amount {
    color: var(--plans-text);

    font-size: clamp(42px, 4vw, 54px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.055em;
  }

  #planos .notifika-plan-card__period {
    padding-bottom: 6px;

    color: #777777;

    font-size: 13px;
    font-weight: 500;
    line-height: 1;
  }

  /* Promoção */

  #planos .notifika-plan-card__promotion {
    margin-top: 21px;
    padding: 12px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    background: var(--plans-green-soft);
    border: 1px solid #e5e5e5;
    border-radius: 10px;
  }

  #planos .notifika-plan-card__promotion-text {
    color: var(--plans-green-dark);

    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
  }

  #planos .notifika-plan-card__coupon {
    padding: 6px 8px;

    background: #ffffff;
    border: 1px dashed #cfcfcf;
    border-radius: 7px;

    color: var(--plans-green-dark);

    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  /* Lista resumida */

  #planos .notifika-plan-card__divider {
    width: 100%;
    height: 1px;
    margin: 26px 0;

    background: var(--plans-border);
  }

  #planos .notifika-plan-card__includes {
    margin: 0 0 17px;

    color: #383838;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
  }

  #planos .notifika-plan-card__features {
    margin: 0;
    padding: 0;

    display: grid;
    gap: 13px;

    list-style: none;
  }

  #planos .notifika-plan-card__feature {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;

    color: #4d4d4d;

    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
  }

  #planos .notifika-feature-label {
    min-width: 0;

    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
  }

  /* Tooltips acessíveis por mouse, teclado e toque */

  #planos .notifika-tooltip-wrap {
    position: relative;

    display: inline-flex;
    align-items: center;
  }

  #planos .notifika-tooltip-trigger {
    width: 18px;
    height: 18px;
    padding: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid #cfcfcf;
    border-radius: 6px;

    color: #666666;

    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;

    appearance: none;
    cursor: help;
  }

  #planos .notifika-tooltip-trigger:hover,
  #planos .notifika-tooltip-trigger:focus-visible,
  #planos .notifika-tooltip-trigger[aria-expanded="true"] {
    background: #0a0a0a;
    border-color: #0a0a0a;
    color: #ffffff;
  }

  #planos .notifika-tooltip-trigger:focus-visible {
    outline: 3px solid rgba(0, 0, 0, 0.15);
    outline-offset: 2px;
  }

  #planos .notifika-tooltip[hidden] {
    display: none;
  }

  #planos .notifika-tooltip {
    position: absolute;
    z-index: 30;
    bottom: calc(100% + 9px);
    left: 50%;

    width: min(260px, 72vw);
    padding: 11px 12px;

    background: #0a0a0a;
    border: 1px solid #2c2c2c;
    border-radius: 9px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);

    color: #ffffff;

    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;

    transform: translateX(-50%);
  }

  #planos .notifika-tooltip::after {
    position: absolute;
    top: 100%;
    left: 50%;

    width: 9px;
    height: 9px;

    content: "";

    background: #0a0a0a;
    border-right: 1px solid #2c2c2c;
    border-bottom: 1px solid #2c2c2c;

    transform: translate(-50%, -5px) rotate(45deg);
  }

  #planos .notifika-plan-card__check {
    width: 18px;
    height: 18px;
    margin-top: 1px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--plans-green-soft);
    border-radius: 6px;
  }

  #planos .notifika-plan-card__check::before {
    width: 7px;
    height: 4px;

    content: "";

    border-bottom: 2px solid var(--plans-green-dark);
    border-left: 2px solid var(--plans-green-dark);

    transform: rotate(-45deg) translateY(-1px);
  }

  /* CTA */

  #planos .notifika-plan-card__footer {
    margin-top: auto;
    padding-top: 30px;
  }

  #planos .notifika-plan-card__button {
    width: 100%;
    min-height: 50px;
    padding: 14px 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid #cfcfcf;
    border-radius: 12px;

    color: #0a0a0a;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;

    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      color 180ms ease,
      box-shadow 180ms ease,
      transform 180ms ease;
  }

  #planos .notifika-plan-card__button:hover {
    background: #f5f5f5;
    border-color: #bcbcbc;
    color: #0a0a0a;

    transform: translateY(-1px);
  }

  #planos
    .notifika-plan-card--popular
    .notifika-plan-card__button {
    background: #0a0a0a;
    border-color: #0a0a0a;
    color: #ffffff;
  }

  #planos
    .notifika-plan-card--popular
    .notifika-plan-card__button:hover {
    background: #272727;
    border-color: #272727;
    color: #ffffff;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  }

  #planos .notifika-plan-card__button:focus-visible {
    outline: 3px solid rgba(0, 0, 0, 0.18);
    outline-offset: 3px;
  }

  /* =========================================================
     COMPARAÇÃO
     ========================================================= */

  #planos .notifika-comparison {
    margin-top: 72px;
  }

  #planos .notifika-comparison__header {
    max-width: 700px;
    margin-bottom: 28px;
  }

  #planos .notifika-comparison__title {
    margin: 0;

    color: var(--plans-text);

    font-size: clamp(27px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.035em;
  }

  #planos .notifika-comparison__subtitle {
    margin: 12px 0 0;

    color: var(--plans-muted);

    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
  }

  #planos .notifika-comparison__table-wrapper {
    overflow: visible;

    background: #ffffff;
    border: 1px solid var(--plans-border);
    border-radius: 16px;
  }

  #planos .notifika-comparison__table {
    width: 100%;

    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
  }

  #planos .notifika-comparison__table th,
  #planos .notifika-comparison__table td {
    padding: 16px 18px;

    border-bottom: 1px solid var(--plans-border);

    text-align: center;
    vertical-align: middle;
  }

  #planos .notifika-comparison__table tr:last-child td {
    border-bottom: 0;
  }

  #planos .notifika-comparison__table th:first-child,
  #planos .notifika-comparison__table td:first-child {
    width: 34%;

    text-align: left;
  }

  #planos .notifika-comparison__table thead th {
    position: sticky;
    z-index: 20;
    top: var(--plans-sticky-offset);

    background: #fafafa;

    color: #2e2e2e;

    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-transform: uppercase;

    box-shadow: 0 1px 0 var(--plans-border);
  }

  #planos
    .notifika-comparison__table
    thead
    th:nth-child(3) {
    background: #f1f1f1;
  }

  #planos .notifika-comparison__feature {
    color: #3d3d3d;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
  }

  #planos .notifika-comparison__value {
    color: #555555;

    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
  }

  /* Categorias */

  #planos .notifika-comparison__category th {
    position: sticky;
    z-index: 19;
    top: calc(
      var(--plans-sticky-offset) + var(--plans-sticky-header-height)
    );

    padding: 13px 18px;

    background: #f3f3f3;
    border-top: 1px solid #dddddd;

    color: #4a4a4a;

    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.07em;
    text-align: left;
    text-transform: uppercase;

    box-shadow: 0 1px 0 #dddddd;
  }

  /* Status incluído */

  #planos .notifika-comparison__included {
    width: 23px;
    height: 23px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--plans-green-soft);
    border-radius: 7px;
  }

  #planos .notifika-comparison__included::before {
    width: 8px;
    height: 5px;

    content: "";

    border-bottom: 2px solid var(--plans-green-dark);
    border-left: 2px solid var(--plans-green-dark);

    transform: rotate(-45deg) translateY(-1px);
  }

  #planos .notifika-comparison__unavailable {
    color: #b0b0b0;

    font-size: 17px;
    font-weight: 400;
  }

  #planos .notifika-comparison__soon {
    width: fit-content;
    margin: 0 auto;
    padding: 6px 8px;

    display: inline-flex;
    align-items: center;

    background: var(--plans-amber-soft);
    border: 1px solid #f0d3a4;
    border-radius: 7px;

    color: var(--plans-amber);

    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  /* Nota final */

  #planos .notifika-comparison__note {
    margin: 18px 0 0;

    color: #777777;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
  }

  /* =========================================================
     TABLET
     ========================================================= */

  @media (max-width: 1024px) {
    #planos {
      padding: 80px 28px;
    }

    #planos .notifika-plans__cards {
      gap: 14px;
    }

    #planos .notifika-plan-card {
      padding: 24px;
    }

    #planos .notifika-plan-card__promotion {
      align-items: flex-start;
      flex-direction: column;
    }

    #planos .notifika-comparison__table th,
    #planos .notifika-comparison__table td {
      padding: 14px 12px;
    }
  }

  /* =========================================================
     TABLET VERTICAL
     ========================================================= */

  @media (max-width: 850px) {
    #planos .notifika-plans__cards {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    #planos .notifika-plan-card {
      max-width: 680px;
      width: 100%;
      margin: 0 auto;
    }

    #planos .notifika-plan-card__audience {
      min-height: auto;
    }

    #planos .notifika-plan-card__promotion {
      align-items: center;
      flex-direction: row;
    }
  }

  /* =========================================================
     COMPARAÇÃO NO CELULAR
     ========================================================= */

  @media (max-width: 767px) {
    #planos {
      padding: 64px 20px;
    }

    #planos .notifika-plans__header {
      margin-bottom: 40px;
    }

    #planos .notifika-plans__title {
      font-size: clamp(32px, 9vw, 40px);
    }

    #planos .notifika-plans__subtitle {
      margin-top: 16px;

      font-size: 17px;
      line-height: 1.6;
    }

    #planos .notifika-comparison {
      margin-top: 58px;
    }

    #planos .notifika-comparison__table-wrapper {
      overflow: visible;

      background: transparent;
      border: 0;
      border-radius: 0;
    }

    #planos .notifika-comparison__table,
    #planos .notifika-comparison__table tbody {
      display: block;
      width: 100%;
    }

    #planos .notifika-comparison__table thead {
      position: absolute;

      width: 1px;
      height: 1px;

      overflow: hidden;
      clip: rect(0 0 0 0);
      clip-path: inset(50%);
      white-space: nowrap;
    }

    #planos .notifika-comparison__table tr {
      margin-bottom: 12px;

      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));

      overflow: hidden;

      background: #ffffff;
      border: 1px solid var(--plans-border);
      border-radius: 12px;
    }

    #planos .notifika-comparison__table th,
    #planos .notifika-comparison__table td {
      width: auto;
      padding: 13px 9px;

      display: block;

      border: 0;

      text-align: center;
    }

    #planos .notifika-comparison__table td:first-child {
      width: auto;
      padding: 14px 16px;

      grid-column: 1 / -1;

      background: #f7f7f7;
      border-bottom: 1px solid var(--plans-border);

      text-align: left;
    }

    #planos
      .notifika-comparison__table
      td:not(:first-child)::before {
      display: block;
      margin-bottom: 8px;

      color: #969696;

      content: attr(data-plan);

      font-size: 9px;
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    #planos .notifika-comparison__category {
      display: block;
    }

    #planos .notifika-comparison__category th {
      position: static;

      padding: 13px 15px;

      display: block;

      background: #e9e9e9;
      border: 0;
      border-radius: 10px;

      text-align: left;
    }

    #planos .notifika-comparison__included {
      width: 21px;
      height: 21px;
    }

    #planos .notifika-tooltip {
      right: 0;
      left: auto;

      width: min(260px, calc(100vw - 36px));

      transform: none;
    }

    #planos .notifika-tooltip::after {
      right: 5px;
      left: auto;

      transform: translateY(-5px) rotate(45deg);
    }
  }

  /* =========================================================
     CELULARES PEQUENOS
     ========================================================= */

  @media (max-width: 430px) {
    #planos {
      padding-right: 18px;
      padding-left: 18px;
    }

    #planos .notifika-plan-card {
      padding: 22px;
    }

    #planos .notifika-plan-card__promotion {
      align-items: flex-start;
      flex-direction: column;
    }

    #planos .notifika-plan-card__amount {
      font-size: 48px;
    }
  }

  /* =========================================================
     ACESSIBILIDADE
     ========================================================= */

  @media (prefers-reduced-motion: reduce) {
    #planos .notifika-plan-card,
    #planos .notifika-plan-card__button {
      transition: none;
    }

    #planos .notifika-plan-card:hover,
    #planos .notifika-plan-card__button:hover {
      transform: none;
    }
  }

/* =========================================================
     PERGUNTAS FREQUENTES — NOTIFIKA
     Estilos isolados dentro de #notifika-faq
     ========================================================= */

  #notifika-faq,
  #notifika-faq * {
    box-sizing: border-box;
  }

  #notifika-faq {
    --faq-text: #0a0a0a;
    --faq-muted: #666666;
    --faq-border: #e5e5e5;
    --faq-soft: #f7f7f7;
    --faq-green: #3f3f46;

    width: 100%;
    padding: 96px 32px;

    background: #ffffff;
    color: var(--faq-text);

    font-family:
      Inter,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif;
  }

  #notifika-faq .notifika-faq__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  #notifika-faq .notifika-faq__layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: clamp(54px, 8vw, 110px);
  }

  /* =========================================================
     CABEÇALHO
     ========================================================= */

  #notifika-faq .notifika-faq__header {
    position: sticky;
    top: 108px;

    max-width: 440px;
  }

  #notifika-faq .notifika-faq__eyebrow {
    margin: 0 0 14px;

    display: flex;
    align-items: center;

    color: #474747;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  #notifika-faq .notifika-faq__title {
    margin: 0;

    color: var(--faq-text);

    font-size: clamp(34px, 3.8vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  #notifika-faq .notifika-faq__subtitle {
    margin: 20px 0 0;

    color: var(--faq-muted);

    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.01em;
  }

  /* =========================================================
     ACORDEÃO
     ========================================================= */

  #notifika-faq .notifika-faq__questions {
    min-width: 0;

    border-top: 1px solid var(--faq-border);
  }

  #notifika-faq .notifika-faq-item {
    border-bottom: 1px solid var(--faq-border);
  }

  #notifika-faq .notifika-faq-item__question {
    width: 100%;
    padding: 25px 0;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    align-items: center;
    gap: 24px;

    color: var(--faq-text);

    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.015em;

    list-style: none;
    cursor: pointer;
  }

  #notifika-faq .notifika-faq-item__question::-webkit-details-marker {
    display: none;
  }

  #notifika-faq .notifika-faq-item__question::marker {
    display: none;
    content: "";
  }

  #notifika-faq .notifika-faq-item__question:hover {
    color: #3b3b3b;
  }

  #notifika-faq .notifika-faq-item__question:focus-visible {
    outline: 3px solid rgba(0, 0, 0, 0.14);
    outline-offset: 5px;
    border-radius: 4px;
  }

  /* Ícone */

  #notifika-faq .notifika-faq-item__icon {
    position: relative;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--faq-soft);
    border: 1px solid var(--faq-border);
    border-radius: 9px;

    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      transform 180ms ease;
  }

  #notifika-faq .notifika-faq-item__icon::before,
  #notifika-faq .notifika-faq-item__icon::after {
    position: absolute;

    width: 12px;
    height: 2px;

    content: "";

    background: #555555;
    border-radius: 999px;

    transition:
      background-color 180ms ease,
      transform 180ms ease;
  }

  #notifika-faq .notifika-faq-item__icon::after {
    transform: rotate(90deg);
  }

  #notifika-faq .notifika-faq-item[open] .notifika-faq-item__icon {
    background: #0a0a0a;
    border-color: #0a0a0a;
    transform: rotate(180deg);
  }

  #notifika-faq
    .notifika-faq-item[open]
    .notifika-faq-item__icon::before,
  #notifika-faq
    .notifika-faq-item[open]
    .notifika-faq-item__icon::after {
    background: #ffffff;
  }

  #notifika-faq
    .notifika-faq-item[open]
    .notifika-faq-item__icon::after {
    transform: rotate(0deg);
  }

  /* Resposta */

  #notifika-faq .notifika-faq-item__answer {
    max-width: 720px;
    padding: 0 58px 26px 0;

    color: var(--faq-muted);

    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;

    animation: notifika-faq-answer 180ms ease;
  }

  #notifika-faq .notifika-faq-item__answer p {
    margin: 0;
  }

  @keyframes notifika-faq-answer {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* =========================================================
     TABLET
     ========================================================= */

  @media (max-width: 1024px) {
    #notifika-faq {
      padding: 80px 28px;
    }

    #notifika-faq .notifika-faq__layout {
      grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
      gap: 54px;
    }

    #notifika-faq .notifika-faq-item__question {
      padding: 22px 0;
    }
  }

  /* =========================================================
     CELULAR
     ========================================================= */

  @media (max-width: 767px) {
    #notifika-faq {
      padding: 64px 20px;
    }

    #notifika-faq .notifika-faq__layout {
      grid-template-columns: 1fr;
      gap: 44px;
    }

    #notifika-faq .notifika-faq__header {
      position: static;

      max-width: 680px;
    }

    #notifika-faq .notifika-faq__title {
      font-size: clamp(32px, 9vw, 40px);
    }

    #notifika-faq .notifika-faq__subtitle {
      margin-top: 16px;

      font-size: 17px;
      line-height: 1.6;
    }

    #notifika-faq .notifika-faq-item__question {
      grid-template-columns: minmax(0, 1fr) 32px;
      gap: 18px;

      font-size: 16px;
    }

    #notifika-faq .notifika-faq-item__answer {
      padding-right: 48px;

      font-size: 15px;
      line-height: 1.7;
    }
  }

  @media (max-width: 430px) {
    #notifika-faq {
      padding-right: 18px;
      padding-left: 18px;
    }

    #notifika-faq .notifika-faq-item__question {
      gap: 14px;
    }

    #notifika-faq .notifika-faq-item__answer {
      padding-right: 0;
    }
  }

  /* =========================================================
     ACESSIBILIDADE
     ========================================================= */

  @media (prefers-reduced-motion: reduce) {
    #notifika-faq .notifika-faq-item__icon,
    #notifika-faq .notifika-faq-item__icon::before,
    #notifika-faq .notifika-faq-item__icon::after {
      transition: none;
    }

    #notifika-faq .notifika-faq-item__answer {
      animation: none;
    }
  }

/* =========================================================
     CTA FINAL — NOTIFIKA
     Estilos isolados dentro de #notifika-cta-final
     ========================================================= */

  #notifika-cta-final,
  #notifika-cta-final * {
    box-sizing: border-box;
  }

  #notifika-cta-final {
    width: 100%;
    padding: 72px 32px 96px;

    background: #ffffff;
    color: #ffffff;

    font-family:
      Inter,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif;
  }

  #notifika-cta-final .notifika-final-cta__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  #notifika-cta-final .notifika-final-cta__panel {
    position: relative;

    width: 100%;
    min-height: 470px;
    padding: 76px 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #0a0a0a;
    border: 1px solid #202020;
    border-radius: 20px;
    box-shadow: 0 28px 70px rgba(10, 10, 10, 0.14);
  }

  /* Elementos decorativos discretos */

  #notifika-cta-final .notifika-final-cta__panel::before,
  #notifika-cta-final .notifika-final-cta__panel::after {
    position: absolute;

    width: 300px;
    height: 300px;

    content: "";

    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 50%;

    pointer-events: none;
  }

  #notifika-cta-final .notifika-final-cta__panel::before {
    top: -190px;
    right: -80px;
  }

  #notifika-cta-final .notifika-final-cta__panel::after {
    bottom: -220px;
    left: -100px;
  }

  #notifika-cta-final .notifika-final-cta__content {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 820px;
    margin: 0 auto;

    text-align: center;
  }

  #notifika-cta-final .notifika-final-cta__eyebrow {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 7px 11px;

    display: inline-flex;
    align-items: center;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;

    color: #d8d8d8;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  #notifika-cta-final .notifika-final-cta__title {
    max-width: 760px;
    margin: 0 auto;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 62px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.05em;
    text-wrap: balance;
  }

  #notifika-cta-final .notifika-final-cta__subtitle {
    max-width: 690px;
    margin: 24px auto 0;

    color: #b6b6b6;

    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -0.01em;
  }

  #notifika-cta-final .notifika-final-cta__action {
    margin-top: 34px;
  }

  #notifika-cta-final .notifika-final-cta__button {
    min-height: 52px;
    padding: 15px 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 12px;

    color: #0a0a0a;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;

    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease,
      transform 180ms ease;
  }

  #notifika-cta-final .notifika-final-cta__button:hover {
    background: #ededed;
    border-color: #ededed;
    color: #0a0a0a;

    box-shadow: 0 10px 28px rgba(255, 255, 255, 0.13);
    transform: translateY(-2px);
  }

  #notifika-cta-final .notifika-final-cta__button:active {
    transform: translateY(0);
  }

  #notifika-cta-final .notifika-final-cta__button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.42);
    outline-offset: 4px;
  }

  #notifika-cta-final .notifika-final-cta__note {
    margin: 14px 0 0;

    color: #929292;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
  }

  /* =========================================================
     TABLET
     ========================================================= */

  @media (max-width: 1024px) {
    #notifika-cta-final {
      padding: 64px 28px 80px;
    }

    #notifika-cta-final .notifika-final-cta__panel {
      min-height: 430px;
      padding: 68px 40px;
    }
  }

  /* =========================================================
     CELULAR
     ========================================================= */

  @media (max-width: 767px) {
    #notifika-cta-final {
      padding: 48px 20px 64px;
    }

    #notifika-cta-final .notifika-final-cta__panel {
      min-height: 430px;
      padding: 58px 24px;

      border-radius: 18px;
    }

    #notifika-cta-final .notifika-final-cta__title {
      font-size: clamp(35px, 10vw, 46px);
      line-height: 1.08;
    }

    #notifika-cta-final .notifika-final-cta__subtitle {
      margin-top: 20px;

      font-size: 17px;
      line-height: 1.6;
    }

    #notifika-cta-final .notifika-final-cta__action {
      margin-top: 30px;
    }
  }

  @media (max-width: 430px) {
    #notifika-cta-final {
      padding-right: 18px;
      padding-left: 18px;
    }

    #notifika-cta-final .notifika-final-cta__panel {
      padding-right: 20px;
      padding-left: 20px;
    }

    #notifika-cta-final .notifika-final-cta__button {
      width: 100%;
    }
  }

  /* =========================================================
     ACESSIBILIDADE
     ========================================================= */

  @media (prefers-reduced-motion: reduce) {
    #notifika-cta-final .notifika-final-cta__button {
      transition: none;
    }

    #notifika-cta-final .notifika-final-cta__button:hover {
      transform: none;
    }
  }
