  @font-face {
    font-family: 'Orkney';
    font-weight: 300;
    font-style: normal;
    src: url('Orkney-300.otf') format('opentype');
  }

  @font-face {
    font-family: 'Orkney';
    font-weight: 400;
    font-style: normal;
    src: url('Orkney-400.otf') format('opentype');
  }

  @font-face {
    font-family: 'Orkney';
    font-weight: 500;
    font-style: normal;
    src: url('Orkney-500.otf') format('opentype');
  }

  @font-face {
    font-family: 'Orkney';
    font-weight: 700;
    font-style: normal;
    src: url('Orkney-700.otf') format('opentype');
  }

  @font-face {
    font-family: 'Orkney';
    font-weight: 800;
    font-style: normal;
    src: url('Orkney-800.otf') format('opentype');
  }

  @font-face {
    font-family: 'Pacifico';
    font-weight: 400;
    font-style: normal;
    src: url('Pacifico-400.ttf') format('truetype');
  }

  :root {
    --ink: #0a0a0a;
    --paper: #eef0f2;
    --cream: #e2e5e8;
    --accent: #7b2fff;
    --accent2: #ff4d00;
    --mid: #6b6560;
    --line: rgba(10, 10, 10, 0.12);
    --container-padding: max(20px, calc((100vw - 1200px) / 2));

    /* Sobre Page Variables */
    --purple: #7910fd;
    --black: #000000;
    --white: #ffffff;
    --gray-dark: #111111;
    --gray-mid: #1a1a1a;
    --gray-light: #2a2a2a;
    --text-muted: #888888;
    --pink: #fe4f15;
    /* Added based on .section-tag usage */
    --gradient: linear-gradient(135deg, #fe4f15, #fc00bb, #7910fd);
    --gradient-text: linear-gradient(90deg, #fe4f15 0%, #fc00bb 50%, #7910fd 100%);
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Orkney', sans-serif;
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
  }

  em {
    font-style: normal;
  }

  /* â”€â”€â”€ HEADER â”€â”€â”€ */
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--container-padding);
    height: 68px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
  }

  .logo {
    font-family: 'Orkney', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.04em;
    color: var(--ink);
    text-decoration: none;
  }

  .logo span {
    color: var(--accent);
  }

  nav {
    display: flex;
    gap: 32px;
    align-items: center;
  }

  .menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--ink);
  }

  nav a {
    font-family: 'Orkney', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.2s;
  }

  nav a:hover {
    color: var(--ink);
  }

  /* --- Megamenu Styles --- */
  .nav-dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
  }

  .dropdown-chevron {
    transition: transform 0.25s ease;
  }

  .nav-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
  }

  .megamenu {
    position: fixed;
    top: 68px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 720px;
    background: var(--ink);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
  }

  .nav-dropdown:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  /* Invisible hover bridge */
  .nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 25px;
    display: block;
  }

  .megamenu-content {
    display: flex;
    gap: 32px;
    text-align: left;
  }

  .megamenu-left {
    flex: 1.3;
    display: flex;
    flex-direction: column;
  }

  .megamenu-right {
    flex: 0.7;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    height: 280px;
  }

  .megamenu-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .megamenu-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    display: block;
  }

  .megamenu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 24px;
  }

  .megamenu-item {
    text-decoration: none;
    display: block;
    transition: transform 0.2s;
  }

  .megamenu-item:hover {
    transform: translateX(4px);
  }

  .megamenu-item h5 {
    font-family: 'Orkney', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--paper);
    margin-bottom: 6px;
    text-transform: none;
    letter-spacing: 0;
    transition: color 0.2s;
  }

  .megamenu-item:hover h5 {
    color: var(--accent);
  }

  .megamenu-item p {
    font-size: 0.78rem;
    color: rgba(238, 240, 242, 0.65);
    line-height: 1.4;
    text-transform: none;
    font-weight: 400;
  }

  .megamenu-all-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: none;
    transition: gap 0.2s;
  }

  .megamenu-all-link:hover {
    color: var(--purple);
    gap: 12px;
  }

  .header-ctas {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .btn-ghost {
    font-family: 'Orkney', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 9px 20px;
    border: 1px solid var(--ink);
    border-radius: 2px;
    background: transparent;
    color: var(--ink);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }

  .btn-ghost:hover {
    background: var(--ink);
    color: var(--paper);
  }

  .btn-primary {
    font-family: 'Orkney', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 2px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-primary:hover {
    opacity: 0.88;
  }

  /* â”€â”€â”€ HERO â”€â”€â”€ */
  #hero {
    position: relative;
    overflow: hidden;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 75vh;
    padding: 130px max(20px, calc((100vw - 1200px) / 2)) 100px;
    box-sizing: border-box;
  }

  .hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
  }

  .hero-video-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
  }

  .hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(to right, var(--line) 1px, transparent 1px),
      linear-gradient(to bottom, var(--line) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
  }

  .hero-ornament {
    position: absolute;
    font-family: 'Orkney', sans-serif;
    /* font-style: italic; */
    font-size: clamp(160px, 22vw, 340px);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(10, 10, 10, 0.07);
    user-select: none;
    pointer-events: none;
    z-index: 1;
  }

  .hero-ornament.left {
    top: 30%;
    left: -40px;
  }

  .hero-ornament.right {
    top: 20%;
    right: -20px;
  }

  .hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
  }

  /* Slider de Frases */
  .hero-slider {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100%;
    justify-items: center;
    align-items: center;
    margin-bottom: 24px;
  }

  .hero-slide {
    grid-area: 1 / 1 / 2 / 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    width: 100%;
  }

  .hero-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  #hero h1.hero-slide,
  #hero h2.hero-slide {
    font-family: 'Orkney', sans-serif;
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  }

  #hero .btn-ghost {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
  }

  #hero .btn-ghost:hover {
    background: #ffffff;
    color: var(--ink);
    border-color: #ffffff;
  }

  .hero-sub {
    margin-top: 24px;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--mid);
    max-width: 650px;
    line-height: 1.6;
    font-weight: 300;
    text-align: center;
  }

  .hero-cta-row {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .scroll-hint {
    position: absolute;
    bottom: 40px;
    right: max(20px, calc((100vw - 1200px) / 2));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
  }

  .scroll-hint svg {
    animation: bounce 2s infinite;
  }

  @keyframes bounce {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(6px);
    }
  }

  /* â”€â”€â”€ SECTIONS SHARED â”€â”€â”€ */
  section {
    padding: 100px max(20px, calc((100vw - 1200px) / 2));
  }

  section+section {
    border-top: 1px solid var(--line);
  }

  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--accent);
  }

  h2 {
    font-family: 'Orkney', sans-serif;
    font-size: clamp(32px, 4.5vw, 60px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
  }

  h2 em {
    font-family: 'Orkney', sans-serif;
    font-weight: 700;
    color: var(--accent);
  }

  /* â”€â”€â”€ SOBRE (VIDEO) â”€â”€â”€ */
  #sobre {
    background: var(--ink);
    color: var(--paper);
  }

  #sobre h2 {
    color: var(--paper);
  }

  #sobre .section-label {
    color: var(--accent2);
  }

  #sobre .section-label::before {
    background: var(--accent2);
  }

  .sobre-img-col {
    flex: 0 0 auto;
  }

  #sobre .sobre-img {
    width: 420px;
    height: 520px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }

  .video-wrapper {
    margin-top: 56px;
    position: relative;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .video-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e1e1e 0%, #111 100%);
  }

  .play-btn {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    cursor: pointer;
  }

  .play-btn:hover {
    transform: scale(1.08);
  }

  .play-btn svg {
    margin-left: 4px;
  }

  .video-label {
    position: absolute;
    bottom: 24px;
    left: 28px;
    color: rgba(245, 242, 236, 0.5);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* â”€â”€â”€ SOLUÇÕES â”€â”€â”€ */
  #solucoes {
    background: var(--cream);
  }

  .solucoes-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 56px;
    flex-wrap: wrap;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .card-solucao {
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 440px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  }

  .card-solucao-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 65px);
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s;
    overflow: hidden;
  }

  .card-solucao-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .card-solucao:hover .card-solucao-img img {
    transform: scale(1.05);
  }

  .card-solucao-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
    transform: translateY(calc(100% - 65px));
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .card-solucao-title-row {
    height: 65px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    flex-shrink: 0;
    transition: background 0.4s ease;
  }

  .card-solucao h3 {
    font-family: 'Orkney', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    transition: color 0.4s ease;
  }

  .icon-up {
    color: #00d4ff;
    transition: transform 0.4s, opacity 0.3s;
  }

  .card-solucao-hidden-content {
    padding: 16px 24px 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.4s 0.1s;
    background: var(--ink);
  }

  .card-solucao-hidden-content p {
    font-size: 0.95rem;
    color: var(--paper);
    line-height: 1.6;
    margin-bottom: auto;
  }

  .card-solucao-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 24px;
  }

  .card-solucao-link svg {
    transition: transform 0.3s;
  }

  .card-solucao:hover .card-solucao-content {
    transform: translateY(0);
  }

  .card-solucao:hover .card-solucao-title-row {
    background: var(--ink);
  }

  .card-solucao:hover h3 {
    color: var(--paper);
  }

  .card-solucao:hover .icon-up {
    transform: translateY(-8px) scale(0.8);
    opacity: 0;
  }

  .card-solucao:hover .card-solucao-hidden-content {
    opacity: 1;
  }

  .card-solucao:hover .card-solucao-link svg {
    transform: translateX(4px);
  }

  .card-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }

  .card:hover .card-accent-bar {
    transform: scaleX(1);
  }


  /* Cooperativa — laranja */
  .card--cooperativa:hover .card-accent-bar {
    background: var(--accent2);
  }

  /* Startups — rosa */
  .card--startups:hover .card-accent-bar {
    background: #fc00bb;
  }

  /* Botão Veja mais — hover laranja */
  .btn-veja-mais:hover {
    background: var(--accent2) !important;
    opacity: 1 !important;
  }

  /* â”€â”€â”€ METODOLOGIA â”€â”€â”€ */
  #metodologia {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .metodologia-visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 480px;
  }

  .met-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .met-circle.c1 {
    inset: 0;
    font-family: 'Orkney', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mid);
  }

  .met-circle.c2 {
    inset: 15%;
    background: var(--cream);
  }

  .met-circle.c3 {
    inset: 30%;
    background: var(--accent);
    flex-direction: column;
    gap: 4px;
  }

  .met-circle.c3 span {
    font-family: 'Orkney', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: -0.04em;
  }

  .met-circle.c3 small {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .met-tags {
    position: absolute;
    font-family: 'Orkney', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
  }

  .met-tag {
    position: absolute;
  }

  .met-tag.t1 {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
  }

  .met-tag.t2 {
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
  }

  .met-tag.t3 {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
  }

  .met-tag.t4 {
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
  }

  .metodologia-content h2 {
    margin-bottom: 28px;
  }

  .metodologia-content p {
    color: var(--mid);
    line-height: 1.75;
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  /* Efeito de Troca de Imagem Metodologia */
  .metodo-img-swap {
    position: relative;
    display: inline-block;
    cursor: pointer;
    line-height: 0;
  }

  .metodo-img-swap img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .metodo-img-swap .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  .metodo-img-swap:hover .img-hover,
  .metodo-img-swap:active .img-hover,
  .btn-ver-mais:hover+.metodo-img-swap .img-hover,
  .btn-ver-mais:active+.metodo-img-swap .img-hover,
  .btn-ver-mais:focus+.metodo-img-swap .img-hover {
    opacity: 1;
  }

  .btn-ver-mais:hover {
    transform: scale(1.05);
    opacity: 0.9;
  }

  /* â”€â”€â”€ NÃšMEROS â”€â”€â”€ */
  #numeros {
    background: var(--ink);
    color: var(--paper);
  }

  #numeros h2 {
    color: var(--paper);
  }

  #numeros .section-label {
    color: var(--accent2);
  }

  #numeros .section-label::before {
    background: var(--accent2);
  }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 56px;
    background: rgba(245, 242, 236, 0.08);
  }

  .stat-item {
    background: var(--ink);
    padding: 40px 32px;
    border: 1px solid rgba(245, 242, 236, 0.08);
  }

  .stat-num {
    font-family: 'Orkney', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--paper);
    line-height: 1;
    margin-bottom: 12px;
  }

  .stat-num span {
    color: var(--accent);
  }

  .stat-label {
    font-size: 0.8rem;
    color: rgba(245, 242, 236, 0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
  }

  /* â”€â”€â”€ MAP BRASIL â”€â”€â”€ */
  .map-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    min-height: 400px;
    background: #0a0a0a;
    border-radius: 4px;
    flex-wrap: wrap;
    margin-top: 60px;
    background: #111;
    border-radius: 4px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    position: relative;
    overflow: hidden;

  }

  .map-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(212, 85, 42, 0.1), transparent 70%);
  }

  .map-placeholder {
    font-family: 'Orkney', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, 0.3);
    text-align: center;
    position: relative;
  }

  .map-dots {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;
  }

  .map-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
    animation: pulse 2s infinite;
  }

  .map-dot:nth-child(2) {
    animation-delay: 0.3s;
    opacity: 0.7;
  }

  .map-dot:nth-child(3) {
    animation-delay: 0.6s;
  }

  .map-dot:nth-child(4) {
    animation-delay: 0.9s;
    opacity: 0.6;
  }

  .map-dot:nth-child(5) {
    animation-delay: 1.2s;
  }

  @keyframes pulse {

    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.6);
      opacity: 1;
    }
  }

  /* ─── GALERIA MARQUEE ─── */
  #galeria {
    background: var(--cream);
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 60px;
    overflow: hidden;
  }

  .galeria-header {
    padding: 0 var(--container-padding);
    margin-bottom: 40px;
  }

  .galeria-marquee-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .galeria-marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
  }

  .galeria-marquee-track.right {
    animation: marquee-right 55s linear infinite;
  }

  .galeria-marquee-track.left {
    animation: marquee-left 55s linear infinite;
  }

  .galeria-marquee-track:hover {
    animation-play-state: paused;
  }

  .gallery-item {
    width: 340px;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #ccc7bc;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .gallery-item:hover img {
    transform: scale(1.06);
  }

  @keyframes marquee-right {
    0% {
      transform: translateX(-50%);
    }

    100% {
      transform: translateX(0);
    }
  }

  @keyframes marquee-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* â”€â”€â”€ DEPOIMENTOS â”€â”€â”€ */
  #depoimentos {}

  .cases-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .case-card {
    display: none;
    grid-template-columns: 120px 1fr;
    gap: 28px;
    padding: 36px;
    background: var(--cream);
    border-radius: 4px;
    border: 1px solid var(--line);
    position: relative;
  }

  .case-card.active {
    display: grid;
    animation: fadeInCase 0.6s ease forwards;
  }

  @keyframes fadeInCase {
    from {
      opacity: 0;
      transform: translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .case-photo {
    width: 120px;
    height: 120px;
    border-radius: 2px;
    background: #ccc7bc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.3);
    flex-shrink: 0;
  }

  .case-quote {
    /* font-family: 'Orkney', sans-serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: 20px; */
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: 20px;
  }

  .case-quote::before {
    content: '\201C';
    color: var(--accent);
    margin-right: 3px;
  }

  .case-quote::after {
    content: '\201D';
    color: var(--accent);
    margin-left: 3px;
  }

  .case-author {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--mid);
    letter-spacing: 0.04em;
  }

  .case-video-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
  }

  .case-video-icon:hover {
    transform: scale(1.1);
  }

  /* â”€â”€â”€ FORMULÁRIO â”€â”€â”€ */
  #contato {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }

  .contato-info {}

  .contato-info h2 {
    margin-bottom: 24px;
  }

  .contato-info p {
    color: var(--mid);
    line-height: 1.75;
    font-size: 0.95rem;
    margin-bottom: 36px;
  }

  .contato-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: var(--mid);
  }

  .contato-detail svg {
    color: var(--accent);
    flex-shrink: 0;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .field.full {
    grid-column: span 2;
  }

  label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
    font-weight: 500;
  }

  input,
  textarea {
    font-family: 'Orkney', sans-serif;
    font-size: 0.92rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 12px 16px;
    color: var(--ink);
    transition: border-color 0.2s;
    outline: none;
  }

  input:focus,
  textarea:focus {
    border-color: var(--accent2);
  }

  textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form-submit {
    grid-column: span 2;
    margin-top: 8px;
  }

  .form-submit .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    padding: 16px;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--ink);
    color: var(--paper);
    /* padding: 72px var(--container-padding) 40px; */
    padding: 70px 40px;
    border-top: 1px solid rgba(245, 242, 236, 0.08);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(245, 242, 236, 0.08);
  }

  .footer-brand .logo {
    display: block;
    margin-bottom: 8px;
    color: var(--paper);
  }

  .footer-brand .logo span {
    color: var(--accent);
  }

  .footer-brand p {
    font-size: 0.85rem;
    color: rgba(245, 242, 236, 0.45);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 260px;
  }

  .social-links {
    display: flex;
    gap: 12px;
  }

  .social-link {
    padding: 6px;
    border: 1px solid rgba(245, 242, 236, 0.15);
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 242, 236, 0.45);
    text-decoration: none;
    transition: all 0.2s;
  }

  .social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  .footer-col h4 {
    font-family: 'Orkney', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 242, 236, 0.3);
    font-weight: 700;
    margin-bottom: 20px;
  }

  .footer-col a {
    display: block;
    font-size: 0.85rem;
    color: rgba(245, 242, 236, 0.6);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
  }

  .footer-col a:hover {
    color: var(--paper);
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    font-size: 0.75rem;
    color: rgba(245, 242, 236, 0.25);
    border-top: 1px solid var(--accent2);
  }

  .btn-canal-consultor {
    font-family: 'Orkney', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 18px;
    border: 1px solid var(--accent2);
    border-radius: 2px;
    background: transparent;
    color: var(--accent2);
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, color 0.2s;
  }

  .btn-canal-consultor:hover {
    background: var(--accent2);
    color: #fff;
  }

  /* ─── REVEAL ANIMATIONS ─── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ─── MOBILE ─── */
  img {
    max-width: 100%;
    height: auto;
  }

  @media (max-width: 900px) {
    header {
      padding: 0 var(--container-padding);
    }

    .menu-toggle {
      display: flex;
      align-items: center;
      margin-left: 20px;
    }

    .header-ctas {
      margin-left: auto;
    }

    .nav-menu {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 68px;
      left: 0;
      width: 100%;
      background: var(--paper);
      padding: 24px var(--container-padding);
      border-bottom: 1px solid var(--line);
      gap: 24px;
      transform: translateY(-150%);
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
      z-index: 99;
      pointer-events: none;
    }

    .nav-menu.active {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    /* Mobile megamenu styling */
    .nav-dropdown {
      display: block;
      width: 100%;
      box-sizing: border-box;
    }

    .dropdown-trigger {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      width: 100%;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--line);
    }

    .nav-dropdown:hover .megamenu {
      opacity: 1 !important;
      visibility: visible !important;
      transform: none !important;
    }

    .nav-dropdown::after {
      display: none !important;
    }

    .megamenu {
      position: static;
      transform: none !important;
      width: 100%;
      max-width: 100%;
      box-shadow: none;
      border: none;
      padding: 20px 0;
      background: transparent;
      opacity: 1 !important;
      visibility: visible !important;
      display: none;
      transition: none !important;
    }

    .nav-dropdown.active .megamenu {
      display: block;
    }

    .nav-dropdown.active .dropdown-chevron {
      transform: rotate(180deg);
    }

    .megamenu-content {
      flex-direction: column;
      gap: 16px;
      text-align: center;
    }

    .megamenu-left {
      width: 100%;
    }

    .megamenu-right {
      display: none;
    }

    .megamenu-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      width: 100%;
    }

    .megamenu-item {
      text-align: center;
      padding: 8px 0;
    }

    .megamenu-item:hover {
      transform: none;
    }

    .megamenu-item h5 {
      font-size: 1rem;
      margin-bottom: 4px;
    }

    .megamenu-item p {
      font-size: 0.78rem;
      max-width: 280px;
      margin: 0 auto;
      line-height: 1.4;
    }

    .megamenu-subtitle {
      margin-bottom: 16px;
      text-align: center;
    }

    .megamenu-all-link {
      margin-top: 16px;
      justify-content: center;
    }

    .btn-ghost {
      display: none;
    }

    section {
      padding: 72px var(--container-padding);
    }

    #hero {
      padding: 100px var(--container-padding) 72px;
    }

    .cards-grid,
    .stats-row {
      grid-template-columns: 1fr 1fr;
    }

    #metodologia,
    #contato {
      grid-template-columns: 1fr;
    }

    .cases-grid {
      grid-template-columns: 1fr;
    }

    .gallery-grid {
      grid-template-columns: 1fr 1fr;
    }

    .gallery-item:first-child,
    .gallery-item:nth-child(7) {
      grid-column: span 2;
    }

    footer {
      padding: 50px 20px;
    }

    .footer-top {
      grid-template-columns: 1fr 1fr;
    }

    .form-grid {
      grid-template-columns: 1fr;
    }

    .field.full {
      grid-column: span 1;
    }

    .form-submit {
      grid-column: span 1;
    }
  }

  @media (max-width: 600px) {
    section {
      padding: 48px var(--container-padding);
    }

    #hero {
      padding: 90px var(--container-padding) 48px;
      gap: 30px;
    }

    .hero-content h1 {
      font-size: 2.5rem;
    }

    .hero-content p {
      font-size: 1.1rem;
    }

    .cards-grid,
    .stats-row,
    .gallery-grid {
      grid-template-columns: 1fr;
    }

    .sobre-img-col {
      width: 100%;
    }

    #sobre .sobre-img {
      width: 100%;
      height: 320px;
      border-radius: 4px;
      overflow: hidden;
      position: relative;
    }

    .gallery-item:first-child,
    .gallery-item:nth-child(7) {
      grid-column: span 1;
    }

    .footer-top {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .contato-info h2 {
      font-size: 1.8rem;
    }

    .section-label {
      font-size: 0.7rem;
    }

    .case-card {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 32px 24px;
      gap: 20px;
    }

    .case-photo {
      margin: 0 auto;
    }
  }

  /* ----------------------------------------------------------
   P�GINA SOBRE (SOBRE-PAGE)
   ---------------------------------------------------------- */

  body.sobre-page {
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
  }

  .hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--purple), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }



  /* -- HERO -- */
  .sobre-page .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 var(--container-padding);
    position: relative;
    overflow: hidden;
    background: var(--black);
  }

  .sobre-page .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(121, 16, 253, 0.15) 0%, transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(254, 79, 21, 0.1) 0%, transparent 40%);
    opacity: 0.6;
  }

  .sobre-page .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
  }

  .sobre-page .hero-title {
    font-size: clamp(40px, 8vw, 88px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
  }

  .sobre-page .hero-title span {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .sobre-page .hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
  }

  /* -- INTRO STRIP -- */
  .sobre-page .intro-strip {
    background: var(--black);
    padding: 180px var(--container-padding) 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    border-top: 1px solid rgba(121, 16, 253, 0.2);
    border-bottom: 1px solid rgba(121, 16, 253, 0.2);
  }

  .sobre-page .intro-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 16px;
  }

  .sobre-page .intro-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }

  .sobre-page .intro-text {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
  }

  .sobre-page .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .sobre-page .stat-card {
    background: var(--gray-light);
    border: 1px solid rgba(121, 16, 253, 0.2);
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
  }

  .sobre-page .stat-card:hover {
    border-color: rgba(121, 16, 253, 0.6);
    transform: translateY(-4px);
  }

  .sobre-page .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .sobre-page .stat-card:hover::before {
    opacity: 1;
  }

  .sobre-page .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--purple);
    line-height: 1;
    margin-bottom: 6px;
  }

  .sobre-page .stat-label {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* -- ABOUT SECTION -- */
  .sobre-page .about {
    padding: 120px var(--container-padding);
    background: #eef0f2;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .sobre-page .about-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .sobre-page .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 32px;
  }

  .sobre-page .section-tag::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--pink);
  }

  .sobre-page .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    max-width: 1200px;
  }

  .sobre-page .about-heading {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    color: #111111;
  }

  .sobre-page .about-heading em {
    font-style: normal;
    font-family: 'Orkney', sans-serif;
    font-size: 0.85em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .sobre-page .about-body p {
    font-size: 16px;
    font-weight: 300;
    color: #555555;
    line-height: 1.9;
    margin-bottom: 20px;
  }

  .sobre-page .about-visual {
    position: relative;
  }

  .sobre-page .manifesto-card {
    background: var(--gray-mid);
    border: 1px solid rgba(121, 16, 253, 0.25);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
  }

  .sobre-page .manifesto-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(121, 16, 253, 0.12), transparent);
    pointer-events: none;
  }

  .sobre-page .quote-mark {
    font-family: 'Orkney', sans-serif;
    font-size: 72px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.8;
    margin-bottom: 16px;
    display: block;
  }

  .sobre-page .manifesto-text {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--white);
    margin-bottom: 32px;
  }

  .sobre-page .manifesto-author {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
  }

  /* -- VALUES -- */
  .sobre-page .values {
    background: var(--black);
    padding: 100px var(--container-padding);
    border-top: 1px solid rgba(121, 16, 253, 0.15);
    border-bottom: 1px solid rgba(121, 16, 253, 0.15);
  }

  .sobre-page .values-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .sobre-page .values-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--white);
  }

  .sobre-page .values-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-muted);
  }

  .sobre-page .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .sobre-page .value-card {
    background: var(--gray-mid);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 36px 32px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
  }

  .sobre-page .value-card:hover {
    border-color: rgba(121, 16, 253, 0.4);
    transform: translateY(-6px);
  }

  .sobre-page .value-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
  }

  .sobre-page .value-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .sobre-page .value-desc {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
  }

  /* -- TEAM SECTION -- */
  .sobre-page .team {
    padding: 120px var(--container-padding);
    background: #eef0f2;
    border-top: 1px solid rgba(121, 16, 253, 0.1);
    border-bottom: 1px solid rgba(121, 16, 253, 0.1);
  }

  .sobre-page .team-header {
    text-align: center;
    margin-bottom: 72px;
  }

  .sobre-page .team-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: #111111;
  }

  .sobre-page .team-sub {
    font-size: 16px;
    font-weight: 300;
    color: #555555;
  }

  .sobre-page .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .sobre-page .team-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 36px 28px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sobre-page .team-card:hover {
    border-color: rgba(121, 16, 253, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(121, 16, 253, 0.08);
  }

  .sobre-page .team-card-top-bar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: var(--gradient);
    border-radius: 0 0 3px 3px;
  }

  .sobre-page .team-avatar {
    width: 124px;
    height: 124px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 26px;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
  }

  .sobre-page .team-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
  }

  .sobre-page .team-avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .sobre-page .team-card:hover .team-avatar::after {
    opacity: 1;
  }

  .sobre-page .team-name {
    font-size: 17px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
  }

  .sobre-page .team-role {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    /*background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    color: var(--accent);
    margin-bottom: 20px;
  }

  .sobre-page .team-divider {
    width: 32px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 auto 20px;
  }

  .sobre-page .team-quote {
    font-size: 14px;
    font-weight: 300;
    color: #555555;
    line-height: 1.75;
    font-style: italic;
  }

  /* -- TEAM SLIDER SECTION -- */
  .sobre-page .team-slider-section {
    background: #ffffff;
    padding: 100px var(--container-padding);
  }

  .sobre-page .team-slider-container {
    position: relative;
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 60px;
  }

  .sobre-page .team-slider-viewport {
    overflow: hidden;
    width: 100%;
  }

  .sobre-page .team-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    align-items: stretch;
  }

  .sobre-page .team-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 10px;
  }

  .sobre-page .team-slide-inner {
    display: flex;
    align-items: center;
    gap: 56px;
    justify-content: space-between;
  }

  .sobre-page .team-slide-img-col {
    flex: 0 0 42%;
    max-width: 42%;
  }

  .sobre-page .team-slide-img-col img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    display: block;
  }

  .sobre-page .team-slide-content-col {
    flex: 1;
    text-align: left;
  }

  .sobre-page .team-slide-quote-icon {
    margin-bottom: 16px;
  }

  .sobre-page .team-slide-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444444;
    font-weight: 400;
    margin-bottom: 24px;
  }

  .sobre-page .team-slide-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
  }

  .sobre-page .team-slide-role {
    font-size: 0.9rem;
    font-weight: 500;
    color: #888888;
  }

  .sobre-page .team-slider-btn {
    position: absolute;
    top: calc(50% - 24px);
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
  }

  .sobre-page .team-slider-btn.prev {
    left: 0;
    background: #f0f2f5;
    color: var(--accent);
  }

  .sobre-page .team-slider-btn.next {
    right: 0;
    background: var(--accent);
    color: #ffffff;
  }

  .sobre-page .team-slider-btn:hover {
    transform: translateY(-50%) scale(1.08);
  }

  .sobre-page .team-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 48px;
  }

  .sobre-page .team-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d2d5d8;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .sobre-page .team-slider-dot.active {
    background: var(--accent);
    transform: scale(1.3);
  }

  /* -- CLIENTS MARQUEE -- */
  .sobre-page .clients {
    background: var (--ink);
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    overflow: hidden;
  }

  .sobre-page .clients-header {
    margin-bottom: 10px;
    padding: 0 var(--container-padding);
  }

  .sobre-page .clients-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: #fff;
  }

  .sobre-page .clients-script {
    font-family: 'Orkney', sans-serif;
    font-size: 18px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 16px;
  }

  .sobre-page .clients-sub {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
  }

  .sobre-page .clients-marquee-wrap {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
  }

  .sobre-page .clients-marquee-wrap::before,
  .sobre-page .clients-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 180px;
    z-index: 2;
    pointer-events: none;
  }

  .sobre-page .clients-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--ink), transparent);
  }

  .sobre-page .clients-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--ink), transparent);
  }

  .sobre-page .clients-marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marquee 90s linear infinite;
  }

  .sobre-page .clients-marquee-track:hover {
    animation-play-state: paused;
  }

  @keyframes marquee {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  .sobre-page .clients-marquee-img {
    width: 200px;
    object-fit: contain;
    flex-shrink: 0;
    transition: filter 0.4s, opacity 0.4s, transform 0.4s;
    padding: 15px;
    background: var(--ink);
    border-radius: 40px;
    margin: 0 15px;
  }

  .sobre-page .clients-marquee-track:hover .clients-marquee-img {
    opacity: 0.6;
  }

  /* -- CTA -- */
  .sobre-page .cta-section {
    padding: 120px var(--container-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .sobre-page .cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(121, 16, 253, 0.2) 0%, transparent 70%);
    pointer-events: none;
  }

  .sobre-page .cta-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .sobre-page .cta-title .gradient-text {
    /* background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    color: var(--accent);
  }

  .sobre-page .cta-sub {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
  }

  .sobre-page .cta-btn {
    display: inline-block;
    padding: 18px 48px;
    background: var(--purple);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-family: 'Orkney', sans-serif;
    position: relative;
    z-index: 1;
    transition: opacity 0.2s, transform 0.2s;
  }

  .sobre-page .cta-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
  }

  /* -- DIVIDER -- */
  .sobre-page .duo-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 var(--container-padding);
    opacity: 0.15;
  }

  .sobre-page .duo-divider span {
    flex: 1;
    height: 1px;
    background: var(--gradient);
  }

  .sobre-page .duo-divider em {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-style: normal;
    color: var(--purple);
  }

  /* -- RESPONSIVE SOBRE -- */
  @media (max-width: 900px) {
    .sobre-page .team-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .sobre-page .clients-marquee-img {
      width: 180px;
    }
  }

  @media (max-width: 768px) {
    .sobre-page .intro-strip {
      grid-template-columns: 1fr;
      gap: 48px;
      padding: 100px var(--container-padding) 60px;
    }

    .sobre-page .about-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .sobre-page .values-grid {
      grid-template-columns: 1fr;
    }

    .sobre-page footer {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  @media (max-width: 600px) {
    .sobre-page .team-grid {
      grid-template-columns: 1fr;
    }

    .sobre-page .clients-marquee-img {
      width: 140px;
      margin: 0;
    }

    .sobre-page .team-slider-container {
      padding: 0;
    }

    .sobre-page .team-slide-inner {
      flex-direction: column;
      gap: 32px;
    }

    .sobre-page .team-slide-img-col {
      flex: 0 0 100%;
      max-width: 100%;
    }

    .sobre-page .team-slider-btn {
      display: none;
    }
  }

  /* --- LIGHTBOX --- */
  .lightbox {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .lightbox.active {
    opacity: 1;
    pointer-events: auto;
  }

  .lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    object-fit: contain;
  }

  .lightbox.active .lightbox-img {
    transform: scale(1);
  }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    z-index: 100000;
    font-family: sans-serif;
  }

  .lightbox-close:hover {
    color: var(--accent2);
  }

  /* ----------------------------------------------------------
     PÁGINA STARTUPS
     ---------------------------------------------------------- */
  :root {
    --startup-orange: #ff4d00;
  }

  .startups-hero {
    background-color: var(--startup-orange);
    padding: 140px var(--container-padding) 0px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 80vh;
  }

  .startups-hero-content {
    flex: 1;
  }

  .startups-hero-content .eyebrow {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 16px;
    opacity: 0.9;
  }

  .startups-hero-content h1 {
    font-size: clamp(40px, 6vw, 80px);
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
    margin-left: 0;
  }

  .startups-hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
    opacity: 0.9;
  }

  .startups-hero-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .startups-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .mentor-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
  }

  .mentor-imgs {
    display: flex;
  }

  .mentor-imgs img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--startup-orange);
    margin-left: -12px;
  }

  .mentor-imgs img:first-child {
    margin-left: 0;
  }

  .mentor-text {
    font-size: 0.85rem;
    opacity: 0.8;
  }

  /* Section Intro Trilha */
  .trilha-intro {
    background: var(--paper);
    padding: 100px var(--container-padding);
    text-align: center;
  }

  .trilha-intro h2 {
    color: var(--accent);
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 60px;
  }

  .trilha-intro-grid {
    display: flex;
    align-items: center;
    gap: 80px;
    text-align: left;
  }

  .trilha-intro-img {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
  }

  .trilha-intro-img img {
    width: 100%;
    display: block;
  }

  .trilha-intro-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    padding-left: 24px;
  }

  .trilha-intro-steps::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 10px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, #fe4f15 0%, #fc00bb 50%, #7910fd 100%);
    opacity: 1;
  }

  .trilha-step-item {
    display: flex;
    gap: 0;
    position: relative;
    z-index: 1;
  }

  .trilha-step-num {
    color: var(--accent);
    font-weight: 800;
    font-size: 1.1rem;
    position: relative;
    min-width: 35px;
  }

  .trilha-step-num::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 4px;
    width: 18px;
    height: 18px;
    background: var(--gradient);
    border-radius: 50%;
    border: 3px solid var(--paper);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .trilha-step-content h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
    text-transform: uppercase;
  }

  .trilha-step-content p {
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.5;
  }

  /* Trilhas Generic */
  .section-trilha {
    padding: 100px var(--container-padding);
    text-align: center;
  }

  .section-trilha .trilha-header {
    margin-bottom: 60px;
  }

  .section-trilha .trilha-icon-top {
    margin-bottom: 20px;
    display: inline-block;
  }

  .section-trilha h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: inherit;
  }

  .section-trilha .subtitle {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
  }

  .trilha-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 0;
    text-align: left;
  }

  .trilha-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }

  .trilha-card-icon {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .trilha-card-content h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
  }

  .trilha-card-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
  }

  /* Specific Trilha Colors */
  .trilha-purple {
    background-color: var(--accent);
    color: #fff;
  }

  .trilha-purple .trilha-card-icon {
    background: #fff;
    color: var(--accent);
  }

  .trilha-purple .subtitle,
  .trilha-purple .trilha-card-content p {
    color: rgba(255, 255, 255, 0.85);
  }

  .trilha-grey {
    background-color: var(--paper);
    color: var(--accent);
  }

  .trilha-grey .trilha-card-icon {
    background: var(--accent);
    color: #fff;
  }

  .trilha-grey h2,
  .trilha-grey h4 {
    color: var(--accent);
  }

  .trilha-grey .subtitle,
  .trilha-grey .trilha-card-content p {
    color: var(--mid);
  }

  /* Section Features (Black) */
  .section-features {
    background-color: var(--ink);
    color: #fff;
    padding: 100px var(--container-padding);
    text-align: center;
  }

  .section-features h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #fff;
  }

  .section-features .subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 80px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }

  /* Linhas em gradiente atrás dos círculos (Desktop) */
  .features-grid::before,
  .features-grid::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent2), #fc00bb, var(--accent), transparent);
    z-index: 0;
    pointer-events: none;
  }

  .features-grid::before {
    top: 35px;
  }

  .features-grid::after {
    top: 290px;
    /* Ajustado para alinhar com o centro dos ícones da segunda linha */
  }

  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent2), #fc00bb, var(--accent));
    padding: 1px;
    position: relative;
    z-index: 3;
  }

  .feature-icon-inner {
    width: 100%;
    height: 100%;
    background: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink) !important;
  }

  .feature-item h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
  }

  .feature-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
  }

  /* Responsive Startups */
  @media (max-width: 992px) {
    .startups-hero {
      flex-direction: column;
      text-align: center;
      padding-top: 120px;
    }

    .startups-hero-content p {
      margin-left: auto;
      margin-right: auto;
    }

    .mentor-badges {
      justify-content: center;
    }

    .trilha-intro-grid {
      flex-direction: column;
      gap: 40px;
    }

    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .features-grid::before,
    .features-grid::after {
      display: none;
    }
  }

  @media (max-width: 768px) {
    .trilha-intro h2 {
      font-size: 1.6rem;
    }

    .section-trilha h2 {
      font-size: 1.6rem;
    }

    .section-features h2 {
      font-size: 1.6rem;
    }

    .trilha-cards-grid {
      grid-template-columns: 1fr;
    }

    .features-grid {
      grid-template-columns: 1fr;
    }

    .trilha-intro-steps::before {
      display: none;
    }

    .trilha-step-num::before {
      display: none;
    }

    .trilha-intro-steps {
      padding-left: 0;
    }
  }

  /* Layout de Colunas Flexíveis para Trilhas */
  .trilha-cols-flex {
    display: flex;
    gap: 80px;
    max-width: 1100px;
    margin: 60px auto 0;
    text-align: left;
  }

  .trilha-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  @media (max-width: 992px) {
    .trilha-cols-flex {
      gap: 40px;
    }
  }

  @media (max-width: 768px) {
    .trilha-cols-flex {
      flex-direction: column;
      gap: 40px;
    }
  }

  /* --- CORPORATIVO PAGE --- */
  .section-para-quem {
    padding: 80px var(--container-padding);
    background: #fff;
  }

  .para-quem-grid {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    gap: 60px;
    align-items: flex-start;
  }

  .para-quem-grid::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--accent2);
  }

  .para-quem-item {
    flex: 1;
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }

  .para-quem-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
  }

  .para-quem-content h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
  }

  .para-quem-content h3 span {
    color: var(--accent);
  }

  .para-quem-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--mid);
  }

  /* Missões Section */
  .section-metodologia {
    padding: 100px var(--container-padding);
    background: #f8f9fa;
    text-align: center;
  }

  .metodologia-header {
    margin-bottom: 60px;
  }

  .metodologia-header .eyebrow {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent);
    margin-top: 10px;
  }

  /* Final CTA Bar */
  .cta-bar-container {
    padding: 60px var(--container-padding);
    background: var(--paper);
  }

  .cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--accent2);
    padding-left: 40px;
    border-radius: 60px;
    max-width: 1100px;
    margin: 0 auto;
    color: #fff;
  }

  .cta-bar h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 24px 0;
    line-height: 1;
  }

  .cta-bar h3 img {
    display: block;
  }

  .cta-bar .btn-white {
    background: #fff;
    color: var(--accent);
    padding: 0 50px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: stretch;
  }

  .features-grid.corp::before,
  .features-grid.corp::after {
    content: '';
    position: absolute;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(transparent, #fff, #fff, transparent);
    z-index: 0;
    pointer-events: none;
  }

  .features-grid.corp::before {
    top: 35px;
  }

  .features-grid.corp::after {
    top: 290px;
    /* Ajustado para alinhar com o centro dos ícones da segunda linha */
  }

  @media (max-width: 992px) {
    .para-quem-grid {
      flex-direction: column;
      gap: 40px;
    }

    .para-quem-grid::after {
      display: none;
    }

    .cta-bar {
      flex-direction: column;
      gap: 0;
      border-radius: 30px;
      padding-left: 0;
      overflow: hidden;
    }

    .cta-bar h3 {
      padding: 30px 20px;
      justify-content: center;
      text-align: center;
    }

    .cta-bar .btn-white {
      width: 100%;
      padding: 20px;
      border-radius: 0;
      justify-content: center;
    }
  }

  /* ==========================================================
     PÁGINA NEGÓCIOS EM EXPANSÃO (SÓCIOS ESTRATÉGICOS)
     ========================================================== */

  /* Comparativo */
  .comp-section {
    background: var(--purple);
    color: #fff;
    text-align: center;
    padding: 100px var(--container-padding);
  }

  .comp-title {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 56px;
    line-height: 1.1;
  }

  .comp-grid-wrapper {
    max-width: 900px;
    margin: 0 auto;
  }

  .comp-headers {
    display: grid;
    grid-template-columns: 1fr 50px 1fr;
    margin-bottom: 28px;
  }

  .comp-column-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
  }

  .comp-rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .comp-row {
    display: grid;
    grid-template-columns: 1fr 50px 1fr;
    align-items: center;
  }

  .comp-box {
    background: #fff;
    color: var(--ink);
    border-radius: 8px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
  }

  .comp-box span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
  }

  .comp-box svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--purple);
  }

  .comp-arrow {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Jornada / Timeline */
  .jornada-section {
    background: var(--paper);
    padding: 100px var(--container-padding);
    text-align: center;
  }

  .jornada-section p {
    margin-bottom: 60px;
  }

  .cooperativa-page .jornada-step h4,
  .cooperativa-page .jornada-step span {
    color: var(--ink) !important;
  }

  .cooperativa-page .jornada-circle {
    background: var(--ink);
  }

  .jornada-timeline {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 60px auto 0;
    position: relative;
  }

  .jornada-line {
    position: absolute;
    top: 45px;
    left: 13%;
    right: 13%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent2), #fc00bb, var(--accent), transparent);
    z-index: 1;
  }

  .jornada-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 24px;
  }

  .jornada-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(121, 16, 253, 0.2);
    margin-bottom: 24px;
    border: 4px solid var(--paper);
    transition: transform 0.3s;
  }

  .jornada-circle:hover {
    transform: scale(1.06);
  }

  .jornada-step span {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--purple);
    display: block;
    margin-bottom: 8px;
  }

  .jornada-step h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 12px;
  }

  .jornada-step p {
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.6;
    max-width: 320px;
  }

  @media (max-width: 992px) {
    .comp-box {
      padding: 12px 18px;
    }

    .comp-box span {
      font-size: 0.88rem;
    }
  }

  @media (max-width: 768px) {
    .comp-headers {
      display: none;
    }

    .jornada-section h2 {
      font-size: 24px;
    }

    .expansao-page .trilha-step-num,
    .cooperativa-page .trilha-step-num {
      display: none;
    }

    .comp-row {
      grid-template-columns: 1fr;
      gap: 12px;
      background: rgba(255, 255, 255, 0.05);
      padding: 16px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .comp-arrow {
      transform: rotate(90deg);
      margin: 8px 0;
      font-size: 1.5rem;
    }

    .jornada-timeline {
      flex-direction: column;
      gap: 48px;
    }

    .jornada-line {
      display: none;
    }

    .jornada-step {
      padding: 0 !important;
    }

    .jornada-step p {
      max-width: 100%;
    }
  }

  /* Override para linha e bolinhas da página Negócios em Expansão e Cooperativa */
  .expansao-page .intro-crescer .trilha-intro-steps::before {
    background: var(--purple) !important;
    bottom: 81px !important;
  }

  .expansao-page .intro-diferenciais .trilha-intro-steps::before {
    background: var(--purple) !important;
    bottom: 60px !important;
  }

  .expansao-page .trilha-step-num::before {
    background: var(--purple) !important;
    border: none !important;
    box-shadow: none !important;
    width: 14px !important;
    height: 14px !important;
    left: -22px !important;
    top: 6px !important;
  }

  .cooperativa-page .intro-crescer .trilha-intro-steps::before {
    background: var(--ink) !important;
    bottom: 81px !important;
  }

  .cooperativa-page .intro-diferenciais .trilha-intro-steps::before {
    background: var(--purple) !important;
    bottom: 60px !important;
  }

  .cooperativa-page .trilha-step-num::before {
    background: var(--purple) !important;
    border: none !important;
    box-shadow: none !important;
    width: 14px !important;
    height: 14px !important;
    left: -22px !important;
    top: 6px !important;
  }

  .cooperativa-page .intro-crescer .trilha-step-num::before {
    background: var(--ink) !important;
  }

  /* === BLOG PAGE STYLES === */
  .blog-hero-banner {
    background: var(--purple);
    width: 100%;
    padding: 80px 20px;
    text-align: center;
    margin-top: 68px;
    /* header offset */
  }

  .blog-hero-banner h1 {
    color: #ffffff;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
  }

  .blog-container {
    margin-top: 50px;
    padding: 60px 24px 80px 24px;
    max-width: 1200px;
    margin: 50px auto 0;
  }

  /* Post em Destaque (Featured Post) - 2 Column Flush */
  .featured-post-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #eef0f2;
    overflow: hidden;
    margin-bottom: 60px;
    text-decoration: none;
    color: inherit;
    min-height: 400px;
    transition: transform 0.3s ease;
  }

  .featured-post-card:hover {
    transform: translateY(-4px);
  }

  .featured-post-content {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    border-radius: 20px 0 0 20px;
  }

  .post-badge {
    color: var(--purple);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 30px;
    display: block;
  }

  .featured-post-content h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 40px;
  }

  .featured-divider {
    width: 60px;
    height: 1px;
    background: var(--ink);
    margin-bottom: 20px;
  }

  .featured-post-content .post-meta {
    font-size: 0.85rem;
    color: var(--mid);
  }

  .featured-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
  }

  .featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Layout Geral: Grid + Sidebar */
  .blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
  }

  /* Grid de Posts (2 colunas) */
  .posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  /* Post Card Grid (Stack vertical) */
  .post-card-grid {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
  }

  .post-card-grid:hover {
    transform: translateY(-4px);
  }

  .post-grid-thumb {
    width: 100%;
    height: 240px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .post-grid-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .post-grid-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .post-grid-category {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 12px;
  }

  .post-grid-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .post-grid-excerpt {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .btn-leia-mais {
    background: var(--purple);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: background 0.2s;
  }

  .post-card-grid:hover .btn-leia-mais {
    background: #6a0be8;
  }

  /* Paginação / Carregar Mais */
  .load-more-container {
    text-align: center;
    margin-top: 50px;
  }

  .btn-load-more-orange {
    background: #ff4d00;
    color: #fff;
    padding: 8px 24px;
    border: none;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
  }

  .btn-load-more-orange:hover {
    background: #e64500;
  }

  .btn-load-more-orange:disabled {
    background: #ccc;
    cursor: not-allowed;
  }

  /* Sidebar Widgets */
  .blog-sidebar {
    padding-left: 20px;
  }

  .sidebar-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 20px;
  }

  /* Widget Recent Posts */
  .recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .recent-post-item {
    display: flex;
    gap: 15px;
    align-items: center;
    text-decoration: none;
    color: inherit;
  }

  .recent-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }

  .recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .recent-post-info {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .recent-post-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 4px;
  }

  .recent-post-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 4px;
  }

  .recent-post-date {
    font-size: 0.75rem;
    color: #888;
  }

  /* Widget Categorias */
  .categories-list-simple {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .category-link-simple {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }

  .category-link-simple:hover,
  .category-link-simple.active {
    color: var(--purple);
    font-weight: 500;
  }

  /* === SINGLE POST READER (post.php) === */
  .post-reader-container {
    padding: 120px 24px 80px 24px;
    max-width: 800px;
    margin: 0 auto;
  }

  .post-reader-header {
    margin-bottom: 40px;
  }

  .post-reader-header .post-badge {
    margin-bottom: 16px;
  }

  .post-reader-header h1 {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }

  .post-reader-featured-img {
    width: 100%;
    max-height: 480px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--line);
  }

  .post-reader-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .post-reader-body {
    font-size: 1.12rem;
    line-height: 1.8;
    color: #2b2b2b;
  }

  .post-reader-body p {
    margin-bottom: 24px;
  }

  .post-reader-body h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ink);
    margin: 40px 0 20px 0;
  }

  .post-reader-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ink);
    margin: 30px 0 15px 0;
  }

  .post-reader-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  }

  /* Post Tags */
  .post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
  }

  .post-tags-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    margin-right: 4px;
  }

  .post-tag-pill {
    display: inline-block;
    background: #f3eaff;
    color: var(--purple);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }

  .post-tag-pill:hover {
    background: var(--purple);
    color: #fff;
  }

  /* Responsividade do Blog */
  @media (max-width: 992px) {
    .blog-layout {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .featured-post-card {
      display: flex;
      flex-direction: column;
      min-height: auto;
      border-radius: 20px;
      overflow: hidden;
    }

    .featured-img-wrap {
      order: 1;
      height: 300px;
      border-radius: 20px 20px 0 0;
    }

    .featured-post-content {
      padding: 40px 30px;
      border-radius: 0 0 20px 20px;
      background: #fff;
      order: 2;
    }

    .blog-sidebar {
      padding-left: 0;
    }
  }

  @media (max-width: 768px) {

    .blog-container {
      margin-top: 30px;
    }

    .posts-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .post-grid-thumb {
      height: 200px;
    }

    .hero-video-wrapper {
      aspect-ratio: 16 / 9;
      max-height: none;
    }

    #hero .hero-cta-row {
      flex-direction: column;
      width: 100%;
      gap: 12px;
      padding: 0 5px;
      box-sizing: border-box;
    }

    #hero .hero-cta-row a {
      width: 100% !important;
      justify-content: center;
      text-align: center;
      box-sizing: border-box;
    }

    #hero .btn-ghost {
      display: inline-flex !important;
    }
  }