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

    body {
      font-family: var(--font-corpo);
      color: var(--texto);
      background: var(--fundo);
      line-height: 1.6;
    }

    img { max-width: 100%; display: block; }
    a   { color: inherit; text-decoration: none; }

    .container {
      max-width: var(--container);
      margin-inline: auto;
      padding-inline: clamp(1.25rem, 5vw, 3rem);
    }

    .badge {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.28rem 0.9rem;
      border-radius: var(--r-full);
    }

    .badge--verde {
      background: rgba(255,255,255,0.18);
      color: #fff;
    }

    .badge--light {
      background: rgba(80,151,83,0.12);
      color: var(--verde-floresta);
    }

    .badge--lavanda {
      background: rgba(189,146,191,0.18);
      color: #6b3a7a;
    }

    .badge--terra {
      background: rgba(219,170,166,0.25);
      color: #8b3a2a;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.72rem 1.5rem;
      border-radius: var(--r-full);
      font-size: 0.875rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: transform 0.2s, filter 0.2s, background 0.2s;
    }

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

    .btn--white {
      background: #fff;
      color: var(--verde-floresta);
    }

    .btn--white:hover { filter: brightness(0.96); }

    .btn--outline-white {
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.55);
      color: #fff;
    }

    .btn--outline-white:hover { background: rgba(255,255,255,0.08); }

    .btn--green {
      background: var(--verde-floresta);
      color: #fff;
    }

    .btn--green:hover { filter: brightness(1.1); }

    .btn--outline-green {
      background: transparent;
      border: 1.5px solid rgba(80,151,83,0.4);
      color: var(--verde-floresta);
    }

    .btn--outline-green:hover { background: rgba(80,151,83,0.06); }

    /* ── HEADER (topo de retorno) ───────────────────────────── */
    .arte-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(254,252,248,0.90);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--borda);
      height: 56px;
      display: flex;
      align-items: center;
    }

    .arte-header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    .arte-header__back {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--texto-suave);
      transition: color 0.2s;
    }

    .arte-header__back:hover { color: var(--verde-floresta); }

    .arte-header__logo {
      font-family: var(--font-titulo);
      font-size: 0.75rem;
      color: #a08080;
      text-align: right;
    }

    .arte-header__logo strong {
      color: var(--verde-floresta);
      font-weight: 400;
    }

    /* ── Hamburger ── */
    .hamburger {
      display: flex; flex-direction: column; gap: 5px;
      padding: 0.45rem; background: none; border: none; cursor: pointer;
      flex-shrink: 0;
    }
    .hamburger span {
      display: block; width: 22px; height: 2px; border-radius: 999px;
      background: var(--texto-suave); transition: background 0.2s;
    }
    .hamburger:hover span { background: var(--texto); }

    /* ── Overlay ── */
    .menu-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.22);
      z-index: 400; opacity: 0; pointer-events: none; transition: opacity 0.3s;
    }
    .menu-overlay.is-open { opacity: 1; pointer-events: all; }

    /* ── Menu lateral ── */
    .side-menu {
      position: fixed; inset-block: 0; right: 0; width: 290px;
      background: #fff; z-index: 500; display: flex; flex-direction: column;
      padding: 1.5rem; transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
      box-shadow: -4px 0 32px rgba(0,0,0,0.10);
    }
    .side-menu.is-open { transform: translateX(0); }

    .side-menu__top {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 1.5rem;
    }
    .side-menu__label {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; color: #888;
    }
    .side-menu__close {
      width: 32px; height: 32px; border-radius: 999px; background: #f0f0f0;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: #666; cursor: pointer; border: none;
      transition: background 0.2s;
    }
    .side-menu__close:hover { background: #e4e4e4; }

    .side-menu__nav { display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }

    .side-menu__item {
      display: flex; align-items: center; gap: 0.9rem;
      padding: 0.7rem 0.9rem; border-radius: 0.75rem;
      transition: background 0.2s; text-decoration: none; color: #1a1a1a;
    }
    .side-menu__item:hover { background: #f5f5f5; }
    .side-menu__item.is-active { background: #A8DCAB; }

    .side-menu__icon {
      width: 34px; height: 34px; border-radius: 999px;
      background: rgba(0,0,0,0.06); display: flex; align-items: center;
      justify-content: center; flex-shrink: 0; color: #666;
    }
    .side-menu__item.is-active .side-menu__icon { background: #509753; color: #fff; }

    .side-menu__text strong { display: block; font-size: 0.855rem; font-weight: 600; color: #1a1a1a; }
    .side-menu__text small  { font-size: 0.72rem; color: #888; }

    .side-menu__footer {
      font-size: 0.68rem; color: #ccc; line-height: 1.5;
      padding-top: 1rem; border-top: 1px solid #f0f0f0; margin-top: 0.5rem;
    }

    /* ═══════════════════════════════════════════════════════
       SEÇÃO 1 — HERO
    ═══════════════════════════════════════════════════════ */
    .hero {
      background: #2e5c32;
      overflow: hidden;
      position: relative;
      padding-block: 5rem 0;
    }

    .hero__deco {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .hero__inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: flex-end;
      gap: 3rem;
      margin-top: -3em;
    }

    .hero__content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      padding-bottom: 5rem;
    }

    .hero__title {
      font-family: var(--font-titulo);
      font-size: clamp(2.4rem, 4.5vw, 3.8rem);
      font-weight: 400;
      line-height: 1.08;
      color: #fff;
    }

    .hero__title em {
      display: block;
      font-style: italic;
      color: var(--verde-menta);
    }

    .hero__desc {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.85;
      max-width: 440px;
    }

    .hero__cta {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
    }

    .hero__visual {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      margin: 6em 6em;
    }

    .hero__visual img {
      max-height: 420px;
      object-fit: contain;
      filter: drop-shadow(0 12px 32px rgba(0,0,0,0.25));
    }

    /* ═══════════════════════════════════════════════════════
       SEÇÃO 2 — DESTAQUE (artigo)
    ═══════════════════════════════════════════════════════ */
    .destaque {
      background: #f9f6f0;
      padding-block: 5rem;
    }

    .destaque__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .destaque__img-wrap {
      position: relative;
      border-radius: var(--r-lg);
      overflow: hidden;
    }

    .destaque__img-wrap img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: var(--r-lg);
    }

    .destaque__img-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
      padding: 2rem 1.5rem 1.2rem;
      color: rgba(255,255,255,0.75);
      font-size: 0.72rem;
    }

    .destaque__content {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .destaque__title {
      font-family: var(--font-titulo);
      font-size: clamp(1.6rem, 2.6vw, 2.2rem);
      font-weight: 400;
      line-height: 1.2;
      color: var(--texto);
    }

    .destaque__desc {
      font-size: 0.9rem;
      color: var(--texto-suave);
      line-height: 1.85;
    }

    .destaque__quote {
      border-left: 3px solid var(--verde-floresta);
      padding: 0.8rem 1.2rem;
      background: rgba(80,151,83,0.06);
      border-radius: 0 var(--r-sm) var(--r-sm) 0;
    }

    .destaque__quote p {
      font-family: var(--font-titulo);
      font-style: italic;
      font-size: 0.95rem;
      color: var(--texto);
      line-height: 1.6;
    }

    .destaque__quote cite {
      display: block;
      font-size: 0.75rem;
      color: var(--texto-suave);
      margin-top: 0.4rem;
      font-style: normal;
    }

    .destaque__cta {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    /* ═══════════════════════════════════════════════════════
       SEÇÃO 3 — O QUE É ARTETERAPIA?
    ═══════════════════════════════════════════════════════ */
    .oque {
      background: #fff;
      padding-block: 5rem;
    }

    .oque__header {
      text-align: center;
      max-width: 620px;
      margin-inline: auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 3rem;
    }

    .oque__title {
      font-family: var(--font-titulo);
      font-size: clamp(1.9rem, 3vw, 2.6rem);
      font-weight: 400;
      color: var(--texto);
    }

    .oque__sub {
      font-size: 0.925rem;
      color: var(--texto-suave);
      line-height: 1.8;
    }

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

    .oque-card {
      background: #f8faf8;
      border-radius: var(--r-lg);
      padding: 1.75rem;
      display: flex;
      gap: 1rem;
      border: 1px solid rgba(80,151,83,0.08);
    }

    .oque-card__icon {
      width: 42px;
      height: 42px;
      border-radius: var(--r-full);
      background: rgba(80,151,83,0.12);
      color: var(--verde-floresta);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .oque-card__body strong {
      display: block;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--texto);
      margin-bottom: 0.4rem;
    }

    .oque-card__body p {
      font-size: 0.835rem;
      color: var(--texto-suave);
      line-height: 1.75;
    }

    /* ═══════════════════════════════════════════════════════
       SEÇÃO 4 — MODALIDADES
    ═══════════════════════════════════════════════════════ */
    .modalidades {
      background: #f0eaf8;
      padding-block: 5rem;
    }

    .modalidades__header {
      text-align: center;
      max-width: 560px;
      margin-inline: auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 3rem;
    }

    .modalidades__title {
      font-family: var(--font-titulo);
      font-size: clamp(1.9rem, 3vw, 2.5rem);
      font-weight: 400;
      color: var(--texto);
    }

    .modalidades__sub {
      font-size: 0.9rem;
      color: var(--texto-suave);
      line-height: 1.8;
    }

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

    .modal-card {
      background: #fff;
      border-radius: var(--r-lg);
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      box-shadow: 0 1px 8px rgba(100,50,160,0.05);
      border: 1px solid rgba(189,146,191,0.15);
    }

    .modal-card__icon {
      font-size: 1.5rem;
      line-height: 1;
    }

    .modal-card__title {
      font-family: var(--font-titulo);
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--texto);
    }

    .modal-card__desc {
      font-size: 0.835rem;
      color: var(--texto-suave);
      line-height: 1.75;
    }

    /* ═══════════════════════════════════════════════════════
       SEÇÃO 5 — BENEFÍCIOS
    ═══════════════════════════════════════════════════════ */
    .beneficios {
      background: #fdf0ec;
      padding-block: 5rem;
    }

    .beneficios__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .beneficios__content {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .beneficios__title {
      font-family: var(--font-titulo);
      font-size: clamp(1.8rem, 2.8vw, 2.4rem);
      font-weight: 400;
      color: var(--texto);
    }

    .beneficios__lista {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      list-style: none;
    }

    .beneficios__lista li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-size: 0.875rem;
      color: var(--texto-suave);
      line-height: 1.7;
    }

    .beneficios__lista li::before {
      content: '';
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(80,151,83,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
      background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23509753' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 10px;
    }

    .beneficios__aside {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .beneficios__quote {
      background: #fff;
      border-radius: var(--r-lg);
      padding: 2rem;
      box-shadow: 0 1px 12px rgba(0,0,0,0.05);
    }

    .beneficios__quote p {
      font-family: var(--font-titulo);
      font-style: italic;
      font-size: 1.05rem;
      color: var(--texto);
      line-height: 1.6;
      margin-bottom: 0.75rem;
    }

    .beneficios__quote cite {
      font-size: 0.75rem;
      color: var(--texto-suave);
      font-style: normal;
    }

    .beneficios__fonte {
      font-size: 0.75rem;
      color: var(--texto-suave);
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .beneficios__fonte a {
      color: var(--verde-floresta);
      font-weight: 600;
      text-decoration: underline;
      text-decoration-color: transparent;
      transition: text-decoration-color 0.2s;
    }

    .beneficios__fonte a:hover {
      text-decoration-color: var(--verde-floresta);
    }

    /* ═══════════════════════════════════════════════════════
       SEÇÃO 6 — COMO COMEÇAR?
    ═══════════════════════════════════════════════════════ */
    .comecar {
      background: #f9f6f0;
      padding-block: 5rem;
    }

    .comecar__header {
      text-align: center;
      max-width: 520px;
      margin-inline: auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 3rem;
    }

    .comecar__title {
      font-family: var(--font-titulo);
      font-size: clamp(1.9rem, 3vw, 2.5rem);
      font-weight: 400;
      color: var(--texto);
    }

    .comecar__sub {
      font-size: 0.9rem;
      color: var(--texto-suave);
      line-height: 1.8;
    }

    .comecar__steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .step-card {
      background: #fff;
      border-radius: var(--r-lg);
      padding: 2rem 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      box-shadow: 0 1px 10px rgba(0,0,0,0.05);
    }

    .step-card__num {
      width: 36px;
      height: 36px;
      border-radius: var(--r-full);
      background: var(--verde-floresta);
      color: #fff;
      font-size: 0.875rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .step-card__title {
      font-family: var(--font-titulo);
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--texto);
    }

    .step-card__desc {
      font-size: 0.845rem;
      color: var(--texto-suave);
      line-height: 1.75;
    }

    .comecar__cta {
      text-align: center;
    }

    /* ═══════════════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════════════ */
    .arte-footer {
      background: #1a2b1c;
      padding-block: 2.5rem;
    }

    .arte-footer__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .arte-footer__brand {
      font-family: var(--font-titulo);
      font-size: 0.78rem;
      color: rgba(255,255,255,0.45);
    }

    .arte-footer__brand strong {
      color: var(--verde-menta);
      font-weight: 400;
    }

    .arte-footer__copy {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.28);
    }

    .arte-footer__back {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.45);
      transition: color 0.2s;
    }

    .arte-footer__back:hover { color: var(--verde-menta); }

    /* ── RESPONSIVO ─────────────────────────────────────── */
    @media (max-width: 768px) {
      .hero__inner,
      .destaque__inner,
      .beneficios__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .hero__visual { display: none; }

      .oque__grid { grid-template-columns: 1fr; }

      .modalidades__grid { grid-template-columns: repeat(2, 1fr); }

      .comecar__steps { grid-template-columns: 1fr; }

      .arte-footer__inner { flex-direction: column; text-align: center; }
    }

    @media (max-width: 480px) {
      .modalidades__grid { grid-template-columns: 1fr; }
      .hero__cta { flex-direction: column; }
      .destaque__cta { flex-direction: column; }
    }