:root {
      --bg: #f7f5f1;
      --bg-2: #efece5;
      --surface: #ffffff;
      --line: #e2ddd3;
      --text: #20242b;
      --muted: #5f6774;
      --soft: #8a9099;
      --brand: #008b76;
      --brand-2: #7a6142;
      --accent: #c9a24b;
      --ok: #2f7d5b;
      --radius: 14px;
      --wrap: 1140px;
      --shadow: 0 12px 34px -20px rgba(28, 33, 42, .35);
      --ring: rgba(31, 58, 95, .35);
    }

    :root[data-theme="dark"] {
      --bg: #14171c;
      --bg-2: #191d24;
      --surface: #1e232c;
      --line: #2c333e;
      --text: #e9ecf1;
      --muted: #a3abb8;
      --soft: #767f8c;
      --brand: #008d8c;
      --brand-2: #cbb188;
      --accent: #d8b25e;
      --ok: #5fc79a;
      --shadow: 0 16px 40px -22px rgba(0, 0, 0, .7);
      --ring: rgba(143, 176, 217, .45);
    }

    @media (prefers-color-scheme:dark) {
      :root[data-theme="auto"] {
        --bg: #14171c;
        --bg-2: #191d24;
        --surface: #1e232c;
        --line: #2c333e;
        --text: #e9ecf1;
        --muted: #a3abb8;
        --soft: #767f8c;
        --brand: #008d8c;
        --brand-2: #cbb188;
        --accent: #d8b25e;
        --ok: #5fc79a;
        --shadow: 0 16px 40px -22px rgba(0, 0, 0, .7);
        --ring: rgba(143, 176, 217, .45);
      }
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%
    }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font: 400 clamp(1rem, .96rem + .2vw, 1.07rem)/1.65 Georgia, "Times New Roman", serif;
      overflow-x: hidden;
      transition: background .3s, color .3s;
    }

    img,
    svg {
      max-width: 100%;
      display: block
    }

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

    h1,
    h2,
    h3 {
      line-height: 1.18;
      letter-spacing: -.01em;
      margin: 0 0 .5em;
      text-wrap: balance;
      font-family: Georgia, "Times New Roman", serif
    }

    h1 {
      font-size: clamp(2rem, 1.35rem + 3vw, 3.6rem);
      font-weight: 700
    }

    h2 {
      font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.5rem);
      font-weight: 700
    }

    h3 {
      font-size: 1.16rem;
      font-weight: 700
    }

    p {
      margin: 0 0 1rem;
      color: var(--muted);
      text-wrap: pretty
    }

    .ui {
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif
    }

    :focus-visible {
      outline: 3px solid var(--ring);
      outline-offset: 3px;
      border-radius: 6px
    }

    .wrap {
      width: min(100% - 2.5rem, var(--wrap));
      margin-inline: auto
    }

    .section {
      padding: clamp(3.5rem, 7vw, 6.5rem) 0;
      position: relative
    }

    .section--alt {
      background: var(--bg-2);
      border-block: 1px solid var(--line)
    }

    .eyebrow {
      display: inline-block;
      font-family: system-ui, sans-serif;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--brand-2);
      margin-bottom: .9rem
    }

    .lead {
      font-size: 1.12rem;
      max-width: 62ch
    }

    .head {
      max-width: 66ch;
      margin-bottom: 2.6rem
    }

    .skip {
      position: absolute;
      left: -9999px
    }

    .skip:focus {
      left: 1rem;
      top: 1rem;
      z-index: 99;
      background: var(--brand);
      color: #fff;
      padding: .7rem 1.1rem;
      border-radius: 8px
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: color-mix(in srgb, var(--bg) 85%, transparent);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line)
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 1.3rem;
      min-height: 70px
    }

    .brand {
      font-weight: 700;
      letter-spacing: -.01em;
      font-size: 1.15rem;
      display: flex;
      align-items: center;
      gap: .55rem
    }

    .brand span {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: var(--brand);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: .8rem
    }

    .menu {
      display: flex;
      gap: 1.5rem;
      margin-left: auto;
      list-style: none;
      padding: 0;
      margin-block: 0;
      font-family: system-ui, sans-serif;
      font-size: .94rem
    }

    .menu a {
      color: var(--muted);
      transition: color .18s
    }

    .menu a:hover {
      color: var(--text)
    }

    .actions {
      display: flex;
      align-items: center;
      gap: .7rem;
      margin-left: auto
    }

    .menu+.actions {
      margin-left: 1.3rem
    }

    .themebtn {
      background: var(--surface);
      border: 1px solid var(--line);
      color: var(--text);
      border-radius: 999px;
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      cursor: pointer;
      font-size: 1.1rem;
      transition: border-color .18s, transform .18s
    }

    .themebtn:hover {
      transform: translateY(-1px);
      border-color: var(--soft)
    }

    .themebtn .sun {
      display: none
    }

    .themebtn .moon {
      display: block
    }

    :root[data-theme="dark"] .themebtn .sun {
      display: block
    }

    :root[data-theme="dark"] .themebtn .moon {
      display: none
    }

    @media (prefers-color-scheme:dark) {
      :root[data-theme="auto"] .themebtn .sun {
        display: block
      }

      :root[data-theme="auto"] .themebtn .moon {
        display: none
      }
    }

    .burger {
      display: none;
      background: var(--surface);
      border: 1px solid var(--line);
      color: var(--text);
      border-radius: 10px;
      padding: .55rem .7rem;
      cursor: pointer
    }

    /* buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      padding: .85rem 1.5rem;
      border-radius: 999px;
      font-family: system-ui, sans-serif;
      font-weight: 600;
      font-size: .96rem;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform .16s, box-shadow .16s, background .16s, border-color .16s
    }

    .btn--primary {
      background: var(--brand);
      color: #fff;
      box-shadow: var(--shadow)
    }

    .btn--primary:hover {
      background: color-mix(in srgb, var(--brand) 85%, #000)
    }

    .btn--ghost {
      border-color: var(--line);
      background: var(--surface);
      color: var(--text)
    }

    .btn--ghost:hover {
      border-color: var(--soft)
    }

    .btn:hover {
      transform: translateY(-2px)
    }

    .btn--sm {
      padding: .6rem 1.1rem;
      font-size: .88rem
    }

    /* hero */
    .hero {
      padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 4.5rem);
      position: relative
    }

    .hero-grid {
      display: grid;
      gap: 3rem;
      grid-template-columns: 1.12fr .88fr;
      align-items: center
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-family: system-ui, sans-serif;
      font-size: .84rem;
      color: var(--muted);
      border: 1px solid var(--line);
      background: var(--surface);
      padding: .4rem .85rem;
      border-radius: 999px;
      margin-bottom: 1.4rem
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--ok)
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: .85rem;
      margin: 1.8rem 0 1.5rem
    }

    .trust {
      display: flex;
      flex-wrap: wrap;
      gap: 1.4rem;
      list-style: none;
      padding: 0;
      margin: 0;
      font-family: system-ui, sans-serif;
      font-size: .9rem;
      color: var(--muted)
    }

    .trust li {
      display: flex;
      align-items: center;
      gap: .45rem
    }

    .check {
      color: var(--ok);
      font-weight: 800
    }

    /* card visual do hero */
    .panel {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden
    }

    .panel-bar {
      display: flex;
      gap: .4rem;
      padding: .8rem 1rem;
      border-bottom: 1px solid var(--line);
      background: var(--bg-2)
    }

    .panel-bar i {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: var(--line)
    }

    .panel-body {
      padding: 1.2rem 1.3rem;
      font: 500 .86rem/1.9 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      color: var(--muted)
    }

    .panel-body b {
      color: var(--brand-2)
    }

    .panel-body em {
      color: var(--ok);
      font-style: normal
    }

    .metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--line);
      border-top: 1px solid var(--line)
    }

    .metric {
      background: var(--surface);
      padding: 1rem .8rem;
      text-align: center
    }

    .metric strong {
      display: block;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--text);
      font-family: Georgia, serif
    }

    .metric small {
      color: var(--muted);
      font-family: system-ui, sans-serif;
      font-size: .74rem
    }

    /* grids */
    .grid {
      display: grid;
      gap: 1.25rem
    }

    .grid--3 {
      grid-template-columns: repeat(3, 1fr)
    }

    .grid--4 {
      grid-template-columns: repeat(4, 1fr)
    }

    .card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.6rem 1.5rem;
      transition: transform .2s, border-color .2s, box-shadow .2s
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: var(--soft);
      box-shadow: var(--shadow)
    }

    .card p:last-child {
      margin-bottom: 0
    }

    .icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: color-mix(in srgb, var(--brand) 12%, transparent);
      color: var(--brand);
      margin-bottom: 1rem
    }

    .icon svg {
      width: 23px;
      height: 23px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round
    }

    .tags {
      list-style: none;
      padding: 0;
      margin: 1rem 0 0;
      display: flex;
      flex-wrap: wrap;
      gap: .4rem;
      font-family: system-ui, sans-serif
    }

    .tags li {
      font-size: .75rem;
      color: var(--muted);
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: .25rem .65rem
    }

    /* processo */
    .step {
      position: relative;
      padding-left: 3.4rem
    }

    .step::before {
      counter-increment: step;
      content: counter(step, decimal-leading-zero);
      position: absolute;
      left: 0;
      top: -.2rem;
      font-family: system-ui, sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: #fff;
      background: var(--brand);
      width: 38px;
      height: 38px;
      border-radius: 11px;
      display: grid;
      place-items: center
    }

    .steps {
      counter-reset: step
    }

    /* planos */
    .plan {
      display: flex;
      flex-direction: column
    }

    .plan--featured {
      border-color: var(--brand);
      box-shadow: var(--shadow);
      position: relative
    }

    .plan--featured::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: var(--radius);
      border: 1px solid var(--brand);
      pointer-events: none
    }

    .badge {
      position: absolute;
      top: -.8rem;
      right: 1.2rem;
      background: var(--accent);
      color: #20242b;
      font-family: system-ui, sans-serif;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: .3rem .8rem;
      border-radius: 999px
    }

    .price {
      font-size: 2rem;
      font-weight: 700;
      margin: .3rem 0 .2rem;
      color: var(--text)
    }

    .price small {
      font-size: .82rem;
      font-weight: 400;
      color: var(--muted);
      font-family: system-ui, sans-serif
    }

    .from {
      font-family: system-ui, sans-serif;
      font-size: .78rem;
      color: var(--soft);
      text-transform: uppercase;
      letter-spacing: .08em
    }

    .plan ul {
      list-style: none;
      padding: 0;
      margin: 1.2rem 0 1.6rem;
      display: grid;
      gap: .6rem;
      font-family: system-ui, sans-serif;
      font-size: .92rem;
      color: var(--muted)
    }

    .plan li {
      display: flex;
      gap: .6rem
    }

    .plan .btn {
      margin-top: auto
    }

    .htable {
      width: 100%;
      border-collapse: collapse;
      font-family: system-ui, sans-serif;
      font-size: .93rem;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden
    }

    .htable caption {
      caption-side: bottom;
      font-size: .8rem;
      color: var(--soft);
      padding-top: .9rem;
      text-align: left
    }

    .htable th,
    .htable td {
      padding: .9rem 1rem;
      text-align: left;
      border-bottom: 1px solid var(--line)
    }

    .htable thead th {
      background: var(--bg-2);
      font-weight: 700;
      color: var(--text)
    }

    .htable tbody tr:last-child td {
      border-bottom: none
    }

    .htable td strong {
      color: var(--text)
    }

    /* faq */
    details {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 1.05rem 1.3rem;
      margin-bottom: .75rem
    }

    details[open] {
      border-color: var(--soft)
    }

    summary {
      cursor: pointer;
      font-weight: 700;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem
    }

    summary::-webkit-details-marker {
      display: none
    }

    summary::after {
      content: "+";
      font-size: 1.4rem;
      color: var(--brand-2);
      line-height: 1
    }

    details[open] summary::after {
      content: "–"
    }

    details p {
      margin: .9rem 0 0
    }

    /* contato */
    .contact-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 2.5rem;
      align-items: start
    }

    form {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.8rem
    }

    .field {
      margin-bottom: 1rem
    }

    label {
      display: block;
      font-family: system-ui, sans-serif;
      font-size: .86rem;
      font-weight: 600;
      margin-bottom: .4rem
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: .8rem .95rem;
      border-radius: 10px;
      border: 1px solid var(--line);
      background: var(--bg);
      color: var(--text);
      font: inherit;
      font-family: system-ui, sans-serif;
      font-size: .94rem
    }

    textarea {
      min-height: 120px;
      resize: vertical
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--brand);
      outline: none
    }

    .form-note {
      font-family: system-ui, sans-serif;
      font-size: .78rem;
      margin: .9rem 0 0
    }

    .contact-list {
      list-style: none;
      padding: 0;
      margin: 1.6rem 0 0;
      display: grid;
      gap: 1rem;
      font-family: system-ui, sans-serif
    }

    .contact-list a {
      color: var(--brand);
      font-weight: 600
    }

    :root[data-theme="dark"] .contact-list a {
      color: var(--brand)
    }

    /* cta final */
    .cta-band {
      background: var(--brand);
      border-radius: 20px;
      padding: clamp(2.2rem, 5vw, 3.5rem);
      text-align: center;
      color: #fff
    }

    .cta-band h2 {
      color: #fff
    }

    .cta-band p {
      color: rgba(255, 255, 255, .82);
      margin-inline: auto;
      max-width: 54ch
    }

    .cta-band .btn {
      background: #fff;
      color: var(--brand)
    }

    .cta-band .btn:hover {
      background: var(--accent);
      color: #20242b
    }

    /* footer */
    .footer {
      border-top: 1px solid var(--line);
      padding: 2.5rem 0;
      font-family: system-ui, sans-serif;
      font-size: .9rem;
      color: var(--muted)
    }

    .footer-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: space-between;
      align-items: center
    }

    .footer nav {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem
    }

    .footer a:hover {
      color: var(--text)
    }

    /* animação */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .6s ease, transform .6s ease
    }

    .reveal.on {
      opacity: 1;
      transform: none
    }

    /* responsivo */
    @media (max-width:980px) {

      .hero-grid,
      .contact-grid {
        grid-template-columns: 1fr
      }

      .grid--3,
      .grid--4 {
        grid-template-columns: repeat(2, 1fr)
      }

      .burger {
        display: block
      }

      .menu {
        position: absolute;
        inset: 70px 0 auto;
        flex-direction: column;
        background: var(--bg-2);
        border-bottom: 1px solid var(--line);
        padding: 1.2rem 1.5rem;
        gap: 1rem;
        display: none;
        margin-left: 0
      }

      .menu.open {
        display: flex
      }

      .actions {
        margin-left: auto
      }

      .menu+.actions {
        margin-left: auto
      }
    }

    @media (max-width:620px) {

      .grid--3,
      .grid--4 {
        grid-template-columns: 1fr
      }

      .cta-row .btn {
        width: 100%
      }

      .htable {
        font-size: .85rem
      }

      .htable th,
      .htable td {
        padding: .7rem .6rem
      }
    }

    @media (prefers-reduced-motion:reduce) {
      * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
      }

      .reveal {
        opacity: 1;
        transform: none
      }
    }