    /* =============================================
       DESIGN TOKENS
    ============================================= */
    :root {
      --c-midnight:   #090D10;
      --c-onyx:       #0D0D0D;
      --c-charcoal:   #1C1D20;
      --c-gold:       #D49F4C;
      --c-gold-warm:  #D99A4E;
      --c-muted:      #888890;
      --c-silver:     #E5E5E5;
      --c-ivory:      #F5F3EE;
      --c-white:      #FFFFFF;
      --font-display: 'DM Serif Display', Georgia, serif;
      --font-body:    'DM Sans', system-ui, sans-serif;

      --nav-h: 144px;
      --radius-sm: 6px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --transition: 0.3s ease;
      --shadow-gold: 0 4px 32px rgba(212, 159, 76, 0.15);
      --shadow-card: 0 2px 24px rgba(0,0,0,0.08);
    }

    /* =============================================
       RESET & BASE
    ============================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font-body);
      color: var(--c-onyx);
      background: var(--c-white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

    /* =============================================
       CUSTOM SCROLLBAR (gold gradient — matches hero CTA)
    ============================================= */
    *::-webkit-scrollbar {
      width: 7px;
    }

    *::-webkit-scrollbar-track {
      background-color: #1a1a1a;
    }

    *::-webkit-scrollbar-thumb {
      background: linear-gradient(
        180deg,
        #f5d76e,
        #9c6b30
      );
      border-radius: 12px;
      border: 2px solid #1a1a1a;
    }

    /* =============================================
       TYPOGRAPHY HELPERS
    ============================================= */
    .eyebrow {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--c-gold);
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3.5vw, 2.75rem);
      line-height: 1.2;
      font-weight: 400;
    }

    .section-title--light { color: var(--c-white); }
    .section-title--dark  { color: var(--c-onyx); }

    .section-subtitle {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--c-muted);
      max-width: 600px;
    }

    /* =============================================
       BUTTONS
    ============================================= */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      padding: 0.85rem 1.75rem;
      transition: all var(--transition);
      white-space: nowrap;
      letter-spacing: 0.01em;
    }

    .btn--gold {
      background: var(--c-gold);
      color: var(--c-midnight);
    }
    .btn--gold:hover {
      background: var(--c-gold-warm);
      transform: translateY(-2px);
      box-shadow: var(--shadow-gold);
    }

    .btn--gold-outline {
      background: transparent;
      color: var(--c-gold);
      border: 1.5px solid var(--c-gold);
    }
    .btn--gold-outline:hover {
      background: var(--c-gold);
      color: var(--c-midnight);
      transform: translateY(-2px);
    }

    .btn--dark {
      background: var(--c-charcoal);
      color: var(--c-silver);
      border: 1.5px solid rgba(255,255,255,0.1);
    }
    .btn--dark:hover {
      background: #2a2b2f;
      color: var(--c-white);
      transform: translateY(-2px);
    }

    .btn--lg {
      font-size: 1.05rem;
      padding: 1rem 2.25rem;
    }

    /* =============================================
       LAYOUT HELPERS
    ============================================= */
    .container {
      width: 100%;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }

    .section {
      padding-top: 5.5rem;
      padding-bottom: 5.5rem;
    }

    .section--sm {
      padding-top: 4rem;
      padding-bottom: 4rem;
    }

    /* =============================================
       TOP INFO BAR
    ============================================= */
    .topbar {
      background: var(--c-onyx);
      height: 48px;
      display: flex;
      align-items: center;
      overflow: hidden;
      font-family: 'Manrope', var(--font-body);
      font-weight: 400;
      transition: height var(--transition), opacity var(--transition);
    }

    /* Collapse the toolbar once the page is scrolled */
    .site-header.is-scrolled .topbar {
      height: 0;
      opacity: 0;
    }

    /* Dark state when header is fixed/scrolled */
    .nav__logo img.nav__logo-img--dark { display: none; }
    .site-header.is-scrolled .nav {
      background: #000000;
      border-bottom-color: rgba(255,255,255,0.08);
      transition: background var(--transition);
    }
    .site-header.is-scrolled .nav__links a { color: var(--c-silver); }
    .site-header.is-scrolled .nav__links a:hover,
    .site-header.is-scrolled .nav__links a.active { color: var(--c-gold); }
    .site-header.is-scrolled .nav__hamburger span { background: var(--c-white); }
    .site-header.is-scrolled .nav__logo img.nav__logo-img--light { display: none; }
    .site-header.is-scrolled .nav__logo img.nav__logo-img--dark { display: block; }

    .topbar__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .topbar__group {
      display: flex;
      align-items: center;
      gap: 1.75rem;
    }

    .topbar__item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Manrope', var(--font-body);
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: rgb(255, 255, 255);
      white-space: nowrap;
      transition: color 0.2s;
    }

    .topbar__item:hover { color: var(--c-gold); }
    .topbar__item svg { flex-shrink: 0; opacity: 0.95; }

    /* =============================================
       NAVIGATION
    ============================================= */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .nav {
      height: var(--nav-h);
      background: var(--c-white);
      border-bottom: 1px solid var(--c-silver);
      box-shadow: var(--shadow-card);
    }

    .nav__inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .nav__logo img {
      height: 124px;
      width: auto;
      display: block;
    }

    .nav__links {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav__links a {
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--c-charcoal);
      padding: 0.4rem 0.95rem;
      border-radius: var(--radius-sm);
      transition: color var(--transition);
      white-space: nowrap;
    }

    .nav__links a:hover { color: var(--c-gold); }
    .nav__links a.active { color: var(--c-gold); }

    /* Pill CTA button in nav */
    .nav__cta-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
      color: var(--c-white);
      font-family: var(--font-body);
      font-size: 0.975rem;
      font-weight: 600;
      padding: 0.6rem 1.4rem;
      border-radius: 9999px;
      transition: all var(--transition);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .nav__cta-pill:hover {
      background: linear-gradient(135deg, #2ee06f 0%, #16a085 100%);
      transform: translateY(-1px);
      box-shadow: 0 4px 18px rgba(37,211,102,0.45);
    }
    .nav__cta-pill svg {
      flex-shrink: 0;
    }

    .nav__hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      padding: 4px;
      cursor: pointer;
      background: none;
      border: none;
    }

    .nav__hamburger span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--c-charcoal);
      border-radius: 2px;
      transition: all var(--transition);
    }

    .nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile menu */
    .nav__mobile {
      display: none;
      background: var(--c-white);
      border-top: 1px solid var(--c-silver);
      padding: 1rem 1.5rem 1.5rem;
      flex-direction: column;
      gap: 0.125rem;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    }

    .nav__mobile.open { display: flex; }

    .nav__mobile a {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--c-charcoal);
      padding: 0.65rem 0.5rem;
      border-bottom: 1px solid var(--c-silver);
      transition: color var(--transition);
    }
    .nav__mobile a:last-of-type { border-bottom: none; }
    .nav__mobile a:hover { color: var(--c-gold); }

    .nav__mobile-cta {
      margin-top: 1rem;
    }
    .nav__mobile-cta .nav__cta-pill { width: 100%; justify-content: center; }

    /* =============================================
       SECTION 1 — HERO
    ============================================= */
    .hero {
      position: relative;
      height: calc(100vh - 40px - var(--nav-h));
      min-height: 480px;
      max-height: 541px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Full-bleed background image */
    .hero__bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      transform: scale(1.02);
      transition: transform 10s ease;
    }
    .hero:hover .hero__bg { transform: scale(1.08); }

    /* Dark overlay */
    .hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(9,13,16,0.72) 0%,
        rgba(9,13,16,0.60) 50%,
        rgba(9,13,16,0.68) 100%
      );
      z-index: 1;
    }

    /* Centered content */
    .hero__content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 780px;
      padding: 0 2rem;
    }

    .hero__eyebrow {
      display: block;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 400;
      color: rgba(255,255,255,0.82);
      margin-bottom: 1.1rem;
      letter-spacing: 0.02em;
    }

    .hero__title {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 5vw, 4rem);
      line-height: 1.12;
      color: var(--c-white);
      font-weight: 400;
      margin-bottom: 2.25rem;
    }

    /* Pill CTA — shared style (hero + all sections) */
    .cta-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(212,159,76,0.92);
      color: var(--c-midnight);
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 600;
      padding: 0.875rem 2rem;
      border-radius: 9999px;
      transition: all 0.3s ease;
      letter-spacing: 0.01em;
    }
    .cta-primary:hover {
      background: var(--c-gold);
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(212,159,76,0.4);
    }
    .cta-primary--wa {
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
      color: var(--c-white);
      font-size: 1.15rem;
    }
    .cta-primary--wa:hover {
      background: linear-gradient(135deg, #2ee06f 0%, #16a085 100%);
      box-shadow: 0 6px 28px rgba(37,211,102,0.45);
    }

    /* =============================================
       MARQUEE (faixa horizontal de perguntas)
    ============================================= */
    .marquee {
      overflow: hidden;
      white-space: nowrap;
      background: linear-gradient(90deg, #b8842f 0%, #D49F4C 50%, #D99A4E 100%);
      padding: 0.9rem 0;
      border-top: 1px solid rgba(9,13,16,0.12);
      border-bottom: 1px solid rgba(9,13,16,0.12);
    }
    .marquee__track {
      display: inline-flex;
      align-items: center;
      animation: marquee-scroll 36s linear infinite;
      will-change: transform;
    }
    .marquee:hover .marquee__track {
      animation-play-state: paused;
    }
    .marquee__item {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0 2rem;
      color: var(--c-midnight);
      font-family: var(--font-body);
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.01em;
    }
    .marquee__item span {
      color: var(--c-ivory);
      font-size: 0.9rem;
    }
    @keyframes marquee-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .marquee__track { animation: none; }
    }

    /* Slider arrows */
    .hero__arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: 1.5px solid rgba(255,255,255,0.3);
      color: var(--c-white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.25s, border-color 0.25s;
      backdrop-filter: blur(4px);
    }
    .hero__arrow:hover {
      background: rgba(255,255,255,0.22);
      border-color: rgba(255,255,255,0.5);
    }
    .hero__arrow svg { pointer-events: none; }
    .hero__arrow--prev { left: 2rem; }
    .hero__arrow--next { right: 2rem; }

    /* =============================================
       SECTION 2 — PROBLEMA
    ============================================= */
    .problema {
      background: var(--c-ivory);
    }

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

    .problema__left {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .problema__title {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      line-height: 1.25;
      color: var(--c-onyx);
      margin-bottom: 1.25rem;
      font-weight: 400;
    }

    .problema__lead {
      font-size: 1.05rem;
      color: #444;
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    .problema__closing {
      font-size: 1rem;
      color: #444;
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .problema__closing--highlight {
      font-weight: 500;
      color: var(--c-onyx);
    }

    .problema__cta {
      margin-top: 2rem;
    }

    .problema__cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    /* Preview de imagem — recorte de cima pra baixo, cabeça preservada */
    .problema__preview {
      position: relative;
      border-radius: var(--radius-sm);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--c-ivory);
    }
    .problema__preview img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .quote-card {
      background: var(--c-white);
      border-left: 4px solid var(--c-gold);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      padding: 1.1rem 1.4rem;
      font-size: 1rem;
      color: #333;
      font-style: italic;
      line-height: 1.6;
      box-shadow: var(--shadow-card);
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .quote-card:hover {
      transform: translateX(4px);
      box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    }

    .quote-card::before {
      content: '"';
      font-family: var(--font-display);
      font-size: 2.5rem;
      color: var(--c-gold);
      line-height: 0;
      vertical-align: -0.6rem;
      margin-right: 0.3rem;
      opacity: 0.7;
    }

    /* =============================================
       SECTION 3 — COMO FUNCIONA
    ============================================= */
    .como-funciona {
      background: var(--c-charcoal);
      position: relative;
      overflow: hidden;
    }

    /* fundo: mesma imagem da hero, bem desfocada */
    .como-funciona::before {
      content: '';
      position: absolute;
      inset: -40px;
      background-image: url('../img/orientacao-acidente-trabalho-aurea-athena.webp');
      background-size: cover;
      background-position: center;
      filter: blur(28px);
      transform: scale(1.1);
      opacity: 0.5;
      z-index: 0;
    }
    /* camada escura por cima da imagem para manter o texto legível */
    .como-funciona::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(9,13,16,0.78);
      z-index: 0;
    }
    .como-funciona .container {
      position: relative;
      z-index: 1;
    }

    .como-funciona__header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .como-funciona__header .section-subtitle {
      margin: 1rem auto 0;
      color: rgba(229,229,229,0.6);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-bottom: 3.5rem;
    }

    .step {
      position: relative;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(212,159,76,0.12);
      border-radius: var(--radius-md);
      padding: 2.25rem 1.75rem 2rem;
      transition: background var(--transition), border-color var(--transition), transform var(--transition);
    }

    .step:hover {
      background: rgba(212,159,76,0.06);
      border-color: rgba(212,159,76,0.3);
      transform: translateY(-4px);
    }

    /* connector line between steps */
    .step:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 2.75rem;
      right: -1.1rem;
      width: 2rem;
      height: 1px;
      background: linear-gradient(to right, rgba(212,159,76,0.4), transparent);
    }

    .step__number {
      font-family: var(--font-display);
      font-size: 3.5rem;
      line-height: 1;
      color: rgba(212,159,76,0.15);
      margin-bottom: 1.25rem;
      font-weight: 400;
      letter-spacing: -0.02em;
    }

    .step__title {
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: var(--c-white);
      margin-bottom: 0.75rem;
      font-weight: 400;
    }

    .step__text {
      font-size: 0.95rem;
      color: rgba(229,229,229,0.65);
      line-height: 1.7;
    }

    .como-funciona__cta {
      text-align: center;
    }

    /* =============================================
       SECTION 4 — DIFERENCIAIS
    ============================================= */
    .diferenciais {
      background: var(--c-white);
    }

    .diferenciais__header {
      max-width: 680px;
      margin-bottom: 3.5rem;
    }

    .diferenciais__sub {
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: var(--c-onyx);
      font-style: italic;
      margin-top: 0.75rem;
      margin-bottom: 1rem;
    }

    .diferenciais__lead {
      font-size: 1rem;
      color: #555;
      line-height: 1.7;
    }

    /* Lista de diferenciais (estilo index/portfólio) */
    .diff-list {
      margin-bottom: 3rem;
      border-top: 1px solid rgba(0,0,0,0.1);
    }

    .diff-row {
      position: relative;
      display: grid;
      grid-template-columns: 70px 1fr auto;
      align-items: center;
      gap: 2.5rem;
      padding: 2.4rem 1.25rem;
      border-bottom: 1px solid rgba(0,0,0,0.1);
      overflow: hidden;
      transition: background var(--transition);
    }

    /* preenchimento dourado que entra da esquerda no hover */
    .diff-row::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: var(--c-ivory);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--transition);
      z-index: 0;
    }
    .diff-row:hover::before { transform: scaleX(1); }

    .diff-row > * { position: relative; z-index: 1; }

    .diff-row__num {
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      color: #999;
      transition: color var(--transition);
    }

    .diff-row__title {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 2.4vw, 2rem);
      font-weight: 400;
      color: var(--c-onyx);
      line-height: 1.2;
      margin-bottom: 0.35rem;
      transition: transform var(--transition), color var(--transition);
    }

    .diff-row__desc {
      font-size: 0.95rem;
      color: #777;
      line-height: 1.5;
      transition: transform var(--transition);
    }

    .diff-row__meta {
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: #555;
      text-align: right;
      white-space: nowrap;
      transition: color var(--transition), transform var(--transition);
    }

    /* animação de hover */
    .diff-row:hover .diff-row__num { color: var(--c-gold); }
    .diff-row:hover .diff-row__title {
      color: var(--c-gold);
      transform: translateX(12px);
    }
    .diff-row:hover .diff-row__desc { transform: translateX(12px); }
    .diff-row:hover .diff-row__meta {
      color: var(--c-gold);
      transform: translateX(-6px);
    }

    .diferenciais__cta {
      text-align: center;
    }

    /* =============================================
       SECTION 5 — FAQ
    ============================================= */
    .faq {
      background: var(--c-ivory);
    }

    .faq__header {
      text-align: center;
      margin-bottom: 3.25rem;
    }

    .faq__header .eyebrow {
      display: inline-block;
      margin-bottom: 0.75rem;
    }

    .faq__intro {
      max-width: 540px;
      margin: 1rem auto 0;
      font-size: 1.02rem;
      color: #666;
      line-height: 1.7;
    }

    .faq__list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.9rem;
      align-items: start;
    }

    .faq-item {
      background: var(--c-white);
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: var(--radius-md);
      box-shadow: 0 1px 2px rgba(0,0,0,0.03);
      overflow: hidden;
      transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    }

    .faq-item:hover {
      border-color: rgba(212,159,76,0.4);
      box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    }

    /* faixa dourada lateral quando aberta */
    .faq-item:has(.faq-item__trigger[aria-expanded="true"]) {
      border-color: rgba(212,159,76,0.55);
      box-shadow: 0 10px 32px rgba(212,159,76,0.12);
    }

    .faq-item__trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.25rem;
      padding: 1.5rem 1.6rem;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--c-onyx);
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: var(--font-body);
      line-height: 1.45;
      transition: color var(--transition);
    }

    .faq-item__trigger:hover {
      color: var(--c-gold);
    }

    .faq-item__trigger[aria-expanded="true"] {
      color: var(--c-gold);
    }

    .faq-item__icon {
      flex-shrink: 0;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 1.5px solid currentColor;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform var(--transition), background var(--transition), border-color var(--transition);
    }

    .faq-item__trigger[aria-expanded="true"] .faq-item__icon {
      background: var(--c-gold);
      border-color: var(--c-gold);
      transform: rotate(135deg);
    }

    .faq-item__icon svg {
      width: 13px;
      height: 13px;
      stroke: currentColor;
    }

    .faq-item__trigger[aria-expanded="true"] .faq-item__icon svg {
      stroke: var(--c-midnight);
    }

    .faq-item__body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .faq-item__body.open {
      max-height: 500px;
    }

    .faq-item__answer {
      margin: 0 1.6rem;
      padding: 1.2rem 0 1.6rem;
      font-size: 0.975rem;
      color: #555;
      line-height: 1.75;
      border-top: 1px solid rgba(0,0,0,0.06);
    }

    /* =============================================
       SECTION 6 — CTA FINAL
    ============================================= */
    .cta-final {
      background-image:
        linear-gradient(rgba(9,13,16,0.86), rgba(9,13,16,0.88)),
        url('../img/assessoria-acidentaria-cta-aurea-athena.webp');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-top: 6px solid;
      border-image: linear-gradient(
        to right,
        #D49F4C,
        #F5F3EE,
        #D49F4C
      ) 1;
    }

    .cta-final::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212,159,76,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-final__inner {
      position: relative;
      z-index: 1;
      max-width: 680px;
      margin: 0 auto;
    }

    .cta-final__title {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2.8vw, 2.2rem);
      color: var(--c-white);
      margin-bottom: 1.25rem;
      line-height: 1.2;
      font-weight: 400;
    }

    .cta-final__text {
      font-size: 1.05rem;
      color: rgba(229,229,229,0.7);
      line-height: 1.75;
      margin-bottom: 2.5rem;
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
    }

    /* =============================================
       FOOTER
    ============================================= */
    .footer {
      background: var(--c-midnight);
      border-top: 1px solid rgba(212,159,76,0.1);
      padding-top: 4rem;
      padding-bottom: 0;
    }

    .footer__grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .footer__logo img {
      width: 220px;
      max-width: 100%;
      height: auto;
      margin-bottom: 1rem;
    }

    .footer__tagline {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.7;
      max-width: 340px;
    }

    .footer__col-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--c-gold);
      margin-bottom: 0.75rem;
      display: block;
    }

    .footer__address p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.65;
    }

    .footer__contact-label {
      margin-top: 1.5rem;
    }

    .footer__phone {
      font-size: 1rem;
      font-weight: 600;
      color: var(--c-silver);
    }

    .footer__socials {
      display: flex;
      gap: 0.75rem;
      margin-top: 0.25rem;
    }

    .footer__social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.5);
      transition: all var(--transition);
    }

    .footer__social-link:hover {
      border-color: var(--c-gold);
      color: var(--c-gold);
      background: rgba(212,159,76,0.08);
      transform: translateY(-2px);
    }

    .footer__social-link svg {
      width: 18px;
      height: 18px;
    }

    .footer__bottom {
      padding: 1.25rem 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .footer__copy {
      font-size: 0.825rem;
      color: rgba(255,255,255,0.3);
    }

    .footer__left {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .footer__privacy {
      font-size: 0.825rem;
      color: var(--c-gold);
      text-decoration: none;
    }

    .footer__webformas {
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
      opacity: 0.8;
      transition: opacity var(--transition);
    }
    .footer__webformas:hover { opacity: 1; }
    .footer__webformas img {
      height: 58px;
      width: auto;
      display: block;
    }

    /* =============================================
       FLOATING WHATSAPP
    ============================================= */
    .wa-float {
      position: fixed;
      bottom: 1.75rem;
      right: 1.75rem;
      z-index: 999;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
      animation: wa-pulse 2.5s ease-in-out infinite;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .wa-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
      animation: none;
    }

    .wa-float svg {
      width: 30px;
      height: 30px;
      fill: #fff;
    }

    @keyframes wa-pulse {
      0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
      50%  { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
      100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
    }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 1024px) {
      .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 5rem 1.5rem 4rem;
        gap: 3rem;
      }
      .hero__sub { max-width: 100%; margin-left: auto; margin-right: auto; }
      .hero__cta-group { justify-content: center; }
      .hero__trust { justify-content: center; }

      .hero__deco {
        height: 300px;
      }
      .hero__deco-ring--1 { width: 280px; height: 280px; }
      .hero__deco-ring--2 { width: 210px; height: 210px; }
      .hero__deco-ring--3 { width: 130px; height: 130px; }

      .problema__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .problema__preview {
        min-height: 320px;
        order: -1;
      }

      .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .step:not(:last-child)::after { display: none; }

      .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }

      .footer__col--brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 768px) {
      /* Barra mobile mais alta para dar respiro (top/bottom) à logo em tamanho original */
      :root { --nav-h: 144px; }

      .topbar { display: none; }

      .nav__links,
      .nav__cta-pill { display: none; }
      .nav__hamburger { display: flex; }

      .hero {
        height: calc(100vh - var(--nav-h));
        min-height: 360px;
      }
      .hero__title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
      .hero__arrow { display: none; }

      .diff-row {
        grid-template-columns: 44px 1fr;
        gap: 1rem 1.25rem;
        padding: 1.3rem 0.5rem;
      }
      .diff-row__meta {
        grid-column: 2;
        text-align: left;
        font-size: 0.82rem;
        color: var(--c-gold);
      }
      .diff-row:hover .diff-row__title,
      .diff-row:hover .diff-row__desc { transform: translateX(6px); }
      .diff-row:hover .diff-row__meta { transform: none; }

      .faq-item__trigger {
        padding: 1.2rem 1.1rem;
        font-size: 0.98rem;
      }
      .faq-item__answer { margin: 0 1.1rem; }

      .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .footer__col--brand { grid-column: auto; }

      .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
      }

      .footer__left { justify-content: center; }

      .section {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
      }
    }

    @media (max-width: 768px) {
      .faq__list { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .btn--lg {
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
      }
      .hero__content { padding: 0 1.25rem; }
      .hero__title { font-size: 1.8rem; }
      .hero__bg { background-image: url('../img/orientacao-600.webp') !important; }
    }

    /* =============================================
       CURSOR PERSONALIZADO (anel + ponto)
    ============================================= */
    @media (hover: hover) and (pointer: fine) {
      * { cursor: none; }

      /* botões e links mostram a mãozinha normal (inclui filhos: img, svg, span...) */
      a, a *, button, button *,
      input[type="submit"], input[type="button"],
      label, select, [role="button"], [role="button"] *,
      .faq-item__trigger, .faq-item__trigger * {
        cursor: pointer;
      }

      .cursor-ring,
      .cursor-dot {
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 99999;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        will-change: transform;
      }

      .cursor-ring {
        width: 38px;
        height: 38px;
        border: 1.5px solid var(--c-gold);
        transition: opacity 0.2s ease;
      }

      .cursor-dot {
        width: 8px;
        height: 8px;
        background: var(--c-gold);
        transition: opacity 0.2s ease;
      }
    }

    /* ── LGPD Banner ── */
    .lgpd-banner {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: var(--c-onyx);
      border-top: 2px solid rgba(212,159,76,0.3);
      z-index: 9998;
      padding: 1rem 1.5rem;
      display: none;
      animation: slideUp 0.4s ease forwards;
    }
    .lgpd-banner.visible { display: flex; }
    .lgpd-banner__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      flex-wrap: wrap;
    }
    .lgpd-banner__text { font-size: 0.875rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
    .lgpd-banner__link { color: var(--c-gold); text-decoration: underline; transition: opacity 0.2s; }
    .lgpd-banner__link:hover { opacity: 0.8; }
    .lgpd-banner__btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
    .lgpd-banner__btn {
      background: var(--c-gold);
      color: var(--c-midnight);
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 700;
      padding: 0.6rem 1.5rem;
      border-radius: 9999px;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }
    .lgpd-banner__btn:hover { background: var(--c-gold-warm); }
    .lgpd-banner__btn--recusar {
      background: transparent;
      color: rgba(255,255,255,0.6);
      border: 1px solid rgba(255,255,255,0.25);
    }
    .lgpd-banner__btn--recusar:hover { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }
    @keyframes slideUp {
      from { transform: translateY(100%); opacity: 0; }
      to   { transform: translateY(0); opacity: 1; }
    }
    @media (max-width: 600px) {
      .lgpd-banner__inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
      .lgpd-banner__btns { width: 100%; flex-direction: column; }
      .lgpd-banner__btn { width: 100%; text-align: center; }
    }
