:root {
        --primary: #2c4364;
        --primary-foreground: #ffffff;
        --brand-yellow: #ffcd00;
        --brand-yellow-bright: #fff112;
        --brand-navy: #2c4364;
        --brand-gray-text: #64748b;
        --brand-success: #10b981;
        --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
        --shadow-card-hover: 0 12px 36px rgba(0, 0, 0, 0.13);
      }

      

      body {
        font-family: "Poppins", sans-serif;
        background: #fff;
        color: var(--brand-navy);
      }

      /* ──────────────── HEADER ──────────────── */
      

      /* ──────────────── HEADER NAV ──────────────── */
      

      /* Botão menu hamburguer */
      

      

      

      

      /* Dropdown */
      

      

      

      

      

      

      

      

      /* ──────────────── HERO ──────────────── */
      .hero {
        position: relative;
        overflow: hidden;
        background: #fff;
        padding: 3rem 0 3.5rem;
      }

      /* Fundo decorativo — mancha amarela suave no canto superior esquerdo */
      .hero::before {
        content: "";
        position: absolute;
        top: -120px;
        left: -120px;
        width: 520px;
        height: 520px;
        background: radial-gradient(circle, rgba(255, 205, 0, 0.18) 0%, transparent 70%);
        pointer-events: none;
      }

      /* Mancha azul no canto inferior direito */
      .hero::after {
        content: "";
        position: absolute;
        bottom: -80px;
        right: -80px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(44, 67, 100, 0.07) 0%, transparent 70%);
        pointer-events: none;
      }

      .hero-container {
        position: relative;
        z-index: 1;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
      }

      /* Grid: 3/5 conteúdo + 2/5 formulário no desktop */
      .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
      }

      @media (min-width: 1024px) {
        .hero-grid {
          display: grid;
          grid-template-columns: 3fr 2fr;
          gap: 2rem;
          align-items: center;
        }
      }

      /* ── CONTEÚDO ── */
      .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      @media (min-width: 1024px) {
        .hero-content {
          align-items: center;
          text-align: center;
        }

        .hero-features li {
          justify-content: flex-start;
        }

        .hero-rule {
          justify-content: center;
        }

        .hero-proof-pills {
          justify-content: center;
        }
      }

      /* Eyebrow badge */
      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(44, 67, 100, 0.06);
        border: 1px solid rgba(44, 67, 100, 0.12);
        color: var(--brand-navy);
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 0.4rem 1rem;
        border-radius: 999px;
        margin-bottom: 1.25rem;
        animation: fadeUp 0.5s ease both;
      }

      .eyebrow-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--brand-yellow);
        flex-shrink: 0;
      }

      /* H1 principal */
      .hero-h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 900;
        line-height: 1.05;
        letter-spacing: -0.02em;
      }

      .hero-h1 .line-plain {
        display: block;
        color: var(--brand-navy);
      }

      .hero-h1 .line-badge {
        display: inline-block;
        background: var(--brand-yellow-bright);
        color: var(--brand-navy);
        padding: 0.05em 0.35em;
        border-radius: 0.5rem;
        margin: 0.08em 0;
      }

      /* Divisor decorativo */
      .hero-rule {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin: 1.25rem 0;
        width: 100%;
        max-width: 520px;
        animation: fadeUp 0.55s ease 0.18s both;
      }

      .hero-rule-line {
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, rgba(44, 67, 100, 0.15) 0%, rgba(44, 67, 100, 0.05) 100%);
      }

      .hero-rule-diamonds {
        display: flex;
        gap: 6px;
        align-items: center;
      }

      .hero-rule-diamonds span {
        display: block;
        background: var(--brand-navy);
        transform: rotate(45deg);
      }

      .hero-rule-diamonds span:nth-child(1),
      .hero-rule-diamonds span:nth-child(3) {
        width: 7px;
        height: 7px;
        opacity: 0.5;
      }

      .hero-rule-diamonds span:nth-child(2) {
        width: 11px;
        height: 11px;
      }

      /* Sub-headline estilo pilha */
      .hero-subline {
        font-size: clamp(1rem, 4.5vw, 2.5rem);
        font-weight: 800;
        line-height: 1.2;
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        width: 100%;
      }

      .hero-subline .sl-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.4rem;
        justify-content: center;
        max-width: 100%;
        overflow: hidden;
      }

      .hero-subline--mobile-alt {
        display: none;
      }

      .tag-yellow {
        background: var(--brand-yellow-bright);
        color: var(--brand-navy);
        padding: 0.1em 0.4em;
        border-radius: 0.4rem;
        display: inline-block;
      }

      .tag-navy {
        background: var(--brand-navy);
        color: #fff;
        padding: 0.1em 0.4em;
        border-radius: 0.4rem;
        display: inline-block;
      }

      /* Descrição / bullets */
      .hero-desc {
        margin-top: 1.5rem;
        font-size: 0.95rem;
        color: var(--brand-gray-text);
        max-width: 480px;
        line-height: 1.6;
        text-align: left;
        animation: fadeUp 0.55s ease 0.32s both;
      }

      .hero-features {
        list-style: none;
        margin-top: 1.25rem;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
        max-width: 480px;
        animation: fadeUp 0.55s ease 0.38s both;
      }

      .hero-features li {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--brand-navy);
        text-align: left;
      }

      .feat-icon {
        flex-shrink: 0;
        margin-top: 2px;
        width: 1.75rem;
        height: 1.75rem;
        border-radius: 0.4rem;
        background: rgba(255, 205, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-navy);
      }

      /* Social proof pills */
      .hero-proof-pills {
        margin-top: 1.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        animation: fadeUp 0.55s ease 0.44s both;
      }

      .proof-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        background: #f0f4f9;
        border: 1px solid #dde5ef;
        border-radius: 999px;
        padding: 0.35rem 0.85rem 0.35rem 0.4rem;
        font-size: 0.78rem;
        color: var(--brand-navy);
        white-space: nowrap;
      }

      .proof-pill strong {
        font-weight: 700;
      }

      .proof-check {
        flex-shrink: 0;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--brand-success);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .proof-check svg {
        color: #fff;
      }

      /* ── FORMULÁRIO ── */
      .hero-form-col {
        animation: fadeUp 0.6s ease 0.15s both;
      }

      .form-card {
        background: #fff;
        border-radius: 1.25rem;
        border: 1px solid #e8eff7;
        box-shadow: var(--shadow-card);
        padding: 2rem 1.75rem;
      }

      @media (max-width: 479px) {
        .form-card {
          padding: 1.5rem 1.25rem;
        }
      }

      /* Cabeçalho do card com faixa navy */
      .form-card-header {
        background: var(--brand-navy);
        border-radius: 0.875rem;
        padding: 1rem 1.25rem 0.875rem;
        margin-bottom: 1.5rem;
        text-align: center;
      }

      .form-card-title {
        font-size: 1.05rem;
        font-weight: 800;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.04em;
      }

      .form-card-subtitle {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.7);
        margin-top: 0.2rem;
      }

      .form-group {
        margin-bottom: 0.875rem;
      }

      .form-label {
        display: block;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--brand-navy);
        margin-bottom: 0.3rem;
      }

      .form-input,
      .form-select {
        width: 100%;
        border-radius: 0.7rem;
        border: 1.5px solid #e2e8f0;
        background: #fafbfd;
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
        color: var(--brand-navy);
        font-family: inherit;
        transition:
          border-color 0.2s,
          box-shadow 0.2s,
          background 0.2s;
      }

      .form-input:focus,
      .form-select:focus {
        outline: none;
        border-color: var(--brand-yellow);
        background: #fff;
        box-shadow: 0 0 0 3px rgba(255, 205, 0, 0.25);
      }

      .form-error {
        margin-top: 0.2rem;
        font-size: 0.72rem;
        color: #dc2626;
        font-weight: 600;
        display: none;
      }

      .form-checkbox-label {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        font-size: 0.75rem;
        color: var(--brand-gray-text);
        cursor: pointer;
        margin-top: 0.75rem;
      }

      .form-checkbox {
        margin-top: 1px;
        flex-shrink: 0;
        width: 16px;
        height: 16px;
        accent-color: var(--brand-navy);
      }

      .btn-submit {
        width: 100%;
        margin-top: 0.875rem;
        background: var(--brand-yellow-bright);
        color: var(--brand-navy);
        font-weight: 800;
        font-size: 0.95rem;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        padding: 0.95rem 1rem;
        border-radius: 0.7rem;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transition:
          background 0.2s,
          transform 0.15s,
          box-shadow 0.2s;
        box-shadow: 0 4px 16px rgba(255, 205, 0, 0.4);
        font-family: inherit;
      }

      .btn-submit:hover {
        background: #f5e400;
        transform: translateY(-1px);
        box-shadow: 0 6px 22px rgba(255, 205, 0, 0.5);
      }

      .btn-submit:active {
        transform: translateY(0);
      }

      .btn-submit:disabled {
        opacity: 0.65;
        cursor: not-allowed;
        transform: none;
      }

      .form-footer-note {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 0.35rem;
        font-size: 0.72rem;
        color: var(--brand-gray-text);
        padding-top: 0.625rem;
        text-align: left;
      }

      .form-footer-note svg {
        flex-shrink: 0;
        margin-top: 1px;
      }

      /* Social proof pills */
      .hero-proof-pills {
        margin-top: 1.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        animation: fadeUp 0.55s ease 0.44s both;
      }

      .proof-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        background: #f0f4f9;
        border: 1px solid #dde5ef;
        border-radius: 999px;
        padding: 0.35rem 0.85rem 0.35rem 0.4rem;
        font-size: 0.78rem;
        color: var(--brand-navy);
        white-space: nowrap;
      }

      .proof-pill strong {
        font-weight: 700;
      }

      .proof-check {
        flex-shrink: 0;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--brand-success);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .proof-check svg {
        color: #fff;
      }

      /* ──────────────── CALCULADORA ──────────────── */
      .calc-wrapper {
        margin-top: 1.5rem;
        width: 100%;
        max-width: 520px;
        background: #f6f9fd;
        border: 1.5px solid #dde5ef;
        border-radius: 1rem;
        padding: 1.25rem;
        animation: fadeUp 0.55s ease 0.48s both;
      }

      .calc-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--brand-navy);
        text-transform: uppercase;
        letter-spacing: 0.04em;
        margin-bottom: 1rem;
      }

      .calc-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
        margin-bottom: 0.6rem;
      }

      .calc-row-full {
        grid-template-columns: 1fr;
      }

      .calc-field {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
      }

      .calc-label {
        font-size: 0.72rem;
        font-weight: 600;
        color: var(--brand-navy);
      }

      .calc-input {
        width: 100%;
        border: 1.5px solid #e2e8f0;
        border-radius: 0.6rem;
        background: #fff;
        padding: 0.55rem 0.7rem;
        font-size: 0.82rem;
        color: var(--brand-navy);
        font-family: inherit;
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
      }

      .calc-input:focus {
        outline: none;
        border-color: var(--brand-yellow);
        box-shadow: 0 0 0 3px rgba(255, 205, 0, 0.2);
      }

      /* remove number arrows */
      .calc-input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
      }

      .calc-input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
      }

      .calc-input[type="number"] {
        -moz-appearance: textfield;
        appearance: textfield;
      }

      .calc-carriers-label {
        font-size: 0.72rem;
        font-weight: 600;
        color: var(--brand-navy);
        margin: 0.85rem 0 0.5rem;
        text-align: center;
      }

      .calc-carriers {
        display: flex;
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: center;
      }

      .carrier-card {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 42px;
        border: 1.5px solid #e2e8f0;
        border-radius: 0.6rem;
        background: #fff;
        padding: 0.3rem 0.4rem;
      }

      .carrier-card img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
      }

      .carrier-card img.carrier-correios {
        max-width: 92%;
        max-height: 88%;
        transform: none;
      }

      .calc-btn {
        margin-top: 1rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: var(--brand-navy);
        color: #fff;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        padding: 0.75rem 1rem;
        border: none;
        border-radius: 0.7rem;
        cursor: pointer;
        font-family: inherit;
        transition:
          background 0.2s,
          transform 0.15s;
      }

      .calc-btn:hover {
        background: #1e3152;
        transform: translateY(-1px);
      }

      .calc-btn:active {
        transform: translateY(0);
      }

      .calc-btn:disabled {
        opacity: 0.65;
        cursor: not-allowed;
        transform: none;
      }

      /* Botão mobile CTA */
      .mobile-cta {
        display: none;
        width: 100%;
        margin-top: 1rem;
        background: var(--brand-yellow-bright);
        color: var(--brand-navy);
        font-size: 0.95rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        padding: 1rem;
        border: none;
        border-radius: 0.7rem;
        cursor: pointer;
        font-family: inherit;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        box-shadow: 0 4px 16px rgba(255, 205, 0, 0.4);
        transition:
          background 0.2s,
          transform 0.15s;
        text-decoration: none;
      }

      .mobile-cta:hover {
        background: #f5e400;
        transform: translateY(-1px);
      }

      .mobile-cta:active {
        transform: translateY(0);
      }

      @media (max-width: 1023px) {
        .mobile-cta {
          display: flex;
        }
      }

      /* Resultado ranking */
      .calc-result {
        overflow: hidden;
        max-height: 0;
        margin-top: 0;
        opacity: 0;
        transition:
          max-height 0.4s ease,
          margin-top 0.3s ease,
          opacity 0.3s ease;
      }

      .calc-result.visible {
        max-height: 800px;
        margin-top: 0.875rem;
        opacity: 1;
      }

      .result-table-header {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.25rem;
        padding: 0.4rem 0.6rem;
        background: var(--brand-navy);
        border-radius: 0.6rem 0.6rem 0 0;
        font-size: 0.7rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.75);
        text-transform: uppercase;
        letter-spacing: 0.04em;
      }

      .result-table-header span:not(:first-child) {
        text-align: center;
      }

      .result-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.25rem;
        padding: 0.5rem 0.6rem;
        border-bottom: 1px solid #eef2f7;
        align-items: center;
        background: #fff;
        transition: background 0.15s;
      }

      .result-row:hover {
        background: #f6f9fd;
      }

      .result-row:last-child {
        border-radius: 0 0 0.6rem 0.6rem;
        border-bottom: none;
      }

      .result-row.rank-1 {
        background: #fffbea;
      }

      .result-carrier-name {
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--brand-navy);
        display: flex;
        align-items: center;
        gap: 0.3rem;
      }

      .rank-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #e2e8f0;
        font-size: 0.62rem;
        font-weight: 800;
        color: var(--brand-navy);
        flex-shrink: 0;
      }

      .rank-1 .rank-badge {
        background: var(--brand-yellow-bright);
      }

      .result-price {
        font-size: 0.82rem;
        font-weight: 800;
        color: var(--brand-navy);
        text-align: center;
      }

      .result-deadline {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--brand-gray-text);
        text-align: center;
      }

      .result-highlights {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-top: 0.6rem;
      }

      .result-highlight {
        border-radius: 0.7rem;
        padding: 0.75rem 0.6rem;
        text-align: center;
      }

      .highlight-price {
        background: var(--brand-navy);
        color: #fff;
      }

      .highlight-deadline {
        background: var(--brand-yellow-bright);
        color: var(--brand-navy);
      }

      .highlight-icon {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
      }

      .highlight-label {
        font-size: 0.62rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        opacity: 0.75;
      }

      .highlight-carrier {
        font-size: 0.78rem;
        font-weight: 700;
        margin-top: 0.15rem;
      }

      .highlight-value {
        font-size: 1rem;
        font-weight: 900;
        margin-top: 0.1rem;
      }

      .calc-result-note {
        font-size: 0.65rem;
        color: var(--brand-gray-text);
        text-align: center;
        margin-top: 0.6rem;
        line-height: 1.4;
      }

      /* ── CARD GUARDA-CHUVA + MISSÃO ── */
      .umbrella-card {
        position: relative;
        overflow: hidden;
        border-radius: 1.25rem;
        background: var(--brand-navy);
        padding: 1.25rem 1.5rem 1.75rem;
        margin-top: 1rem;
        text-align: center;
        animation: fadeUp 0.6s ease 0.3s both;
      }

      .umbrella-bg-circle {
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        width: 320px;
        height: 220px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 199, 0, 0.08) 0%, transparent 70%);
        pointer-events: none;
      }

      .umbrella-content {
        position: relative;
        z-index: 1;
      }

      /* Logo destaque no card missão */
      .brand-logo-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1.5rem 0 1rem;
      }

      .brand-logo-img {
        width: 160px;
        height: auto;
      }

      .brand-logo-divider {
        width: 48px;
        height: 3px;
        background: var(--brand-yellow-bright);
        border-radius: 999px;
        margin: 0 auto 1.25rem;
      }

      /* Divisor missão */
      .mission-divider {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
      }

      .mission-divider-line {
        flex: 1;
        height: 1px;
        background: rgba(255, 255, 255, 0.15);
      }

      .mission-divider-label {
        font-size: 0.65rem;
        font-weight: 800;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--brand-yellow-bright);
        background: rgba(255, 241, 18, 0.1);
        border: 1px solid rgba(255, 241, 18, 0.25);
        padding: 0.2rem 0.75rem;
        border-radius: 999px;
        white-space: nowrap;
      }

      /* Texto da missão */
      .mission-text {
        font-size: 0.92rem;
        font-weight: 700;
        color: #fff;
        line-height: 1.55;
        text-transform: uppercase;
        letter-spacing: 0.02em;
      }

      /* ──────────────── ANIMAÇÕES DIRECIONAIS HEADLINE ──────────────── */
      @keyframes slideFromLeft {
        from {
          opacity: 0;
          transform: translateX(-60px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      @keyframes slideFromRight {
        from {
          opacity: 0;
          transform: translateX(60px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      @keyframes slideFromRightBig {
        from {
          opacity: 0;
          transform: translateX(80px) scale(0.95);
        }
        to {
          opacity: 1;
          transform: translateX(0) scale(1);
        }
      }

      @keyframes dropBounce {
        0% {
          opacity: 0;
          transform: translateY(-55px) scale(1.08);
        }
        60% {
          opacity: 1;
          transform: translateY(6px) scale(1.02);
        }
        80% {
          transform: translateY(-3px) scale(0.99);
        }
        100% {
          opacity: 1;
          transform: translateY(0) scale(1);
        }
      }

      @keyframes floatGentle {
        0% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-5px);
        }
        100% {
          transform: translateY(0px);
        }
      }

      /* "frete um lucro" — cai e depois flutua suavemente */
      .tag-yellow-pulse {
        white-space: normal;
        animation:
          dropBounce 0.85s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both,
          floatGentle 1.2s ease-in-out 2.7s 1;
        display: inline-block;
      }

      /* H1 — linhas individuais */
      .line-plain.anim-left {
        animation: slideFromLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
      }
      .line-badge.anim-right {
        animation: slideFromRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
      }

      /* delay escalonado H1 */
      .h1-l1 {
        animation-delay: 0.08s;
      }
      .h1-l2 {
        animation-delay: 0.32s;
      }
      .h1-l3 {
        animation-delay: 0.56s;
      }

      /* Divisor */
      .hero-rule {
        animation: fadeUp 0.6s ease 0.82s both;
      }

      /* Subline — cada sl-row com direção própria */
      .sl-from-right {
        animation: slideFromRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
      }
      .sl-from-right-big {
        animation: dropBounce 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
      }
      .sl-from-left {
        animation: slideFromLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
      }

      /* delays subline */
      .sl-d1 {
        animation-delay: 1s;
      } /* "Faça do"          — direita */
      .sl-d2 {
        animation-delay: 1.2s;
      } /* "frete um lucro"   — queda com bounce */
      .sl-d3 {
        animation-delay: 1.42s;
      } /* "Utilizando..."    — esquerda */
      .sl-d4 {
        animation-delay: 1.64s;
      } /* "COMUNIDADE..."    — direita */

      /* ──────────────── ANIMAÇÕES ──────────────── */
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(18px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* ──────────────── VSL SECTION ──────────────── */
      .vsl-section {
        position: relative;
        padding: 5rem 0 5.5rem;
        background: var(--brand-navy);
        text-align: center;
        overflow: hidden;
        z-index: 1;
      }

      /* Overlay semitransparente para deixar partículas visíveis por baixo */
      .vsl-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(44, 67, 100, 0.82);
        z-index: 0;
        pointer-events: none;
      }

      /* Linha decorativa superior em amarelo */
      .vsl-section::after {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--brand-yellow-bright);
        border-radius: 999px;
      }

      .vsl-inner {
        position: relative;
        z-index: 1;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
      }

      /* Eyebrow da VSL */
      .vsl-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 241, 18, 0.12);
        border: 1px solid rgba(255, 241, 18, 0.3);
        color: var(--brand-yellow-bright);
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 0.35rem 1rem;
        border-radius: 999px;
        margin-bottom: 1.25rem;
      }

      .vsl-eyebrow-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--brand-yellow-bright);
        flex-shrink: 0;
      }

      /* Divisor VSL */
      .vsl-rule {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin: 1.1rem auto 1rem;
        width: 100%;
        max-width: 420px;
      }

      .vsl-rule-line {
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.18) 100%);
      }

      .vsl-rule-line.rev {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.03) 100%);
      }

      .vsl-rule-diamonds {
        display: flex;
        gap: 6px;
        align-items: center;
      }

      .vsl-rule-diamonds span {
        display: block;
        background: var(--brand-yellow-bright);
        transform: rotate(45deg);
      }

      .vsl-rule-diamonds span:nth-child(1),
      .vsl-rule-diamonds span:nth-child(3) {
        width: 7px;
        height: 7px;
        opacity: 0.5;
        background: #fff;
      }

      .vsl-rule-diamonds span:nth-child(2) {
        width: 11px;
        height: 11px;
        background: var(--brand-yellow-bright);
      }

      /* Subtítulo VSL */
      .vsl-subtitle {
        font-size: 1rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.6);
        max-width: 520px;
        margin: 0 auto 2.5rem;
        line-height: 1.6;
      }

      /* Título VSL */
      .vsl-title {
        font-size: clamp(1.6rem, 3.5vw, 2.4rem);
        font-weight: 800;
        line-height: 1.15;
        color: #fff;
        max-width: 680px;
        margin: 0 auto 2.5rem;
      }

      .vsl-title .vsl-highlight {
        background: var(--brand-yellow-bright);
        color: var(--brand-navy);
        padding: 0.01em 0.3em;
        border-radius: 0.4rem;
        line-height: 1;
        display: inline;
      }

      /* Container do vídeo */
      .vsl-video-wrap {
        position: relative;
        max-width: 860px;
        margin: 0 auto;
      }

      /* Brilho amarelo atrás do vídeo */
      .vsl-video-glow {
        position: absolute;
        inset: -18px;
        border-radius: 1.5rem;
        background: radial-gradient(ellipse at center, rgba(255, 205, 0, 0.18) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
      }

      .vsl-container {
        position: relative;
        z-index: 1;
        aspect-ratio: 16 / 9;
        border-radius: 1.1rem;
        overflow: hidden;
        box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
        border: 2px solid rgba(255, 255, 255, 0.08);
      }

      .vsl-container iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
      }

      /* CTA abaixo do vídeo */
      .vsl-cta-wrap {
        margin-top: 2.25rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
      }

      .vsl-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        background: var(--brand-yellow-bright);
        color: var(--brand-navy);
        font-weight: 800;
        font-size: 0.95rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        padding: 0.95rem 2.25rem;
        border-radius: 0.75rem;
        border: none;
        cursor: pointer;
        text-decoration: none;
        font-family: inherit;
        transition:
          transform 0.2s,
          box-shadow 0.2s,
          background 0.2s;
        box-shadow: 0 4px 20px rgba(255, 241, 18, 0.35);
      }

      .vsl-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(255, 241, 18, 0.45);
        background: #ffe600;
      }

      .vsl-btn-note {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.45);
        letter-spacing: 0.03em;
      }

      /* Animações de entrada VSL */
      .vsl-anim {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }

      .vsl-anim.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ──────────────── STATS SECTION ──────────────── */
      .stats-section {
        position: relative;
        padding: 5rem 0 5.5rem;
        background: #fff;
        overflow: hidden;
        z-index: 1;
      }

      .stats-inner {
        position: relative;
        z-index: 1;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
      }

      .stats-title {
        font-size: clamp(1.5rem, 3vw, 2.1rem);
        font-weight: 800;
        color: var(--brand-navy);
        line-height: 1.15;
      }

      .stats-rule {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin: 1.1rem auto 1rem;
        width: 100%;
        max-width: 420px;
        justify-content: center;
      }

      .stats-rule-line {
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, rgba(44, 67, 100, 0.03) 0%, rgba(44, 67, 100, 0.18) 100%);
      }

      .stats-rule-line.rev {
        background: linear-gradient(90deg, rgba(44, 67, 100, 0.18) 0%, rgba(44, 67, 100, 0.03) 100%);
      }

      .stats-rule-diamonds {
        display: flex;
        gap: 6px;
        align-items: center;
      }

      .stats-rule-diamonds span {
        display: block;
        transform: rotate(45deg);
      }

      .stats-rule-diamonds span:nth-child(1),
      .stats-rule-diamonds span:nth-child(3) {
        width: 7px;
        height: 7px;
        background: var(--brand-navy);
        opacity: 0.35;
      }

      .stats-rule-diamonds span:nth-child(2) {
        width: 11px;
        height: 11px;
        background: var(--brand-navy);
      }

      .stats-subtitle {
        font-size: 1rem;
        font-weight: 500;
        color: var(--brand-gray-text);
        max-width: 480px;
        margin: 0 auto 3rem;
        line-height: 1.6;
      }

      .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
      }

      @media (min-width: 1024px) {
        .stats-grid {
          grid-template-columns: repeat(4, 1fr);
          gap: 1.5rem;
        }
      }

      .stat-card {
        position: relative;
        background: #fff;
        border-radius: 1.1rem;
        padding: 1.75rem 1.25rem;
        text-align: center;
        border: 1.5px solid #e8eff7;
        box-shadow: var(--shadow-card);
        transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
        overflow: hidden;
      }

      .stat-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        border-radius: 1.1rem 1.1rem 0 0;
      }

      .stat-card.navy-accent::before {
        background: var(--brand-navy);
      }
      .stat-card.yellow-accent::before {
        background: var(--brand-yellow-bright);
      }

      .stat-card:hover {
        box-shadow: var(--shadow-card-hover);
      }

      .stat-icon {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 0.6rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0.75rem;
      }

      .stat-icon.navy {
        background: rgba(44, 67, 100, 0.08);
        color: var(--brand-navy);
      }
      .stat-icon.yellow {
        background: rgba(255, 205, 0, 0.15);
        color: var(--brand-navy);
      }

      .stat-number {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
        font-weight: 900;
        line-height: 1;
        letter-spacing: -0.02em;
      }

      .stat-number.navy {
        color: var(--brand-navy);
      }
      .stat-number.yellow {
        color: #e6a800;
      }

      .stat-label {
        margin-top: 0.5rem;
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--brand-gray-text);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        line-height: 1.4;
      }

      /* Animação entrada */
      .stat-card.stats-anim {
        opacity: 0;
        transform: translateY(30px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease,
          box-shadow 0.3s ease;
      }

      .stat-card.stats-anim.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ──────────────── STEPS SECTION ──────────────── */
      .steps-section {
        position: relative;
        padding: 5rem 0 5.5rem;
        background: #f8fafc;
        overflow: hidden;
        z-index: 1;
      }

      .steps-inner {
        position: relative;
        z-index: 1;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
      }

      .steps-title {
        font-size: clamp(1.5rem, 3vw, 2.1rem);
        font-weight: 800;
        color: var(--brand-navy);
        line-height: 1.15;
      }

      .steps-rule {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin: 1.1rem auto 1rem;
        width: 100%;
        max-width: 420px;
        justify-content: center;
      }

      .steps-rule-line {
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, rgba(44, 67, 100, 0.03) 0%, rgba(44, 67, 100, 0.18) 100%);
      }

      .steps-rule-line.rev {
        background: linear-gradient(90deg, rgba(44, 67, 100, 0.18) 0%, rgba(44, 67, 100, 0.03) 100%);
      }

      .steps-rule-diamonds {
        display: flex;
        gap: 6px;
        align-items: center;
      }

      .steps-rule-diamonds span {
        display: block;
        transform: rotate(45deg);
      }

      .steps-rule-diamonds span:nth-child(1),
      .steps-rule-diamonds span:nth-child(3) {
        width: 7px;
        height: 7px;
        background: var(--brand-navy);
        opacity: 0.35;
      }

      .steps-rule-diamonds span:nth-child(2) {
        width: 11px;
        height: 11px;
        background: var(--brand-navy);
      }

      .steps-subtitle {
        font-size: 1rem;
        font-weight: 500;
        color: var(--brand-gray-text);
        max-width: 480px;
        margin: 0 auto 3rem;
        line-height: 1.6;
      }

      /* Grid com linha conectora */
      .steps-grid {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }

      @media (min-width: 1024px) {
        .steps-grid {
          grid-template-columns: repeat(4, 1fr);
          gap: 1.5rem;
        }

        /* Linha conectora entre cards */
        .steps-grid::before {
          content: "";
          position: absolute;
          top: 2.75rem;
          left: calc(12.5% + 1.5rem);
          right: calc(12.5% + 1.5rem);
          height: 2px;
          background: linear-gradient(
            90deg,
            rgba(44, 67, 100, 0.12) 0%,
            rgba(255, 205, 0, 0.5) 50%,
            rgba(44, 67, 100, 0.12) 100%
          );
          z-index: 0;
          pointer-events: none;
        }
      }

      .step-card {
        position: relative;
        z-index: 1;
        background: #fff;
        border-radius: 1.1rem;
        padding: 1.75rem 1.25rem 1.5rem;
        border: 1.5px solid #e8eff7;
        box-shadow: var(--shadow-card);
        text-align: center;
        transition:
          transform 0.3s ease,
          box-shadow 0.3s ease,
          border-color 0.3s ease;
      }

      .step-card:hover {
        box-shadow: var(--shadow-card-hover);
        border-color: var(--brand-yellow);
      }

      .step-badge {
        width: 3rem;
        height: 3rem;
        border-radius: 0.75rem;
        background: var(--brand-navy);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        position: relative;
        z-index: 1;
        box-shadow: 0 4px 12px rgba(44, 67, 100, 0.25);
        transition: background 0.3s ease;
      }

      .step-card:hover .step-badge {
        background: var(--brand-yellow-bright);
        color: var(--brand-navy);
      }

      .step-number-tag {
        position: absolute;
        top: -0.5rem;
        right: -0.5rem;
        width: 1.25rem;
        height: 1.25rem;
        border-radius: 50%;
        background: var(--brand-yellow-bright);
        color: var(--brand-navy);
        font-size: 0.6rem;
        font-weight: 900;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .step-title {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--brand-navy);
        margin-bottom: 0.4rem;
        line-height: 1.3;
      }

      .step-desc {
        font-size: 0.82rem;
        color: var(--brand-gray-text);
        line-height: 1.6;
      }

      /* Animação entrada */
      .step-anim {
        opacity: 0;
        transform: translateY(28px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }

      .step-anim.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ──────────────── FEATURES 360 SECTION ──────────────── */
      .features-360-section {
        position: relative;
        padding: 5rem 0 5.5rem;
        background: var(--brand-navy);
        overflow: hidden;
        z-index: 1;
      }

      .features-360-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(44, 67, 100, 0.8);
        z-index: 0;
        pointer-events: none;
      }

      .features-360-inner {
        position: relative;
        z-index: 1;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
      }

      .features-360-title {
        font-size: clamp(1.5rem, 3vw, 2.1rem);
        font-weight: 800;
        color: #fff;
        line-height: 1.15;
      }

      .features-360-rule {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin: 1.1rem auto 1rem;
        width: 100%;
        max-width: 420px;
        justify-content: center;
      }

      .features-360-rule-line {
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.18) 100%);
      }

      .features-360-rule-line.rev {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.03) 100%);
      }

      .features-360-rule-diamonds {
        display: flex;
        gap: 6px;
        align-items: center;
      }

      .features-360-rule-diamonds span {
        display: block;
        transform: rotate(45deg);
      }

      .features-360-rule-diamonds span:nth-child(1),
      .features-360-rule-diamonds span:nth-child(3) {
        width: 7px;
        height: 7px;
        background: #fff;
        opacity: 0.4;
      }

      .features-360-rule-diamonds span:nth-child(2) {
        width: 11px;
        height: 11px;
        background: var(--brand-yellow-bright);
      }

      .features-360-subtitle {
        font-size: 1rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.55);
        max-width: 560px;
        margin: 0 auto 3rem;
        line-height: 1.6;
      }

      .features-360-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
      }

      @media (min-width: 1024px) {
        .features-360-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 1.5rem;
        }
      }

      .feature-360-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 1.1rem;
        padding: 1.75rem 1.25rem;
        text-align: left;
        transition:
          transform 0.3s ease,
          background 0.3s ease,
          border-color 0.3s ease;
      }

      .feature-360-card:hover {
        background: rgba(255, 255, 255, 0.09);
        border-color: rgba(255, 205, 0, 0.4);
      }

      .feature-360-card.highlight-card {
        background: rgba(255, 205, 0, 0.1);
        border-color: rgba(255, 205, 0, 0.35);
      }

      .feature-360-card.highlight-card:hover {
        background: rgba(255, 205, 0, 0.15);
        border-color: rgba(255, 205, 0, 0.6);
      }

      .feature-360-icon {
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        transition: background 0.3s ease;
      }

      .feature-360-card.highlight-card .feature-360-icon {
        background: rgba(255, 205, 0, 0.25);
        color: var(--brand-yellow-bright);
      }

      .feature-360-card:hover .feature-360-icon {
        background: rgba(255, 205, 0, 0.2);
        color: var(--brand-yellow-bright);
      }

      .feature-360-title {
        font-size: 0.95rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.4rem;
      }

      .feature-360-desc {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.6;
      }

      /* Animação entrada */
      .f360-anim {
        opacity: 0;
        transform: translateY(28px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }

      .f360-anim.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ──────────────── INTEGRATIONS SECTION ──────────────── */
      .integrations-section {
        position: relative;
        padding: 5rem 0 5.5rem;
        background: var(--brand-navy);
        overflow: hidden;
        z-index: 1;
      }

      .integrations-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(44, 67, 100, 0.8);
        z-index: 0;
        pointer-events: none;
      }

      .integrations-inner {
        position: relative;
        z-index: 1;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
      }

      .integrations-title {
        font-size: clamp(1.5rem, 3vw, 2.1rem);
        font-weight: 800;
        color: #fff;
        line-height: 1.15;
      }

      .integrations-rule {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin: 1.1rem auto 2.5rem;
        width: 100%;
        max-width: 420px;
        justify-content: center;
      }

      .integrations-rule-line {
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.18) 100%);
      }

      .integrations-rule-line.rev {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.03) 100%);
      }

      .integrations-rule-diamonds {
        display: flex;
        gap: 6px;
        align-items: center;
      }

      .integrations-rule-diamonds span {
        display: block;
        transform: rotate(45deg);
      }

      .integrations-rule-diamonds span:nth-child(1),
      .integrations-rule-diamonds span:nth-child(3) {
        width: 7px;
        height: 7px;
        background: #fff;
        opacity: 0.4;
      }

      .integrations-rule-diamonds span:nth-child(2) {
        width: 11px;
        height: 11px;
        background: var(--brand-yellow-bright);
      }

      /* Layout dois cards lado a lado */
      .integrations-flex {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }

      @media (min-width: 1024px) {
        .integrations-flex {
          flex-direction: row;
          gap: 2rem;
          align-items: flex-start;
        }
      }

      .integrations-card {
        background: #fff;
        border-radius: 1.25rem;
        padding: 2rem 1.75rem;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
        text-align: center;
      }

      .integrations-card-title {
        font-size: 1rem;
        font-weight: 800;
        color: var(--brand-navy);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 1.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
      }

      .integrations-card-title::before,
      .integrations-card-title::after {
        content: "";
        flex: 1;
        height: 1.5px;
        background: linear-gradient(90deg, transparent, rgba(44, 67, 100, 0.15));
      }

      .integrations-card-title::after {
        background: linear-gradient(90deg, rgba(44, 67, 100, 0.15), transparent);
      }

      .card-integrations {
        flex: 1.5;
      }
      .card-partners {
        flex: 1;
      }

      /* Grid de logos */
      .logo-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem 1rem;
      }

      @media (min-width: 768px) {
        .card-integrations .logo-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }

      .logo-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 0.5rem;
        border-radius: 0.75rem;
        border: 1px solid #f1f5f9;
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
      }

      .logo-item:hover {
        border-color: rgba(44, 67, 100, 0.2);
        box-shadow: 0 2px 12px rgba(44, 67, 100, 0.08);
      }

      .logo-img-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 3.5rem;
        width: 100%;
      }

      .logo-img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
      }

      .logo-badge {
        font-size: 0.6rem;
        font-weight: 800;
        color: var(--brand-navy);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        background: rgba(255, 205, 0, 0.2);
        border: 1px solid rgba(255, 205, 0, 0.4);
        padding: 0.1rem 0.5rem;
        border-radius: 999px;
        white-space: nowrap;
      }

      .partners-note {
        margin-top: 1.25rem;
        font-size: 0.72rem;
        font-weight: 600;
        color: var(--brand-gray-text);
        text-align: center;
        padding-top: 1rem;
        border-top: 1px solid #f1f5f9;
      }

      /* Animação entrada */
      .int-anim {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }

      .int-anim.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ──────────────── TESTIMONIALS SECTION ──────────────── */
      .testimonials-section {
        position: relative;
        padding: 5rem 0 5.5rem;
        background: #f8fafc;
        overflow: hidden;
        z-index: 1;
      }

      .testimonials-inner {
        position: relative;
        z-index: 1;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
      }

      .testimonials-title-top {
        font-size: clamp(1.5rem, 3vw, 2.1rem);
        font-weight: 800;
        color: var(--brand-navy);
        text-transform: uppercase;
        line-height: 1;
        margin-bottom: 0.3rem;
      }

      .testimonials-title-bottom {
        display: inline-block;
        background: var(--brand-yellow-bright);
        color: var(--brand-navy);
        font-size: clamp(1.5rem, 3vw, 2.1rem);
        font-weight: 800;
        text-transform: uppercase;
        padding: 0.1em 0.4em;
        border-radius: 0.5rem;
        white-space: nowrap;
      }

      .testimonials-rule {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin: 1.25rem auto 2.5rem;
        width: 100%;
        max-width: 420px;
        justify-content: center;
      }

      .testimonials-rule-line {
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, rgba(44, 67, 100, 0.03) 0%, rgba(44, 67, 100, 0.18) 100%);
      }

      .testimonials-rule-line.rev {
        background: linear-gradient(90deg, rgba(44, 67, 100, 0.18) 0%, rgba(44, 67, 100, 0.03) 100%);
      }

      .testimonials-rule-diamonds {
        display: flex;
        gap: 6px;
        align-items: center;
      }

      .testimonials-rule-diamonds span {
        display: block;
        transform: rotate(45deg);
      }

      .testimonials-rule-diamonds span:nth-child(1),
      .testimonials-rule-diamonds span:nth-child(3) {
        width: 7px;
        height: 7px;
        background: var(--brand-navy);
        opacity: 0.35;
      }

      .testimonials-rule-diamonds span:nth-child(2) {
        width: 11px;
        height: 11px;
        background: var(--brand-navy);
      }

      .testimonials-grid {
        display: grid;
        gap: 1.5rem;
        justify-items: center;
      }

      @media (min-width: 640px) {
        .testimonials-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (min-width: 1024px) {
        .testimonials-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 2rem;
        }
      }

      .testimonial-item {
        width: 100%;
        max-width: 320px;
      }

      .video-thumb-btn {
        position: relative;
        width: 100%;
        aspect-ratio: 9 / 16;
        border-radius: 1rem;
        background: var(--brand-navy);
        overflow: hidden;
        box-shadow: var(--shadow-card);
        cursor: pointer;
        border: none;
        padding: 0;
        display: block;
        transition: box-shadow 0.3s;
      }

      .video-thumb-btn:hover {
        box-shadow: var(--shadow-card-hover);
      }

      .video-thumb-btn img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .video-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.3);
        transition: background 0.2s;
      }

      .video-thumb-btn:hover .video-overlay {
        background: rgba(0, 0, 0, 0.45);
      }

      .play-btn {
        width: 4rem;
        height: 4rem;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.95);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s;
      }

      .video-thumb-btn:hover .play-btn {
        transform: scale(1.1);
      }

      .play-icon {
        color: var(--brand-navy);
      }

      .testimonial-info {
        margin-top: 0.85rem;
        text-align: center;
      }

      .testimonial-name {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--brand-navy);
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }

      .star-icon {
        fill: var(--brand-yellow);
        color: var(--brand-yellow);
      }

      .testimonial-link {
        margin-top: 0.2rem;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        font-size: 0.78rem;
        color: var(--brand-gray-text);
        text-decoration: none;
        transition: color 0.2s;
      }

      .testimonial-link:hover {
        color: var(--brand-navy);
      }

      /* Modal de vídeo */
      .modal-video {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 100;
        background: rgba(0, 0, 0, 0.85);
        align-items: center;
        justify-content: center;
        padding: 1rem;
      }

      .modal-video.open {
        display: flex;
      }

      .modal-content {
        position: relative;
        width: 100%;
        max-width: 860px;
        aspect-ratio: 9 / 16;
        border-radius: 1rem;
        overflow: hidden;
        background: #000;
      }

      @media (min-width: 640px) {
        .modal-content {
          aspect-ratio: 16 / 9;
        }
      }

      .modal-iframe {
        width: 100%;
        height: 100%;
        border: none;
      }

      .close-modal {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        z-index: 10;
        background: rgba(255, 255, 255, 0.15);
        border: none;
        border-radius: 50%;
        width: 2.25rem;
        height: 2.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #fff;
        transition: background 0.2s;
      }

      .close-modal:hover {
        background: rgba(255, 255, 255, 0.25);
      }

      /* Animação entrada */
      .test-anim {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }

      .test-anim.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ──────────────── FORUM BANNER ──────────────── */
      .forum-section {
        position: relative;
        padding: 5rem 0 5.5rem;
        background: var(--brand-navy);
        overflow: hidden;
        z-index: 1;
      }

      .forum-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(44, 67, 100, 0.78);
        z-index: 0;
        pointer-events: none;
      }

      /* Orbes de brilho decorativos */
      .forum-glow-1 {
        position: absolute;
        top: -4rem;
        right: -4rem;
        width: 22rem;
        height: 22rem;
        border-radius: 50%;
        background: rgba(255, 205, 0, 0.12);
        filter: blur(64px);
        pointer-events: none;
      }

      .forum-glow-2 {
        position: absolute;
        bottom: -4rem;
        left: -4rem;
        width: 18rem;
        height: 18rem;
        border-radius: 50%;
        background: rgba(255, 171, 42, 0.1);
        filter: blur(64px);
        pointer-events: none;
      }

      .forum-inner {
        position: relative;
        z-index: 1;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
      }

      .forum-grid {
        display: grid;
        gap: 2.5rem;
        align-items: center;
      }

      @media (min-width: 1024px) {
        .forum-grid {
          grid-template-columns: 3fr 2fr;
          gap: 3rem;
        }
      }

      .forum-title {
        font-size: clamp(1.6rem, 3.5vw, 2.6rem);
        font-weight: 800;
        color: #fff;
        line-height: 1.2;
      }

      .forum-title .forum-highlight {
        display: inline-block;
        background: var(--brand-yellow-bright);
        color: var(--brand-navy);
        padding: 0.05em 0.3em;
        border-radius: 0.45rem;
        white-space: nowrap;
      }

      .forum-desc {
        margin-top: 1rem;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        line-height: 1.7;
        max-width: 480px;
      }

      .forum-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.75rem;
        background: var(--brand-yellow-bright);
        color: var(--brand-navy);
        font-weight: 800;
        font-size: 0.9rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        padding: 0.9rem 2rem;
        border-radius: 0.75rem;
        border: none;
        text-decoration: none;
        font-family: inherit;
        transition:
          background 0.2s,
          box-shadow 0.2s;
        box-shadow: 0 4px 18px rgba(255, 241, 18, 0.3);
      }

      .forum-btn:hover {
        background: #ffe600;
        box-shadow: 0 6px 24px rgba(255, 241, 18, 0.45);
      }

      /* Lado direito — card do evento */
      .forum-event-card {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
      }

      .forum-logo {
        max-width: 260px;
        height: auto;
        display: block;
        margin: 0 auto;
      }

      .forum-card-inner {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 1rem;
        padding: 1.5rem;
        backdrop-filter: blur(8px);
      }

      .forum-sponsor-label {
        font-size: 0.65rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--brand-yellow-bright);
        margin-bottom: 0.5rem;
      }

      .forum-event-title {
        font-size: 1.25rem;
        font-weight: 800;
        color: #fff;
        line-height: 1.25;
      }

      .forum-event-details {
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.8);
      }

      .forum-detail-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .forum-detail-icon {
        color: var(--brand-yellow-bright);
        flex-shrink: 0;
      }

      /* Animação entrada */
      .forum-anim {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }

      .forum-anim.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ──────────────── PLANS SECTION ──────────────── */
      .plans-section {
        position: relative;
        padding: 5rem 0 5.5rem;
        background: #f8fafc;
        overflow: hidden;
        z-index: 1;
      }

      .plans-inner {
        position: relative;
        z-index: 1;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
      }

      .plans-title {
        font-size: clamp(1.5rem, 3vw, 2.1rem);
        font-weight: 800;
        color: var(--brand-navy);
        line-height: 1.15;
      }

      .plans-rule {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin: 1.1rem auto 2.5rem;
        width: 100%;
        max-width: 420px;
        justify-content: center;
      }

      .plans-rule-line {
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, rgba(44, 67, 100, 0.03) 0%, rgba(44, 67, 100, 0.18) 100%);
      }

      .plans-rule-line.rev {
        background: linear-gradient(90deg, rgba(44, 67, 100, 0.18) 0%, rgba(44, 67, 100, 0.03) 100%);
      }

      .plans-rule-diamonds {
        display: flex;
        gap: 6px;
        align-items: center;
      }

      .plans-rule-diamonds span {
        display: block;
        transform: rotate(45deg);
      }

      .plans-rule-diamonds span:nth-child(1),
      .plans-rule-diamonds span:nth-child(3) {
        width: 7px;
        height: 7px;
        background: var(--brand-navy);
        opacity: 0.35;
      }

      .plans-rule-diamonds span:nth-child(2) {
        width: 11px;
        height: 11px;
        background: var(--brand-navy);
      }

      .plans-grid {
        display: grid;
        gap: 1.5rem;
        align-items: stretch;
      }

      @media (min-width: 1024px) {
        .plans-grid {
          grid-template-columns: repeat(3, 1fr);
          align-items: start;
        }
      }

      .plan-card {
        position: relative;
        background: #fff;
        border-radius: 1.1rem;
        padding: 1.75rem;
        border: 1.5px solid #e8eff7;
        box-shadow: var(--shadow-card);
        display: flex;
        flex-direction: column;
        text-align: left;
        transition: box-shadow 0.3s;
      }

      .plan-card:hover {
        box-shadow: var(--shadow-card-hover);
      }

      .plan-card.plan-featured {
        border: 2px solid var(--brand-yellow);
        box-shadow: 0 12px 40px -8px rgba(255, 205, 0, 0.35);
      }

      .plan-card.plan-featured:hover {
        box-shadow: 0 16px 48px -8px rgba(255, 205, 0, 0.5);
      }

      @media (min-width: 1024px) {
        .plan-card.plan-featured {
          transform: scale(1.04) translateY(-0.5rem);
        }
      }

      .plan-featured-badge {
        position: absolute;
        top: -0.85rem;
        left: 50%;
        transform: translateX(-50%);
        background: var(--brand-yellow-bright);
        color: var(--brand-navy);
        font-size: 0.7rem;
        font-weight: 800;
        padding: 0.25rem 1rem;
        border-radius: 999px;
        white-space: nowrap;
        letter-spacing: 0.04em;
      }

      .plan-tier {
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--brand-gray-text);
        margin-bottom: 0.4rem;
      }

      .plan-name {
        font-size: 1.5rem;
        font-weight: 900;
        color: var(--brand-navy);
        line-height: 1.1;
      }

      .plan-name-highlight {
        background: var(--brand-yellow-bright);
        color: var(--brand-navy);
        padding: 0.02em 0.25em;
        border-radius: 0.35rem;
      }

      .plan-price {
        font-size: 1.75rem;
        font-weight: 900;
        color: var(--brand-navy);
        margin: 0.4rem 0 1.25rem;
      }

      .plan-price-period {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--brand-gray-text);
        margin-left: 0.15rem;
      }

      .plan-divider {
        height: 1px;
        background: #e8eff7;
        margin-bottom: 1.25rem;
      }

      .plan-features {
        list-style: none;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
      }

      .plan-features li {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        font-size: 0.83rem;
        color: rgba(44, 67, 100, 0.85);
        line-height: 1.4;
      }

      .plan-check {
        flex-shrink: 0;
        margin-top: 1px;
        width: 1.1rem;
        height: 1.1rem;
      }

      .check-green {
        color: var(--brand-success);
      }
      .check-yellow {
        color: #e6a800;
      }

      .plan-cta-btn {
        display: block;
        width: 100%;
        margin-top: 1.5rem;
        padding: 0.85rem;
        border-radius: 0.75rem;
        border: none;
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        text-align: center;
        text-decoration: none;
        font-family: inherit;
        cursor: pointer;
        transition:
          background 0.2s,
          box-shadow 0.2s;
      }

      .plan-cta-outline {
        background: transparent;
        border: 2px solid #e2e8f0;
        color: var(--brand-navy);
      }

      .plan-cta-outline:hover {
        border-color: var(--brand-navy);
        background: #f8fafc;
      }

      .plan-cta-yellow {
        background: var(--brand-yellow-bright);
        color: var(--brand-navy);
        box-shadow: 0 4px 16px rgba(255, 241, 18, 0.3);
      }

      .plan-cta-yellow:hover {
        background: #ffe600;
        box-shadow: 0 6px 20px rgba(255, 241, 18, 0.45);
      }

      /* Animação */
      .plan-anim {
        opacity: 0;
        transform: translateY(28px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }

      .plan-anim.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ──────────────── FAQ SECTION ──────────────── */
      .faq-section {
        position: relative;
        padding: 5rem 0 5.5rem;
        background: #fff;
        z-index: 1;
      }

      .faq-inner {
        max-width: 780px;
        margin: 0 auto;
        padding: 0 1.5rem;
        text-align: center;
      }

      .faq-title {
        font-size: clamp(1.5rem, 3vw, 2.1rem);
        font-weight: 800;
        color: var(--brand-navy);
        line-height: 1.15;
      }

      .faq-rule {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin: 1.1rem auto 2.5rem;
        width: 100%;
        max-width: 420px;
        justify-content: center;
      }

      .faq-rule-line {
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, rgba(44, 67, 100, 0.03) 0%, rgba(44, 67, 100, 0.18) 100%);
      }

      .faq-rule-line.rev {
        background: linear-gradient(90deg, rgba(44, 67, 100, 0.18) 0%, rgba(44, 67, 100, 0.03) 100%);
      }

      .faq-rule-diamonds {
        display: flex;
        gap: 6px;
        align-items: center;
      }

      .faq-rule-diamonds span {
        display: block;
        transform: rotate(45deg);
      }

      .faq-rule-diamonds span:nth-child(1),
      .faq-rule-diamonds span:nth-child(3) {
        width: 7px;
        height: 7px;
        background: var(--brand-navy);
        opacity: 0.35;
      }

      .faq-rule-diamonds span:nth-child(2) {
        width: 11px;
        height: 11px;
        background: var(--brand-navy);
      }

      .faq-list {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        text-align: left;
      }

      .faq-item {
        background: #fff;
        border: 1.5px solid #e8eff7;
        border-radius: 0.9rem;
        overflow: hidden;
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
      }

      .faq-item.open {
        border-color: rgba(44, 67, 100, 0.3);
        box-shadow: var(--shadow-card);
      }

      .faq-question-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1.1rem 1.25rem;
        background: none;
        border: none;
        cursor: pointer;
        text-align: left;
        font-family: inherit;
      }

      .faq-question-text {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--brand-navy);
        line-height: 1.4;
      }

      .faq-chevron {
        flex-shrink: 0;
        width: 1.1rem;
        height: 1.1rem;
        color: var(--brand-gray-text);
        transition: transform 0.3s ease;
      }

      .faq-item.open .faq-chevron {
        transform: rotate(180deg);
        color: var(--brand-navy);
      }

      .faq-answer {
        display: none;
        padding: 0 1.25rem 1.1rem;
        font-size: 0.85rem;
        color: var(--brand-gray-text);
        line-height: 1.7;
        border-top: 1px solid #f1f5f9;
        padding-top: 0.85rem;
      }

      .faq-item.open .faq-answer {
        display: block;
      }

      /* Animação entrada */
      .faq-anim {
        opacity: 0;
        transform: translateY(20px);
        transition:
          opacity 0.5s ease,
          transform 0.5s ease;
      }

      .faq-anim.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ──────────────── FINAL CTA ──────────────── */
      .final-cta-section {
        position: relative;
        padding: 5rem 0;
        background: var(--brand-navy);
        overflow: hidden;
        z-index: 1;
        text-align: center;
      }

      .final-cta-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(44, 67, 100, 0.8);
        z-index: 0;
        pointer-events: none;
      }

      .final-cta-inner {
        position: relative;
        z-index: 1;
        max-width: 680px;
        margin: 0 auto;
        padding: 0 1.5rem;
      }

      .final-cta-title {
        font-size: clamp(1.6rem, 3.5vw, 2.6rem);
        font-weight: 900;
        color: #fff;
        line-height: 1.15;
      }

      .final-cta-highlight {
        background: var(--brand-yellow-bright);
        color: var(--brand-navy);
        padding: 0.02em 0.25em;
        border-radius: 0.4rem;
      }

      .final-cta-desc {
        margin-top: 0.85rem;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.6;
      }

      .final-cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        margin-top: 2rem;
        background: var(--brand-yellow-bright);
        color: var(--brand-navy);
        font-weight: 800;
        font-size: 1rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        padding: 1rem 2.5rem;
        border-radius: 0.75rem;
        border: none;
        text-decoration: none;
        font-family: inherit;
        transition:
          background 0.2s,
          box-shadow 0.2s;
        box-shadow: 0 4px 20px rgba(255, 241, 18, 0.35);
      }

      .final-cta-btn:hover {
        background: #ffe600;
        box-shadow: 0 6px 28px rgba(255, 241, 18, 0.5);
      }

      /* ──────────────── FOOTER ──────────────── */


      /* Animação entrada */
      .fcta-anim {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }

      .fcta-anim.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ── CTA RASTREAMENTO (abaixo do card missão) ── */
      .tracking-cta-wrapper {
        margin-top: 1rem;
        text-align: center;
      }

      .tracking-cta-headline {
        font-size: 0.95rem;
        font-weight: 800;
        color: var(--brand-navy);
        line-height: 1.3;
        text-transform: uppercase;
        letter-spacing: 0.02em;
      }

      .tracking-cta-rule {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        margin: 0.65rem auto 0.85rem;
        max-width: 280px;
        justify-content: center;
      }

      .tracking-cta-rule-line {
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, rgba(44, 67, 100, 0.03), rgba(44, 67, 100, 0.18));
      }

      .tracking-cta-rule-line.rev {
        background: linear-gradient(90deg, rgba(44, 67, 100, 0.18), rgba(44, 67, 100, 0.03));
      }

      .tracking-cta-card {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        margin-top: 0.85rem;
        padding: 0.85rem 1rem;
        background: rgba(44, 67, 100, 0.06);
        border: 1.5px solid rgba(44, 67, 100, 0.15);
        border-radius: 0.85rem;
        text-decoration: none;
        transition:
          background 0.2s,
          border-color 0.2s;
        cursor: pointer;
      }

      .tracking-cta-card:hover {
        background: rgba(44, 67, 100, 0.1);
        border-color: var(--brand-yellow);
      }

      .tracking-cta-icon {
        flex-shrink: 0;
        width: 2.25rem;
        height: 2.25rem;
        border-radius: 0.6rem;
        background: rgba(44, 67, 100, 0.1);
        color: var(--brand-navy);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .tracking-cta-content {
        flex: 1;
      }

      .tracking-cta-title {
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--brand-navy);
        line-height: 1.3;
      }

      .tracking-cta-desc {
        font-size: 0.72rem;
        color: var(--brand-gray-text);
        margin-top: 0.1rem;
        line-height: 1.4;
      }

      /* ──────────────── BACKGROUND CANVAS ──────────────── */
      #bg-canvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
      }

      .hero,
      section {
        position: relative;
        z-index: 1;
      }

      .bg-orb {
        position: fixed;
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
        filter: blur(80px);
        animation: orbFloat linear infinite;
      }

      .bg-orb-1 {
        width: 560px;
        height: 560px;
        background: radial-gradient(circle, rgba(255, 205, 0, 0.14) 0%, transparent 70%);
        top: -120px;
        left: -120px;
        animation-duration: 20s;
        animation-delay: 0s;
      }

      .bg-orb-2 {
        width: 420px;
        height: 420px;
        background: radial-gradient(circle, rgba(44, 67, 100, 0.1) 0%, transparent 70%);
        bottom: 8%;
        right: -100px;
        animation-duration: 24s;
        animation-delay: -9s;
      }

      .bg-orb-3 {
        width: 320px;
        height: 320px;
        background: radial-gradient(circle, rgba(255, 241, 18, 0.11) 0%, transparent 70%);
        top: 42%;
        left: 52%;
        animation-duration: 28s;
        animation-delay: -16s;
      }

      @keyframes orbFloat {
        0% {
          opacity: 0.6;
          transform: translate(0px, 0px) scale(1);
        }
        25% {
          opacity: 0.8;
          transform: translate(28px, -22px) scale(1.05);
        }
        50% {
          opacity: 0.6;
          transform: translate(14px, 32px) scale(0.97);
        }
        75% {
          opacity: 0.75;
          transform: translate(-22px, 10px) scale(1.03);
        }
        100% {
          opacity: 0.6;
          transform: translate(0px, 0px) scale(1);
        }
      }

/* ── Rodada 16: formulário comercial mais direto ───────────────────── */
.form-label {
  font-weight: 700;
}

.form-optional {
  color: #94a3b8;
  font-size: 0.7rem;
  font-weight: 500;
}

.form-input,
.form-select {
  min-height: 2.9rem;
  border-color: #d9e3ee;
  background: #fcfdff;
}

.form-input::placeholder {
  color: #a2afbf;
}

.form-checkbox-label {
  padding: 0.7rem 0.75rem;
  border: 1px solid #e7edf4;
  border-radius: 0.65rem;
  background: #f8fafc;
  line-height: 1.45;
}

.btn-submit {
  min-height: 3.15rem;
  border: 1px solid rgba(44, 67, 100, 0.08);
}

/* ── Rodada 17: Home sem formulário lateral + nova entrada de contato ── */
.page-home .hero {
  padding-top: 3.25rem;
}

.page-home .hero-grid {
  display: block;
}

.page-home .hero-content {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.page-home .hero-h1 {
  max-width: 900px;
  margin-inline: auto;
}

.page-home .hero-subline {
  max-width: 900px;
  margin-inline: auto;
}

.page-home .hero-desc {
  max-width: 720px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.page-home .hero-features {
  max-width: 880px;
  margin: 1.4rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.page-home .hero-features li {
  min-height: 100%;
  align-items: flex-start;
  padding: 0.78rem 0.82rem;
  border: 1px solid rgba(44, 67, 100, 0.1);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.68);
}

.page-home .calc-wrapper {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-support-grid {
  width: min(100%, 920px);
  margin: 1.25rem auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}

.hero-support-grid .umbrella-card,
.hero-support-grid .tracking-cta-wrapper {
  margin-top: 0;
}

.hero-support-grid .tracking-cta-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(44, 67, 100, 0.12);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.72);
}

@media (max-width: 820px) {
  .page-home .hero-features,
  .hero-support-grid {
    grid-template-columns: 1fr;
  }

  .page-home .hero-features {
    max-width: 620px;
  }
}

@media (max-width: 520px) {
  .page-home .hero {
    padding-top: 2.25rem;
  }

}

/* ── Rodada 18: vitrine da plataforma gratuita no Hero ── */
.page-home .hero {
  padding-top: 1.5rem;
}

.page-home .hero-grid {
  display: block;
}

.hero-primary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: start;
}

.page-home .hero-content {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

.page-home .hero-h1,
.page-home .hero-subline {
  max-width: 650px;
}

.page-home .hero-desc {
  max-width: 600px;
}

.page-home .hero-features {
  max-width: 620px;
  grid-template-columns: 1fr;
  margin-top: 1.1rem;
}

.page-home .hero-features li {
  padding: 0.68rem 0.78rem;
}

.page-home .calc-wrapper {
  max-width: 780px;
  margin: 2.2rem auto 0;
}

.hero-platform-showcase {
  --showcase-gap-device-title: 2.75rem;
  --showcase-gap-title-cta: 1.25rem;
  --showcase-gap-cta-tracking: 1.5rem;
  position: relative;
  width: 100%;
  max-width: 610px;
  margin: 0 auto;
  padding: 0 0 0.9rem;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-platform-showcase::before {
  content: none;
}



.platform-device {
  position: relative;
  width: min(100%, 550px);
  margin: 0 auto;
  padding: 1rem 0.78rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.2rem 1.2rem 0.72rem 0.72rem;
  background: linear-gradient(160deg, #203a5a 0%, #112c4c 100%);
  box-shadow:
    0 22px 35px rgba(17, 44, 76, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.platform-device-camera {
  position: absolute;
  top: 0.42rem;
  left: 50%;
  width: 0.32rem;
  height: 0.32rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
}

.platform-device-screen {
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.58rem;
  background: #e8edf3;
  aspect-ratio: 2.1 / 1;
}

.platform-device-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.platform-device-neck {
  position: absolute;
  left: 50%;
  bottom: -1.35rem;
  width: 3.4rem;
  height: 1.4rem;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #d6dde6 0%, #aeb9c6 100%);
  clip-path: polygon(28% 0, 72% 0, 88% 100%, 12% 100%);
  z-index: -1;
}

.platform-device-base {
  position: absolute;
  left: 50%;
  bottom: -1.65rem;
  width: 7.5rem;
  height: 0.42rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, #cbd4de, #929eab);
  box-shadow: 0 5px 10px rgba(44, 67, 100, 0.12);
  z-index: -1;
}

















.platform-community-title {
  margin: var(--showcase-gap-device-title) auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  color: var(--brand-navy, #2c4364);
  font-size: clamp(1.7rem, 2.7vw, 2.45rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-align: center;
}

.platform-community-title .tag-yellow {
  display: inline-block;
  padding: 0.08em 0.28em 0.12em;
  border-radius: 0.14em;
}


.platform-access-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 22rem);
  min-width: 19.5rem;
  min-height: 4rem;
  margin: var(--showcase-gap-title-cta) auto 0;
  padding: 1.08rem 2.25rem 1.16rem;
  border: 2px solid rgba(255, 205, 0, 0.62);
  border-radius: 1.1rem;
  background: linear-gradient(180deg, #314d73 0%, var(--brand-navy, #2c4364) 55%, #263d5c 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(35, 57, 86, 0.2);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.035em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.platform-access-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #35547e 0%, #294464 58%, #203754 100%);
  border-color: rgba(255, 205, 0, 0.82);
  box-shadow: 0 18px 34px rgba(35, 57, 86, 0.24);
}

.platform-access-btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(35, 57, 86, 0.2);
}

.platform-access-btn:focus-visible {
  outline: 3px solid rgba(255, 205, 0, 0.72);
  outline-offset: 4px;
}


@media (min-width: 901px) {
  .page-home .hero-container {
    padding-top: 0;
  }

  .page-home .hero-h1 {
    margin-bottom: 0.9rem;
  }

  .page-home .hero-rule {
    margin: 1.1rem 0 1.2rem;
  }

  .page-home .hero-subline {
    margin-top: 0;
  }
}

@media (max-width: 1120px) {
  .hero-primary-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    gap: 2rem;
  }

  .page-home .hero-h1 {
    font-size: clamp(2rem, 4.4vw, 3.05rem);
  }

  .page-home .hero-subline {
    font-size: clamp(1rem, 3.7vw, 2.05rem);
  }
}

@media (max-width: 900px) {
  .hero-primary-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .page-home .hero-content {
    max-width: 760px;
  }

  .hero-platform-showcase {
    max-width: 680px;
  }

  .page-home .hero-features {
    max-width: 680px;
  }
}

@media (max-width: 620px) {
  .page-home .hero {
    padding-top: 2rem;
  }

  /* No celular, título + divisor + vitrine da plataforma formam a primeira leitura. */
  .hero-primary-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .page-home .hero-content {
    display: contents;
  }

  .page-home .hero-h1 {
    order: 1;
    width: 100%;
  }

  .page-home .hero-rule {
    order: 2;
    width: calc(100% - 1rem);
    max-width: 100%;
    margin: 1.25rem auto 1rem;
  }

  .hero-platform-showcase {
    --showcase-gap-device-title: 2.25rem;
    --showcase-gap-title-cta: 1.15rem;
    order: 3;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1.4rem;
    padding: 0 0 0.55rem;
    border-radius: 0;
  }

  .page-home .hero-subline {
    order: 4;
    width: 100%;
    margin-top: 0.35rem;
    font-size: clamp(1.5rem, 7.6vw, 2.35rem);
    line-height: 1.08;
    gap: 0.5rem;
  }

  .page-home .hero-subline--desktop {
    display: none;
  }

  .page-home .hero-subline--mobile-alt {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: clamp(1.45rem, 7vw, 2.1rem);
    line-height: 1.06;
    gap: 0.34rem;
    margin-top: 0.35rem;
  }

  .page-home .hero-subline--mobile-alt .sl-row {
    gap: 0.36rem;
  }

  .page-home .hero-subline--mobile-alt .tag-yellow,
  .page-home .hero-subline--mobile-alt .tag-navy {
    padding: 0.12em 0.32em 0.14em;
    border-radius: 0.28em;
  }

  .page-home .hero-subline .sl-row {
    gap: 0.5rem;
  }

  .page-home .hero-subline .tag-yellow,
  .page-home .hero-subline .tag-navy {
    padding: 0.12em 0.34em 0.14em;
    border-radius: 0.3em;
  }

  .page-home .hero-desc {
    order: 5;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .page-home .hero-features {
    order: 6;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .platform-device {
    width: calc(100% - 0.5rem);
    margin-bottom: 0;
    padding: 0.82rem 0.58rem 0.58rem;
    border-radius: 0.9rem 0.9rem 0.6rem 0.6rem;
  }

  .platform-device-camera {
    top: 0.34rem;
  }

  .platform-community-title {
    margin-top: var(--showcase-gap-device-title);
    font-size: clamp(1.55rem, 8vw, 2.05rem);
  }

  .platform-access-btn {
    width: min(100%, 20.5rem);
    min-width: 0;
    min-height: 3.7rem;
    margin-top: var(--showcase-gap-title-cta);
    padding: 1rem 1.45rem 1.08rem;
    border-radius: 1rem;
    font-size: 0.94rem;
    box-shadow:
      0 14px 28px rgba(35, 57, 86, 0.22),
      0 4px 0 #ffcd00;
  }
}

@media (max-width: 420px) {
  .page-home .hero-subline {
    font-size: clamp(1.42rem, 7vw, 2.05rem);
  }

  .page-home .hero-subline--mobile-alt {
    font-size: clamp(1.34rem, 6.9vw, 1.95rem);
  }
}

/* Rastreamento da vitrine: mesmo padrão visual aprovado no mobile, escalado para desktop. */
.tracking-cta-wrapper--platform {
  display: none;
}

@media (min-width: 901px) {
  .hero-platform-showcase > .tracking-cta-wrapper--platform {
    display: block;
    box-sizing: border-box;
    width: min(100%, 30rem);
    margin: var(--showcase-gap-cta-tracking) auto 0;
    padding: 1.2rem 1.35rem 1.35rem;
    border: 1px solid rgba(44, 67, 100, 0.13);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.82);
    text-align: center;
  }

  .hero-platform-showcase > .tracking-cta-wrapper--platform .tracking-cta-headline {
    margin: 0;
    color: var(--brand-navy);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .hero-platform-showcase > .tracking-cta-wrapper--platform .tracking-cta-rule {
    display: flex;
    width: 100%;
    max-width: 18rem;
    margin: 0.7rem auto 0.9rem;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
  }

  .hero-platform-showcase > .tracking-cta-wrapper--platform .tracking-cta-card {
    display: grid;
    grid-template-columns: 2.8rem minmax(0, 1fr) 1rem;
    width: 100%;
    margin: 0;
    padding: 0.95rem 1rem;
    align-items: center;
    gap: 0.9rem;
    border: 1.5px solid rgba(44, 67, 100, 0.15);
    border-radius: 0.95rem;
    background: rgba(44, 67, 100, 0.06);
    color: inherit;
    text-decoration: none;
  }

  .hero-platform-showcase > .tracking-cta-wrapper--platform .tracking-cta-card:hover {
    background: rgba(44, 67, 100, 0.09);
    border-color: var(--brand-yellow);
  }

  .hero-platform-showcase > .tracking-cta-wrapper--platform .tracking-cta-icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.7rem;
    background: rgba(44, 67, 100, 0.1);
    color: var(--brand-navy);
  }

  .hero-platform-showcase > .tracking-cta-wrapper--platform .tracking-cta-content {
    min-width: 0;
    text-align: center;
  }

  .hero-platform-showcase > .tracking-cta-wrapper--platform .tracking-cta-title {
    margin: 0;
    color: var(--brand-navy);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.25;
  }

  .hero-platform-showcase > .tracking-cta-wrapper--platform .tracking-cta-desc {
    margin: 0.12rem 0 0;
    color: var(--brand-gray-text);
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .hero-platform-showcase > .tracking-cta-wrapper--platform .tracking-cta-card > svg:last-child {
    width: 1rem;
    height: 1rem;
    justify-self: end;
  }

  .hero-support-grid {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
  }

  .tracking-cta-wrapper--support {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .tracking-cta-wrapper--support {
    display: flex;
  }
}

/* ── Rodada 38: chamada comercial acima da missão no desktop ── */
.desktop-specialist-cta {
  display: none;
}

@media (min-width: 901px) {
  .desktop-specialist-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.2rem;
    align-items: center;
    width: 100%;
    margin: 0 0 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(44, 67, 100, 0.12);
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 28px rgba(44, 67, 100, 0.08);
  }

  .desktop-specialist-cta__copy {
    min-width: 0;
  }

  .desktop-specialist-cta__eyebrow {
    display: inline-block;
    margin-bottom: 0.35rem;
    color: var(--brand-navy);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .desktop-specialist-cta h3 {
    margin: 0;
    color: var(--brand-navy);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.3;
  }

  .desktop-specialist-cta p {
    margin: 0.3rem 0 0;
    color: var(--brand-gray-text);
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .desktop-specialist-cta__button {
    min-height: 2.8rem;
    padding: 0.78rem 1rem;
    border: 0;
    border-radius: 0.8rem;
    background: var(--brand-navy);
    color: #fff;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(44, 67, 100, 0.16);
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  }

  .desktop-specialist-cta__button:hover {
    transform: translateY(-1px);
    background: #203a5a;
    box-shadow: 0 11px 22px rgba(44, 67, 100, 0.2);
  }

  .desktop-specialist-cta__button:focus-visible {
    outline: 3px solid rgba(252, 205, 10, 0.55);
    outline-offset: 3px;
  }
}

/* ── Rodada 37: calculadora + missão lado a lado no desktop ── */
@media (min-width: 901px) {
  .page-home .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    column-gap: clamp(1.25rem, 2.5vw, 2.25rem);
    row-gap: 0;
    align-items: start;
  }

  .page-home .hero-primary-grid {
    grid-column: 1 / -1;
  }

  .page-home .calc-wrapper {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: none;
    margin: 2.2rem 0 0;
  }

  .page-home .hero-support-grid {
    grid-column: 2;
    grid-row: 2;
    display: block;
    width: 100%;
    max-width: none;
    margin: 2.2rem 0 0;
  }

  .page-home .hero-support-grid .umbrella-card {
    width: 100%;
    margin: 0;
  }
}


/* ── Rodada 43: sequência de entrada padronizada da Home ──────────────
   Ordem canônica baseada na leitura mobile:
   H1 → divisor → plataforma → título/CTA → mensagem comercial → prova → benefícios.
   Elementos abaixo da primeira dobra passam a revelar somente quando entram na viewport.
*/
.page-home {
  --home-intro-duration: 0.56s;
  --home-intro-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes homeIntroLeft {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes homeIntroRight {
  from {
    opacity: 0;
    transform: translateX(34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Evita que regras antigas concorram com a sequência nova. */
.page-home .hero-h1 .line-plain,
.page-home .hero-h1 .line-badge,
.page-home .hero-rule,
.page-home .hero-platform-showcase,
.page-home .platform-device,
.page-home .platform-community-title,
.page-home .platform-access-btn,
.page-home .hero-subline,
.page-home .hero-subline .sl-row,
.page-home .hero-subline .sl-row > *,
.page-home .hero-desc,
.page-home .hero-features,
.page-home .hero-features li,
.page-home .tracking-cta-wrapper--platform,
.page-home .tag-yellow-pulse {
  animation: none;
}

/* 1–3. Título principal */
.page-home .hero-h1 .h1-l1 {
  animation: homeIntroLeft var(--home-intro-duration) var(--home-intro-ease) 0.05s both;
}

.page-home .hero-h1 .h1-l2 {
  animation: homeIntroRight var(--home-intro-duration) var(--home-intro-ease) 0.18s both;
}

.page-home .hero-h1 .h1-l3 {
  animation: homeIntroLeft var(--home-intro-duration) var(--home-intro-ease) 0.31s both;
}

/* 4. Divisor */
.page-home .hero-rule {
  animation: homeIntroUp 0.5s var(--home-intro-ease) 0.46s both;
}

/* 5–7. Plataforma, chamada e CTA */
.page-home .platform-device {
  animation: homeIntroUp 0.58s var(--home-intro-ease) 0.60s both;
}

.page-home .platform-community-title {
  animation: homeIntroUp 0.54s var(--home-intro-ease) 0.78s both;
}

.page-home .platform-access-btn {
  animation: homeIntroUp 0.52s var(--home-intro-ease) 0.94s both;
}

/* 8. Mensagem comercial: mesma etapa no desktop e no mobile. */
.page-home .hero-subline--desktop .sl-row:nth-child(1) {
  animation: homeIntroUp 0.5s var(--home-intro-ease) 1.08s both;
}

.page-home .hero-subline--desktop .sl-row:nth-child(2) {
  animation: homeIntroUp 0.5s var(--home-intro-ease) 1.22s both;
}

.page-home .hero-subline--mobile-alt .sl-row:nth-child(1) {
  animation: homeIntroUp 0.46s var(--home-intro-ease) 1.06s both;
}

.page-home .hero-subline--mobile-alt .sl-row:nth-child(2) {
  animation: homeIntroUp 0.46s var(--home-intro-ease) 1.16s both;
}

.page-home .hero-subline--mobile-alt .sl-row:nth-child(3) {
  animation: homeIntroUp 0.46s var(--home-intro-ease) 1.26s both;
}

.page-home .hero-subline--mobile-alt .sl-row:nth-child(4) {
  animation: homeIntroUp 0.46s var(--home-intro-ease) 1.36s both;
}

/* 9. Prova / descrição */
.page-home .hero-desc {
  animation: homeIntroUp 0.5s var(--home-intro-ease) 1.50s both;
}

/* 10. Benefícios, item a item. */
.page-home .hero-features li:nth-child(1) {
  animation: homeIntroUp 0.48s var(--home-intro-ease) 1.62s both;
}

.page-home .hero-features li:nth-child(2) {
  animation: homeIntroUp 0.48s var(--home-intro-ease) 1.72s both;
}

.page-home .hero-features li:nth-child(3) {
  animation: homeIntroUp 0.48s var(--home-intro-ease) 1.82s both;
}

/* No desktop o rastreamento completa a leitura da coluna direita. */
@media (min-width: 901px) {
  .page-home .tracking-cta-wrapper--platform {
    animation: homeIntroUp 0.5s var(--home-intro-ease) 1.96s both;
  }
}

/* Blocos abaixo da dobra: não queimam a animação enquanto estão fora da tela. */
.page-home .calc-wrapper,
.page-home .desktop-specialist-cta,
.page-home .umbrella-card,
.page-home .tracking-cta-wrapper--support {
  animation: none;
}

.page-home .home-viewport-reveal {
  opacity: 0;
  transform: translateY(20px);
}

.page-home .home-viewport-reveal.is-visible {
  animation: homeIntroUp 0.62s var(--home-intro-ease) var(--home-reveal-delay, 0s) both;
}

/* Acessibilidade: sem movimento quando o sistema solicita redução. */
@media (prefers-reduced-motion: reduce) {
  .page-home .hero-h1 .line-plain,
  .page-home .hero-h1 .line-badge,
  .page-home .hero-rule,
  .page-home .platform-device,
  .page-home .platform-community-title,
  .page-home .platform-access-btn,
  .page-home .hero-subline .sl-row,
  .page-home .hero-desc,
  .page-home .hero-features li,
  .page-home .tracking-cta-wrapper--platform,
  .page-home .home-viewport-reveal,
  .page-home .home-viewport-reveal.is-visible {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
