    /* ============================================================
       TOKENS
    ============================================================ */
    :root {
      --bg-dark: #1C1C24;
      --bg-darker: #141418;
      --bg-white: #FFFFFF;
      --bg-gray: #F5F4F0;
      --accent: #E24B4A;
      --text-dark: #1C1C24;
      --text-muted: #888888;
      --border-lt: #E8E6E0;
      --border-dk: rgba(255, 255, 255, 0.07);
      --radius: 6px;
      --px: 28px;
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }
    .footer-copy{
    display:none;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
      background: var(--bg-white);
      color: var(--text-dark);
      line-height: 1.6;
      padding-bottom: 58px;
      /* reserva para a sticky bar */
    }

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

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

    button {
      cursor: pointer;
      font-family: inherit;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* ============================================================
       BOTÕES
    ============================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      font-size: 14px;
      font-weight: 500;
      padding: 9px 16px;
      border-radius: 4px;
      border: none;
      white-space: nowrap;
      transition: opacity 0.2s;
      text-decoration: none;
    }

    .btn:hover {
      opacity: 0.85;
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
    }

    .btn-ghost {
      background: transparent;
      color: rgba(255, 255, 255, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .btn-coral {
      background: transparent;
      color: var(--accent);
      border: 1.5px solid var(--accent);
    }

    .btn-dark {
      background: var(--bg-dark);
      color: #fff;
    }

    .btn-outline {
      background: transparent;
      color: #555;
      border: 1px solid var(--border-lt);
    }

    /* ============================================================
       LABEL DE SEÇÃO
    ============================================================ */
    .sec-label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }

    /* ============================================================
       NAVEGAÇÃO
    ============================================================ */
    .site-nav {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--bg-dark);
      border-bottom: 1px solid var(--border-dk);

      padding: 0 var(--px);
      height: 52px;
    }

    .nav-logo {
      font-size: 0;
      width: 0;
      overflow: hidden;
      display: inline-block;
    }

    .nav-links {
      display: flex;
      gap: 20px;
      align-items: center;
      list-style: none;
    }

    .nav-links a {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.81);
      transition: color 0.2s;
      white-space: nowrap;
    }

    .nav-links a:hover {
      color: #fff;
    }

    /* ============================================================
       NAVEGAÇÃO — HAMBURGUER
    ============================================================ */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: transparent;
      border: none;
      padding: 6px;
      cursor: pointer;
      z-index: 200;
    }

    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
    }

    /* Estado aberto */
    .nav-hamburger.is-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.is-open span:nth-child(2) {
      opacity: 0;
    }

    .nav-hamburger.is-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ============================================================
       HERO
    ============================================================ */
    .hero {
      background: var(--bg-dark);
      display: flex;
      flex-direction: column;
    }

    /* Linha superior: texto esquerda | vídeo direita */
    .hero-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 580px;
    }

    /* Ocultar botões mobile no desktop */
    .hero-bottom {
      display: none;
    }

    .hero-btns--desktop {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .hero-left {
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .hero-inner {
      padding: 48px var(--px) 36px;
      max-width: 560px;
      width: 100%;
    }

    .hero-logo-wrapper {
      margin-bottom: 28px;
    }

    .hero-logo {
      height: 52px;
      width: auto;
      display: block;
      filter: brightness(0) invert(1);
    }

    .hero-terms {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 24px;
    }

    .hero-term {
      font-size: 20px;
      font-weight: 400;
      line-height: 1.4;
    }

    /* ── Controle individual de cada termo ──────────────────
       Ajuste font-size e color de cada um separadamente      */
    .hero-term--empresaria {
      font-size: 42px;
      color: rgba(255, 255, 255, 0.66);
      line-height: 1;
    }

    .hero-term--pesquisadora {
      font-size: 32px;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1;
    }

    .hero-term--educadora {
      font-size: 32px;
      color: var(--accent);
      line-height: 1;
    }

    .hero-divider {
      width: 32px;
      height: 2px;
      background: var(--accent);
      margin-bottom: 20px;
    }

    .hero-sub {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.83);
      line-height: 1.85;
      max-width: 370px;
    }

    /* Lado direito do hero — vídeo */
    .hero-video {
      position: relative;
      background: #111116;
      border-left: 1px solid var(--border-dk);
      overflow: hidden;
      min-height: 260px;
    }

    .hero-video__thumb {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.65;
    }

    .hero-video__iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      display: none;
    }

    .hero-video__overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      cursor: pointer;
    }

    .play-btn {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(226, 75, 74, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      transition: transform 0.2s, background 0.2s;
    }

    .play-btn:hover {
      transform: scale(1.08);
    }

    .play-icon {
      width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-left: 17px solid #fff;
      margin-left: 4px;
    }

    .hero-video__caption {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.55);
      text-align: center;
      padding: 0 20px;
      line-height: 1.5;
      letter-spacing: 0.03em;
    }

    /* ============================================================
       BARRA DE STATS
    ============================================================ */
    .stats-bar {
      background: var(--bg-darker);

      border-top: 1px solid var(--border-dk);
    }

    .stat {
      padding: 16px var(--px);
      border-right: 1px solid var(--border-dk);
    }

    .stat:last-child {
      border-right: none;
    }

    .stat__num {
      font-size: 22px;
      font-weight: 500;
      color: #fff;
      line-height: 1;
    }

    .stat__label {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.57);
      margin-top: 4px;
      letter-spacing: 0.04em;
    }

    /* ============================================================
       SEÇÕES — BASE
    ============================================================ */
    .section {
      padding: 48px var(--px);
      border-top: 1px solid var(--border-lt);
    }

    .section--white {
      background: var(--bg-white);
    }

    .section--gray {
      background: var(--bg-gray);
    }

    .section--dark {
      background: var(--bg-dark);
      border-top-color: var(--border-dk);
    }

    .section__title {
      font-size: 22px;
      font-weight: 500;
      color: var(--text-dark);
      margin-bottom: 10px;
    }

    .section__body {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.85;
      max-width: 560px;
      margin-bottom: 20px;
    }

    /* ============================================================
       PESQUISA — TIMELINE
    ============================================================ */
    .timeline {
      display: flex;
      align-items: flex-start;
    }

    .tl-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex: 1;
    }

    .tl-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #D8D6D0;
      margin-bottom: 7px;
      flex-shrink: 0;
    }

    .tl-dot--on {
      background: var(--accent);
    }

    .tl-dot--latest {
      background: #fff;
      border: 2px solid var(--accent);
    }

    .tl-connector {
      flex: 1;
      height: 1px;
      background: #E0DED8;
      margin-top: 4px;
    }

    .tl-label {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }

    .tl-year {
      font-size: 18px;
      font-weight: 500;
      color: var(--text-dark);
    }

    .tl-dl {
      font-size: 15px;
      color: var(--accent);
      font-weight: 500;
      transition: opacity 0.2s;
    }

    .tl-dl:hover {
      opacity: 0.7;
    }

    /* ============================================================
       PUBLICAÇÕES
    ============================================================ */
    .pub-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .pub-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 12px 14px;
      background: var(--bg-white);
      border: 1px solid var(--border-lt);
      border-radius: var(--radius);
    }

    .pub-row--placeholder {
      opacity: 0.38;
    }

    .pub-year {
      font-size: 13px;
      font-weight: 600;
      color: var(--accent);
      min-width: 36px;
      flex-shrink: 0;
      padding-top: 1px;
    }

    .pub-info {
      flex: 1;
    }

    .pub-title {
      font-size: 15px;
      color: #333;
      line-height: 1.5;
    }

    .pub-meta {
      font-size: 14px;
      color: var(--text-muted);
      margin-top: 3px;
    }

    .pub-link {
      font-size: 13px;
      color: var(--accent);
      font-weight: 500;
      flex-shrink: 0;
      padding-top: 1px;
      white-space: nowrap;
      transition: opacity 0.2s;
    }

    .pub-link:hover {
      opacity: 0.7;
    }

    /* ============================================================
       PAINÉIS E MÍDIA
    ============================================================ */
    .midia-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .midia-col__title {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 10px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--border-lt);
    }

    .midia-items {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .midia-item {
      display: flex;
      flex-direction: column;
      padding: 10px 12px;
      background: var(--bg-gray);
      border: 1px solid var(--border-lt);
      border-radius: var(--radius);
      transition: border-color 0.2s;
    }

    a.midia-item:hover {
      border-color: var(--accent);
    }

    .midia-item__name {
      font-size: 14px;
      font-weight: 500;
      
      color: var(--text-dark);
    }

    .midia-item__detail {
      font-size: 14px;
      color: var(--text-muted);
      margin-top: 2px;
    }

    /* ============================================================
       MUSIC RIO ACADEMY
    ============================================================ */
    .academy-nums {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 18px;
    }

    .academy-num {
      background: var(--bg-white);
      border: 1px solid var(--border-lt);
      border-radius: var(--radius);
      padding: 14px;
      text-align: center;
    }

    .academy-num__val {
      font-size: 19px;
      font-weight: 500;
      color: var(--text-dark);
    }

    .academy-num__label {
      font-size: 10px;
      color: var(--text-muted);
      margin-top: 3px;
    }

    /* ============================================================
       CONSULTORIA
    ============================================================ */
    #consultoria {
      text-align: center;
    }

    #consultoria .section__title {
      margin-left: auto;
      margin-right: auto;
    }

    .consult-body {
      font-size: 15px;
      color: #555;
      line-height: 1.9;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 24px;
    }

    .consult-body p+p {
      margin-top: 14px;
    }

    /* ============================================================
       SOBRE
    ============================================================ */
    .sobre-grid {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 36px;
      align-items: start;
    }

    .sobre-photo {
      width: 320px;
      height: 390px;
      border-radius: var(--radius);
      object-fit: cover;
      object-position: center top;
    }

    .sobre-photo-ph {
      width: 160px;
      height: 200px;
      border-radius: var(--radius);
      background: linear-gradient(135deg, #E8E6E0, #D0CEC8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      color: #999;
      text-align: center;
      padding: 12px;
    }

    .sobre-content {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .sobre-content p {
      font-size: 14px;
      color: #555;
      line-height: 1.85;
    }

    .sobre-content a.accent-link {
      color: var(--accent);
    }

    .sobre-content a.accent-link:hover {
      opacity: 0.75;
    }

    .linkedin-link {
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 500;
      color: var(--accent);
      margin-top: 4px;
      transition: opacity 0.2s;
    }

    .linkedin-link:hover {
      opacity: 0.75;
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    .footer {
      background: var(--bg-dark);
      padding: 32px var(--px);
      border-top: 1px solid var(--border-dk);

    }

    .footer__cta {
      font-size: 15px;
      font-weight: 500;
      color: #fff;
    }

    .footer__sub {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.32);
      margin-top: 4px;
    }

    .footer__sub a {
      color: white;
      transition: color 0.2s;
      
    }

    .footer__sub a:hover {
      color: #fff;
    }

    .footer-btns {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .footer-copy {
      background: var(--bg-dark);
      padding: 14px var(--px);
      border-top: 1px solid var(--border-dk);
      text-align: center;
      font-size: 10px;
      color: rgba(255, 255, 255, 0.18);
    }

    /* ============================================================
       STICKY BAR — CAPTAÇÃO DE LEADS
    ============================================================ */
    .sticky-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #fff;
      border-top: 1px solid var(--border-lt);
      box-shadow: 0 -3px 18px rgba(0, 0, 0, 0.07);
      padding: 16px var(--px);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      z-index: 100;
    }

    .sticky-bar__accent {
      width: 2px;
      height: 20px;
      background: var(--accent);
      border-radius: 2px;
      flex-shrink: 0;
    }

    .sticky-bar__label {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-dark);
      white-space: nowrap;
    }

    .sticky-bar__input {
      flex: 1;
      min-width: 0;
      max-width: 220px;
      background: var(--bg-gray);
      border: 1px solid var(--border-lt);
      border-radius: 4px;
      padding: 10px 14px;
      font-size: 14px;
      color: var(--text-dark);
      font-family: inherit;
      outline: none;
      transition: border-color 0.2s;
    }

    .sticky-bar__input:focus {
      border-color: var(--accent);
    }

    .sticky-bar__input::placeholder {
      color: #ccc;
    }

    .sticky-bar__divider {
      width: 1px;
      height: 24px;
      background: var(--border-lt);
      flex-shrink: 0;
    }

    .sticky-bar__send {
      background: var(--accent);
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      padding: 11px 20px;
      border-radius: 4px;
      border: none;
      white-space: nowrap;
      transition: opacity 0.2s;
    }

    .sticky-bar__send:hover {
      opacity: 0.85;
    }

    .sticky-bar__wpp {
      background: var(--bg-dark);
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      padding: 11px 18px;
      border-radius: 4px;
      border: none;
      white-space: nowrap;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: opacity 0.2s;
    }

    .sticky-bar__wpp:hover {
      opacity: 0.85;
    }

    /* ============================================================
       RESPONSIVO
    ============================================================ */
    @media (max-width: 900px) {

      /* --- Menu hamburguer --- */
      .nav-links {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }

      /* Menu aberto (classe toggled via JS) */
      .nav-links.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 52px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        border-bottom: 1px solid var(--border-dk);
        padding: 12px 0;
        gap: 0;
        z-index: 150;
      }

      .nav-links.is-open li a {
        display: block;
        padding: 12px var(--px);
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        border-bottom: 1px solid var(--border-dk);
      }

      .nav-links.is-open li:last-child a {
        border-bottom: none;
      }

      .nav-links.is-open .nav-cta {
        color: var(--accent);
      }

      /* --- Hero mobile: coluna única, vídeo abaixo do texto, botões abaixo do vídeo --- */
      .hero-top {
        grid-template-columns: 1fr;
      }

      .hero-left {
        justify-content: center;
        text-align: center;
      }

      .hero-inner {
        max-width: 100%;
        padding: 40px var(--px) 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .hero-logo {
        margin: 0 auto;
      }

      .hero-divider {
        margin: 0 auto 20px;
      }

      .hero-sub {
 
        text-align: center;
      }

      .hero-video {
        border-left: none;
        border-top: 1px solid var(--border-dk);
        min-height: 260px;
      }

      .hero-bottom {
        display: flex;
        justify-content: center;
        background: var(--bg-dark);
        border-top: 1px solid var(--border-dk);
        padding: 20px var(--px) 28px;
      }

      .hero-btns--desktop {
        display: none;
      }

      .hero-btns--mobile {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
      }

      /* --- Stats --- */
      .stats-bar-container {
        grid-template-columns: repeat(2, 1fr);
      }

      .stat:nth-child(2) {
        border-right: none;
      }

      .stat:nth-child(3) {
        border-right: 1px solid var(--border-dk);
      }

      .stat:nth-child(4) {
        border-right: none;
      }

      .stat {
        border-bottom: 1px solid var(--border-dk);
      }

      .stat:nth-child(3),
      .stat:nth-child(4) {
        border-bottom: none;
      }

      /* --- Restantes --- */
      .midia-grid {
        grid-template-columns: 1fr;
      }

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

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

      .sobre-photo,
      .sobre-photo-ph {
        width: 100%;
        height: 200px;
      }

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

    @media (max-width: 600px) {
      :root {
        --px: 16px;
      }
      .footer{
      display:none;
     }

      /* Tipografia */
      .section__title {
        font-size: 16px;
      }

      .section__body,
      .consult-body,
      .sobre-content p {
        font-size: 13px;
      }

      .section {
        padding: 36px var(--px);
       
        text-align:center;
      }

      .hero-logo {
        height: 44px;
      }

      .hero-term {
        font-size: 32px;
      }

      /* Botões em bloco no Hero e Footer */
      .hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
      }

      .hero-btns .btn {
        justify-content: center;
        padding: 14px;
        font-size: 13px;
      }

      .hero-btns--mobile .btn {
        justify-content: center;
        padding: 14px;
        font-size: 13px;
      }

      .footer-btns {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 16px;
        align-items: stretch;
      }

      .footer-btns .btn {
        justify-content: center;
        padding: 14px;
        font-size: 13px;
      }

      /* Timeline */
      .timeline {
        overflow-x: auto;
        padding-bottom: 8px;
      }

      /* Publicações */
      .pub-row {
        flex-direction: column;
        gap: 8px;
        padding: 14px;
      }

      .pub-year {
        padding-top: 0;
        margin:0 auto;
      }

      .pub-link {
        align-self: flex-start;
        margin:0 auto;
      }

      /* Academy */
      .academy-nums {
        grid-template-columns: 1fr;
      }

      /* Foto Sobre */
      .sobre-photo,
      .sobre-photo-ph {
        height: 240px;
      }

      /* Sticky Bar — em tela pequena fica estática no rodapé */
      body {
        padding-bottom: 0;
      }

      .sticky-bar {
        position: static;
        flex-direction: column;
        align-items: stretch;
        padding: 28px var(--px);
        box-shadow: none;
        border-top: 1px solid var(--border-lt);
      }

      .sticky-bar__accent,
      .sticky-bar__label,
      .sticky-bar__divider {
        display: none;
      }

      .sticky-bar__input {
        min-width: 100%;
        padding: 12px;
        font-size: 13px;
        border-radius: 6px;
        margin-bottom: 10px;
      }

      .sticky-bar__send {
        padding: 14px;
        font-size: 13px;
        border-radius: 6px;
        margin-bottom: 10px;
      }

      .sticky-bar__wpp {
        justify-content: center;
        padding: 14px;
        font-size: 13px;
        border-radius: 6px;
      }
    }

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

      * {
        transition: none !important;
        animation: none !important;
      }
    }




    /* Container Layouts */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .site-nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      height: 100%;
    }

    .hero-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      width: 100%;
      min-height: inherit;
    }

    .stats-bar-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      width: 100%;
    }

    .footer-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      width: 100%;
    }