/* Poppins local — pesos usados na LP */
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-400.woff2') format('woff2');
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/poppins-500.woff2') format('woff2');
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600.woff2') format('woff2');
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-700.woff2') format('woff2');
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/poppins-800.woff2') format('woff2');
}

      /* ==========================================================================
         Identidade Ágil para clientes — laranja #FF6700 (agil.net).
         Verde (#00BF63) fica reservado ao produto/sistema, não à LP pública.
         ========================================================================== */
      :root {
        --brand: #ff6700;
        --brand-600: #e55c00;
        --brand-700: #cc5200;
        --orange: #ff6700;
        --orange-light: #ff8533;
        --cream: #ffeae1;
        --ink: #1c1c1c;
        --ink-2: #262626;
        --muted: #6b6b6b;
        --muted-dark: rgba(255, 255, 255, 0.68);
        --paper: #f3f4f8;
        --white: #fff;
        --line: rgba(28, 28, 28, 0.1);
        --line-dark: rgba(255, 255, 255, 0.14);
        --radius: 20px;
        --radius-sm: 12px;
        --shadow: 0 18px 44px rgba(28, 28, 28, 0.1);
        --shadow-lg: 0 28px 70px rgba(28, 28, 28, 0.16);
        --wrap: 1180px;
        --header-h: 74px;
        --err: #c62828;
      }

      *,
      *::before,
      *::after {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
        scroll-padding-top: var(--header-h);
        -webkit-text-size-adjust: 100%;
      }

      body {
        margin: 0;
        font-family: Poppins, system-ui, -apple-system, 'Segoe UI', sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: var(--ink);
        background: var(--white);
        overflow-x: hidden;
      }

      img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      h1,
      h2,
      h3 {
        margin: 0;
        line-height: 1.15;
        letter-spacing: -0.02em;
        font-weight: 700;
      }

      p {
        margin: 0;
      }

      ul {
        margin: 0;
        padding: 0;
        list-style: none;
      }

      :is(a, button, input, textarea, summary):focus-visible {
        outline: 3px solid var(--brand);
        outline-offset: 3px;
        border-radius: 6px;
      }

      .wrap {
        width: 100%;
        max-width: var(--wrap);
        margin-inline: auto;
        padding-inline: 1.25rem;
        box-sizing: border-box;
      }

      /* ---------------------------------------------------------------- botões */
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        padding: 0.95rem 1.9rem;
        border: 2px solid transparent;
        border-radius: 999px;
        font: inherit;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
          color 0.18s ease, border-color 0.18s ease;
      }

      .btn svg {
        width: 1.15em;
        height: 1.15em;
        flex: none;
      }

      .btn--primary {
        background: var(--brand);
        color: var(--white);
        box-shadow: 0 12px 28px rgba(255, 103, 0, 0.32);
      }

      .btn--primary:hover {
        background: var(--brand-600);
        transform: translateY(-2px);
        box-shadow: 0 18px 34px rgba(255, 103, 0, 0.4);
      }

      .btn--orange {
        background: linear-gradient(120deg, var(--orange-light), var(--orange));
        color: var(--white);
        box-shadow: 0 12px 28px rgba(255, 103, 0, 0.3);
      }

      .btn--orange:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 34px rgba(255, 103, 0, 0.38);
      }

      .btn--ghost-dark {
        border-color: var(--line-dark);
        color: var(--white);
        background: rgba(255, 255, 255, 0.04);
      }

      .btn--ghost-dark:hover {
        border-color: var(--brand);
        color: var(--brand);
      }

      .btn--ghost {
        border-color: var(--line);
        color: var(--ink);
        background: var(--white);
      }

      .btn--ghost:hover {
        border-color: var(--brand);
        color: var(--brand-700);
      }

      .btn--sm {
        padding: 0.55rem 1.1rem;
        font-size: 0.88rem;
      }

      .btn--block {
        width: 100%;
      }

      .btn:disabled {
        opacity: 0.55;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
      }

      /* ---------------------------------------------------------------- header */
      .header {
        position: sticky;
        top: 0;
        z-index: 60;
        min-height: var(--header-h);
        display: flex;
        align-items: center;
        background: rgba(28, 28, 28, 0.94);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--line-dark);
      }

      .header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 0.5rem 0.65rem;
        padding-block: 0.55rem;
        width: 100%;
      }

      /* Com o menu aberto, o nav precisa cair para a linha de baixo */
      .header.is-open .header__inner {
        flex-wrap: wrap;
      }

      .header__logo {
        flex: none;
        flex-shrink: 1;
        min-width: 0;
        line-height: 0;
        display: block;
      }

      /* Proporção explícita — evita distorção do img { max-width:100% } global */
      .header__logo img {
        display: block;
        width: 118px;
        height: 23px;
        max-width: 100%;
        object-fit: contain;
        object-position: left center;
      }

      .header__actions {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        margin-left: auto;
        flex: none;
        flex-shrink: 0;
      }

      .header__cta {
        flex: none;
        flex-shrink: 0;
        white-space: nowrap;
        max-width: none;
      }

      .header__cta-short {
        display: none;
      }

      .header__toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 2.5rem;
        height: 2.5rem;
        padding: 0.55rem;
        border: 1px solid var(--line-dark);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        cursor: pointer;
        color: var(--white);
      }

      .header__toggle-bar {
        display: block;
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
        transition: transform 0.2s ease, opacity 0.2s ease;
      }

      .header.is-open .header__toggle-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      .header.is-open .header__toggle-bar:nth-child(2) {
        opacity: 0;
      }

      .header.is-open .header__toggle-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }

      .header__nav {
        display: none;
        width: 100%;
        order: 3;
        flex-direction: column;
        gap: 0.15rem;
        padding: 0.35rem 0 0.5rem;
        border-top: 1px solid var(--line-dark);
        margin-top: 0.15rem;
      }

      .header__nav a {
        display: block;
        padding: 0.85rem 0.35rem;
        font-size: 1rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.82);
        border-radius: 10px;
      }

      .header__nav a:hover,
      .header__nav a:focus-visible {
        color: var(--white);
        background: rgba(255, 103, 0, 0.12);
      }

      .header__nav-cta {
        margin-top: 0.35rem;
        text-align: center;
        font-weight: 700 !important;
        color: var(--white) !important;
        background: var(--brand);
        box-shadow: 0 10px 22px rgba(255, 103, 0, 0.28);
      }

      .header__nav-cta:hover,
      .header__nav-cta:focus-visible {
        background: var(--brand-600) !important;
      }

      .header.is-open .header__nav {
        display: flex;
      }

      @media (min-width: 1024px) {
        .header__inner {
          flex-wrap: nowrap;
        }

        .header__toggle {
          display: none;
        }

        .header__nav {
          display: flex;
          flex-direction: row;
          align-items: center;
          width: auto;
          order: 0;
          flex: 1;
          justify-content: center;
          gap: 1.35rem;
          padding: 0;
          margin: 0;
          border: 0;
        }

        .header__nav a {
          display: inline;
          padding: 0;
          font-size: 0.9rem;
          color: var(--muted-dark);
          border-radius: 0;
          background: transparent;
        }

        .header__nav a:hover,
        .header__nav a:focus-visible {
          color: var(--white);
          background: transparent;
        }

        .header__nav-cta {
          display: none !important;
        }

        .header__actions {
          margin-left: 0;
        }

        .header__logo img {
          width: 153px;
          height: 30px;
        }
      }

      /* ------------------------------------------------------------------ hero */
      .hero {
        position: relative;
        min-height: calc(100svh - var(--header-h));
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 3.5rem 0 6.5rem;
        background: var(--ink);
        color: var(--white);
        overflow: hidden;
        isolation: isolate;
      }

      .hero::before,
      .hero::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        z-index: -1;
        pointer-events: none;
      }

      .hero::before {
        width: 46rem;
        height: 46rem;
        top: -18rem;
        right: -14rem;
        background: radial-gradient(circle, rgba(255, 103, 0, 0.45), transparent 65%);
      }

      .hero::after {
        width: 38rem;
        height: 38rem;
        bottom: -16rem;
        left: -12rem;
        background: radial-gradient(circle, rgba(255, 103, 0, 0.38), transparent 65%);
      }

      .hero__grid {
        display: grid;
        gap: 3rem;
        align-items: center;
      }

      @media (min-width: 960px) {
        .hero__grid {
          grid-template-columns: 1.25fr 0.75fr;
          gap: 4rem;
        }
      }

      .chip {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.45rem 1rem 0.45rem 0.55rem;
        border-radius: 999px;
        background: rgba(255, 103, 0, 0.14);
        border: 1px solid rgba(255, 103, 0, 0.35);
        color: #ffc299;
        font-size: 0.85rem;
        font-weight: 600;
      }

      .chip__dot {
        width: 1.4rem;
        height: 1.4rem;
        border-radius: 50%;
        background: var(--brand);
        color: var(--ink);
        display: grid;
        place-items: center;
      }

      .chip__dot svg {
        width: 0.9rem;
        height: 0.9rem;
      }

      .hero h1 {
        font-size: clamp(2.15rem, 6vw, 4.1rem);
        font-weight: 800;
        margin: 1.35rem 0 1.25rem;
      }

      .hero h1 .highlight {
        color: var(--brand);
        display: inline-block;
        position: relative;
      }

      .hero h1 .highlight::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0.08em;
        height: 0.32em;
        background: rgba(255, 103, 0, 0.2);
        border-radius: 4px;
        z-index: -1;
      }

      .asterisk {
        color: var(--orange-light);
        font-size: 0.55em;
        vertical-align: super;
        font-weight: 700;
        margin-left: 0.1em;
        text-decoration: none;
        border-bottom: 1px dotted currentColor;
      }

      .hero__lead {
        font-size: clamp(1rem, 2.2vw, 1.2rem);
        color: var(--muted-dark);
        max-width: 40rem;
      }

      .hero__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.9rem;
        margin-top: 2rem;
      }

      /* aviso discreto do asterisco — presente sem competir com o headline */
      .fineprint {
        margin-top: 1.5rem;
        font-size: 0.76rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.4);
        max-width: 34rem;
      }

      .fineprint--light {
        color: var(--muted);
      }

      .hero__card {
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
        border: 1px solid var(--line-dark);
        border-radius: 26px;
        padding: 1.9rem;
        backdrop-filter: blur(10px);
        text-align: center;
      }

      .hero__card img {
        width: 92px;
        margin: 0 auto 1rem;
      }

      .hero__card-label {
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--muted-dark);
        font-weight: 600;
      }

      .hero__discount {
        font-size: clamp(2.6rem, 8vw, 3.6rem);
        font-weight: 800;
        color: var(--brand);
        line-height: 1;
        margin: 0.5rem 0;
      }

      .coupon {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
        border-top: 1px dashed var(--line-dark);
      }

      .coupon__code {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        margin-top: 0.4rem;
        padding: 0.55rem 1.1rem;
        border-radius: 999px;
        background: rgba(255, 103, 0, 0.16);
        color: #ffc299;
        font-weight: 700;
        letter-spacing: 0.14em;
        font-size: 1.05rem;
      }

      .coupon__partner {
        display: block;
        margin-top: 0.85rem;
        font-size: 0.86rem;
        color: var(--muted-dark);
      }

      /* ---------------------------------------------- convite para descer (CTA) */
      .scrollcue {
        position: absolute;
        left: 50%;
        bottom: 1.75rem;
        translate: -50% 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.65rem;
        color: var(--white);
        z-index: 2;
      }

      .scrollcue__title {
        font-size: 0.95rem;
        font-weight: 600;
        letter-spacing: 0.01em;
      }

      .scrollcue__arrow {
        width: 3rem;
        height: 3rem;
        display: grid;
        place-items: center;
        border-radius: 50%;
        border: 2px solid rgba(255, 103, 0, 0.5);
        background: rgba(255, 103, 0, 0.12);
        color: var(--brand);
        animation: cue-bounce 1.9s ease-in-out infinite;
      }

      .scrollcue:hover .scrollcue__arrow {
        background: var(--brand);
        color: var(--ink);
      }

      .scrollcue__arrow svg {
        width: 1.5rem;
        height: 1.5rem;
      }

      @keyframes cue-bounce {
        0%,
        100% {
          transform: translateY(0);
          box-shadow: 0 0 0 0 rgba(255, 103, 0, 0.4);
        }
        50% {
          transform: translateY(10px);
          box-shadow: 0 0 0 14px rgba(255, 103, 0, 0);
        }
      }

      /* ---------------------------------------------------------------- seções */
      .section {
        padding: clamp(4rem, 9vw, 7rem) 0;
      }

      .section--paper {
        background: var(--paper);
      }

      .section--cream {
        background: var(--cream);
      }

      .section--dark {
        background: var(--ink);
        color: var(--white);
      }

      .eyebrow {
        display: inline-block;
        padding: 0.35rem 0.95rem;
        border-radius: 999px;
        background: rgba(255, 103, 0, 0.12);
        color: var(--brand-700);
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.14em;
      }

      .section--dark .eyebrow {
        background: rgba(255, 103, 0, 0.16);
        color: #ffc299;
      }

      .section__head {
        max-width: 46rem;
        margin-bottom: 3rem;
      }

      .section__head--center {
        margin-inline: auto;
        text-align: center;
      }

      .section__head h2 {
        font-size: clamp(1.75rem, 4.4vw, 2.85rem);
        margin: 1rem 0 0.9rem;
      }

      .section__head p {
        color: var(--muted);
        font-size: 1.05rem;
      }

      .section--dark .section__head p {
        color: var(--muted-dark);
      }

      /* ------------------------------------------------------------ faixa stats */
      .stats {
        background: var(--ink-2);
        color: var(--white);
        padding: 2.75rem 0;
      }

      .stats__grid {
        display: grid;
        gap: 2rem;
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
      }

      @media (min-width: 860px) {
        .stats__grid {
          grid-template-columns: repeat(4, 1fr);
        }
      }

      .stat__value {
        font-size: clamp(1.9rem, 4.5vw, 2.7rem);
        font-weight: 800;
        color: var(--brand);
        line-height: 1;
      }

      .stat__label {
        margin-top: 0.5rem;
        font-size: 0.9rem;
        color: var(--muted-dark);
      }

      /* --------------------------------------------------------- cards feature */
      .cards {
        display: grid;
        gap: 1.25rem;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
      }

      .card {
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 1.65rem;
        transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
      }

      .card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        border-color: rgba(255, 103, 0, 0.4);
      }

      .section--dark .card {
        background: rgba(255, 255, 255, 0.045);
        border-color: var(--line-dark);
      }

      .card__icon {
        width: 3rem;
        height: 3rem;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: rgba(255, 103, 0, 0.12);
        color: var(--brand-700);
        margin-bottom: 1.1rem;
      }

      .card__icon svg {
        width: 1.5rem;
        height: 1.5rem;
      }

      .card--orange .card__icon {
        background: rgba(255, 103, 0, 0.12);
        color: var(--orange);
      }

      .section--dark .card__icon {
        background: rgba(255, 103, 0, 0.16);
        color: var(--brand);
      }

      .card h3 {
        font-size: 1.08rem;
        margin-bottom: 0.45rem;
      }

      .card p {
        color: var(--muted);
        font-size: 0.94rem;
      }

      .section--dark .card p {
        color: var(--muted-dark);
      }

      .section__cta {
        margin-top: 3rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.9rem;
        align-items: center;
      }

      .section__cta--center {
        justify-content: center;
      }

      /* ------------------------------------------------------------- depoimento */
      .quote {
        margin-top: 3rem;
        display: grid;
        gap: 1.5rem;
        align-items: center;
        grid-template-columns: auto 1fr;
        background: var(--white);
        border: 1px solid var(--line);
        border-left: 5px solid var(--brand);
        border-radius: var(--radius);
        padding: 1.75rem;
      }

      .section--dark .quote {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--line-dark);
        border-left-color: var(--brand);
      }

      .quote img {
        width: 66px;
        height: 66px;
        border-radius: 50%;
        object-fit: cover;
      }

      .quote blockquote {
        margin: 0;
        font-size: 1rem;
        font-style: italic;
        color: var(--ink);
      }

      .section--dark .quote blockquote {
        color: rgba(255, 255, 255, 0.9);
      }

      .quote cite {
        display: block;
        margin-top: 0.75rem;
        font-style: normal;
        font-weight: 600;
        font-size: 0.9rem;
      }

      .quote cite span {
        display: block;
        font-weight: 400;
        color: var(--muted);
        font-size: 0.85rem;
      }

      .section--dark .quote cite span {
        color: var(--muted-dark);
      }

      /* ---------------------------------------------------------------- suporte */
      .split {
        display: grid;
        gap: 3rem;
        align-items: center;
      }

      @media (min-width: 960px) {
        .split {
          grid-template-columns: 1fr 1fr;
        }

        .split--reverse .split__media {
          order: -1;
        }
      }

      .split__media {
        position: relative;
        display: grid;
        place-items: center;
      }

      .split__media::before {
        content: '';
        position: absolute;
        inset: 12% 6%;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 103, 0, 0.22), transparent 68%);
        filter: blur(30px);
      }

      .split__media img {
        position: relative;
        max-height: 30rem;
        width: auto;
      }

      .checklist {
        display: grid;
        gap: 0.9rem;
        margin-top: 1.75rem;
      }

      .checklist li {
        display: flex;
        gap: 0.85rem;
        align-items: flex-start;
        font-size: 1rem;
      }

      .checklist svg {
        width: 1.35rem;
        height: 1.35rem;
        flex: none;
        margin-top: 0.2rem;
        padding: 0.2rem;
        border-radius: 50%;
        background: rgba(255, 103, 0, 0.15);
        color: var(--brand-700);
      }

      .section--dark .checklist svg {
        color: var(--brand);
      }

      /* ------------------------------------------------------------ ágil class */
      .pills {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        margin-bottom: 2.25rem;
      }

      .pill {
        padding: 0.5rem 1.1rem;
        border-radius: 999px;
        border: 1px solid var(--line);
        background: var(--white);
        font-size: 0.88rem;
        font-weight: 600;
      }

      /* ----------------------------------------------------------- depoimentos */
      .voices {
        display: grid;
        gap: 1.25rem;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
      }

      .voice {
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 1.6rem;
        display: flex;
        flex-direction: column;
        gap: 1.1rem;
      }

      .voice svg.voice__mark {
        width: 1.9rem;
        height: 1.9rem;
        color: rgba(255, 103, 0, 0.5);
      }

      .voice p {
        font-size: 1.02rem;
        font-weight: 500;
        flex: 1;
      }

      .voice__author {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.88rem;
      }

      .voice__author img,
      .voice__initials {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
        flex: none;
      }

      .voice__initials {
        display: grid;
        place-items: center;
        background: linear-gradient(140deg, var(--orange-light), var(--orange));
        color: var(--white);
        font-weight: 700;
        font-size: 0.95rem;
      }

      .voice__author strong {
        display: block;
      }

      .voice__author span {
        color: var(--muted);
      }

      /* ---------------------------------------------------------------- planos */
      .toggle {
        display: inline-flex;
        padding: 0.35rem;
        border-radius: 999px;
        background: rgba(28, 28, 28, 0.06);
        margin: 0 auto 0.85rem;
      }

      .toggle button {
        border: 0;
        background: transparent;
        font: inherit;
        font-weight: 600;
        font-size: 0.92rem;
        padding: 0.6rem 1.4rem;
        border-radius: 999px;
        cursor: pointer;
        color: var(--muted);
        transition: background 0.2s ease, color 0.2s ease;
      }

      .toggle button[aria-selected='true'] {
        background: var(--white);
        color: var(--ink);
        box-shadow: 0 4px 14px rgba(28, 28, 28, 0.1);
      }

      .toggle__badge {
        display: inline-block;
        margin-left: 0.4rem;
        padding: 0.1rem 0.5rem;
        border-radius: 999px;
        background: var(--brand);
        color: var(--white);
        font-size: 0.7rem;
        font-weight: 700;
      }

      .plans {
        display: grid;
        gap: 1.5rem;
        /* 16.5rem cabe os 4 planos mensais em uma linha a partir de ~1180px de conteúdo */
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 16.5rem), 1fr));
      }

      .plan {
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 1.85rem;
        display: flex;
        flex-direction: column;
      }

      .plan__name {
        font-size: 1.3rem;
      }

      .plan__desc {
        color: var(--muted);
        font-size: 0.9rem;
        margin-top: 0.35rem;
        /* reserva 3 linhas para que preço e CTA fiquem alinhados entre os cards */
        min-height: 4.3rem;
      }

      .plan__price {
        margin: 1.25rem 0 0.35rem;
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
      }

      .plan__price-was {
        display: flex;
        align-items: baseline;
        gap: 0.3rem;
        font-weight: 600;
        color: var(--muted);
        text-decoration: line-through;
        text-decoration-thickness: 2px;
        text-decoration-color: rgba(28, 28, 28, 0.45);
      }

      .plan__price-was small {
        font-size: 0.85rem;
      }

      .plan__price-was strong {
        font-size: 1.15rem;
        letter-spacing: -0.02em;
      }

      .plan__price-was span {
        font-size: 0.85rem;
        font-weight: 500;
      }

      .plan__price-now {
        display: flex;
        align-items: baseline;
        flex-wrap: wrap;
        gap: 0.35rem 0.45rem;
        font-weight: 800;
        color: var(--ink);
      }

      .plan__price-now .plan__price-prefix {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--brand);
        text-transform: uppercase;
        letter-spacing: 0.04em;
      }

      .plan__price-now small {
        font-size: 1rem;
        font-weight: 600;
        color: var(--muted);
      }

      .plan__price-now strong {
        font-size: 2.35rem;
        line-height: 1;
        letter-spacing: -0.03em;
        color: var(--brand);
      }

      .plan__price-now span {
        font-size: 0.95rem;
        color: var(--muted);
        font-weight: 500;
      }

      .plan__hint {
        font-size: 0.82rem;
        color: var(--brand-700);
        font-weight: 600;
        margin-bottom: 1.35rem;
      }

      .plan .btn {
        margin-bottom: 1.5rem;
      }

      .plan__group + .plan__group {
        margin-top: 1.35rem;
      }

      .plan__group h4 {
        margin: 0 0 0.7rem;
        font-size: 0.74rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--muted);
      }

      .plan__group ul {
        display: grid;
        gap: 0.45rem;
      }

      .plan__group li {
        display: flex;
        gap: 0.55rem;
        align-items: flex-start;
        font-size: 0.88rem;
      }

      .plan__group svg {
        width: 0.95rem;
        height: 0.95rem;
        flex: none;
        margin-top: 0.3rem;
        color: var(--brand);
      }

      /* Funcionalidade não inclusa no plano (padrão do agil.net) */
      .plan__feature--off {
        color: rgba(28, 28, 28, 0.42);
        text-decoration: line-through;
        text-decoration-thickness: 1.5px;
        text-decoration-color: rgba(28, 28, 28, 0.35);
      }

      .plan__feature--off svg {
        color: #f44500;
      }

      .plans__note {
        margin-top: 2rem;
        text-align: center;
        font-size: 0.82rem;
        color: var(--muted);
      }

      /* ------------------------------------------------------------------- faq */
      .faq {
        display: grid;
        gap: 0.75rem;
        max-width: 52rem;
        margin-inline: auto;
      }

      .faq details {
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        padding: 0 1.35rem;
        transition: border-color 0.2s ease;
      }

      .faq details[open] {
        border-color: rgba(255, 103, 0, 0.45);
      }

      .faq summary {
        list-style: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 1.15rem 0;
        font-weight: 600;
      }

      .faq summary::-webkit-details-marker {
        display: none;
      }

      .faq summary::after {
        content: '';
        width: 0.7rem;
        height: 0.7rem;
        flex: none;
        border-right: 2.5px solid var(--brand);
        border-bottom: 2.5px solid var(--brand);
        rotate: 45deg;
        transition: rotate 0.25s ease;
      }

      .faq details[open] summary::after {
        rotate: -135deg;
      }

      .faq p {
        padding-bottom: 1.25rem;
        color: var(--muted);
        font-size: 0.95rem;
      }

      /* -------------------------------------------------------------- formulário */
      .form-section {
        background: var(--ink);
        color: var(--white);
        padding: clamp(4rem, 9vw, 7rem) 0;
        position: relative;
        overflow: hidden;
        isolation: isolate;
      }

      .form-section::before {
        content: '';
        position: absolute;
        width: 40rem;
        height: 40rem;
        top: -18rem;
        left: -12rem;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 103, 0, 0.4), transparent 65%);
        filter: blur(90px);
        z-index: -1;
      }

      .form-section__grid {
        display: grid;
        gap: 3rem;
        align-items: start;
      }

      @media (min-width: 960px) {
        .form-section__grid {
          grid-template-columns: 0.9fr 1.1fr;
          gap: 4rem;
        }
      }

      .formcard {
        background: var(--white);
        color: var(--ink);
        border-radius: 26px;
        padding: clamp(1.5rem, 4vw, 2.4rem);
        box-shadow: var(--shadow-lg);
      }

      .formcard h3 {
        font-size: 1.45rem;
      }

      .formcard__hint {
        color: var(--muted);
        font-size: 0.92rem;
        margin-top: 0.5rem;
      }

      .field {
        margin-top: 1.15rem;
      }

      .field label {
        display: block;
        font-size: 0.84rem;
        font-weight: 600;
        margin-bottom: 0.4rem;
      }

      .field label .opt {
        font-weight: 400;
        color: var(--muted);
      }

      .field input,
      .field textarea {
        width: 100%;
        padding: 0.85rem 1rem;
        border: 1.5px solid var(--line);
        border-radius: var(--radius-sm);
        font: inherit;
        font-size: 0.98rem;
        color: var(--ink);
        background: var(--white);
        transition: border-color 0.18s ease, box-shadow 0.18s ease;
      }

      .field textarea {
        resize: vertical;
        min-height: 5.5rem;
      }

      .field input:focus,
      .field textarea:focus {
        border-color: var(--brand);
        box-shadow: 0 0 0 4px rgba(255, 103, 0, 0.14);
        outline: none;
      }

      .field input[readonly] {
        background: var(--paper);
        font-weight: 700;
        letter-spacing: 0.12em;
        color: var(--brand-700);
      }

      .field input[aria-invalid='true'] {
        border-color: var(--err);
      }

      .field__error {
        display: block;
        margin-top: 0.35rem;
        font-size: 0.8rem;
        color: var(--err);
        min-height: 1rem;
      }

      /* isca antispam: fora da tela, mas sem display:none (bots ignoram o hidden) */
      .honeypot {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        overflow: hidden;
      }

      .form__msg {
        margin-top: 1rem;
        font-size: 0.92rem;
        min-height: 1.4rem;
        font-weight: 500;
      }

      .form__msg--err {
        color: var(--err);
      }

      .form__msg--ok {
        color: var(--brand-700);
      }

      .form__legal {
        margin-top: 1rem;
        font-size: 0.74rem;
        color: var(--muted);
        line-height: 1.5;
      }

      .form__legal a {
        color: var(--brand-700);
        text-decoration: underline;
      }

      .alert {
        display: none;
        gap: 0.75rem;
        align-items: flex-start;
        padding: 0.95rem 1.1rem;
        border-radius: var(--radius-sm);
        background: rgba(255, 103, 0, 0.1);
        border: 1px solid rgba(255, 103, 0, 0.35);
        color: #7a2200;
        font-size: 0.88rem;
        margin-bottom: 0.5rem;
      }

      .alert[data-visible='true'] {
        display: flex;
      }

      .alert svg {
        width: 1.15rem;
        height: 1.15rem;
        flex: none;
        margin-top: 0.15rem;
      }

      .success {
        display: none;
        text-align: center;
      }

      .success[data-visible='true'] {
        display: block;
      }

      .success__icon {
        width: 4.5rem;
        height: 4.5rem;
        margin: 0 auto 1.25rem;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: rgba(255, 103, 0, 0.14);
        color: var(--brand-700);
      }

      .success__icon svg {
        width: 2.2rem;
        height: 2.2rem;
      }

      /* ---------------------------------------------------------------- footer */
      .footer {
        background: #141414;
        color: var(--muted-dark);
        padding: 3.5rem 0 2.5rem;
        font-size: 0.88rem;
      }

      .footer__top {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--line-dark);
      }

      .footer__top img {
        display: block;
        width: 173px;
        height: 34px;
        max-width: none;
        object-fit: contain;
        object-position: left center;
      }

      .footer__claim {
        max-width: 26rem;
        color: var(--white);
        font-weight: 600;
        font-size: 1.05rem;
      }

      .footer__bottom {
        margin-top: 2rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: space-between;
      }

      /* ----------------------------------------------------- animação de entrada
         O estado escondido só existe com a classe js-anim, aplicada no <head>
         quando o browser suporte IntersectionObserver. Sem JS, nada fica oculto. */
      .reveal {
        transition: opacity 0.6s ease, transform 0.6s ease;
      }

      .js-anim .reveal {
        opacity: 0;
        transform: translateY(26px);
      }

      .js-anim .reveal[data-visible='true'] {
        opacity: 1;
        transform: none;
      }

      /* -------------------------------------------------------- mobile / estreito */
      @media (max-width: 720px) {
        .wrap {
          padding-inline: 1.15rem;
        }

        .header__logo img {
          width: 102px;
          height: 20px;
        }

        .header__toggle {
          width: 2.25rem;
          height: 2.25rem;
          padding: 0.45rem;
        }

        .header__cta {
          padding: 0.4rem 0.7rem;
          font-size: 0.78rem;
          line-height: 1.2;
          min-height: 0;
        }

        .header__cta-full {
          display: none;
        }

        .header__cta-short {
          display: inline;
        }

        .hero {
          min-height: auto;
          padding: 2.25rem 0 5.5rem;
        }

        .hero__actions .btn {
          width: 100%;
          white-space: nowrap;
          font-size: 0.95rem;
          padding: 0.85rem 1.25rem;
        }

        .hero h1,
        .section__head h2,
        .hero__lead,
        .fineprint,
        .section__head p,
        .card p,
        .card h3,
        .checklist li,
        .plan__name,
        .plan__desc,
        .plan__hint,
        .faq summary,
        .faq p,
        .footer__bottom p,
        .footer__claim,
        .formcard,
        .voice p {
          overflow-wrap: anywhere;
        }

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

        .hero__actions .btn {
          width: 100%;
        }

        .scrollcue {
          bottom: 1rem;
          max-width: calc(100% - 1.5rem);
          text-align: center;
        }

        .scrollcue__title {
          font-size: 0.88rem;
        }

        .quote {
          grid-template-columns: 1fr;
          justify-items: start;
        }

        .plan__price-now strong {
          font-size: 2rem;
        }

        .form-section__grid,
        .split {
          gap: 2rem;
        }

        .footer__top {
          flex-direction: column;
          align-items: flex-start;
        }

        .footer__top .btn {
          width: 100%;
        }
      }

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

        *,
        *::before,
        *::after {
          animation-duration: 0.01ms;
          animation-iteration-count: 1;
          transition-duration: 0.01ms;
        }

        .js-anim .reveal {
          opacity: 1;
          transform: none;
        }
      }
