  @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=DM+Serif+Display:ital@0;1&display=swap');

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

  /* ── DARK MODE (padrão) ── */
  :root {
    --bg: #0a0a08;
    --surface: #111110;
    --border: #1f1f1c;
    --accent: #c8f53a;
    --accent2: #f5e63a;
    --text: #e8e8e2;
    --muted: #6b6b63;
    --white: #f0f0ea;
    --nav-scrolled-bg: rgba(10, 10, 8, 0.9);
    --social-invert: invert(1) brightness(0.6);
    --logo-filter: none;
    --theme-icon: '☀️';
  }

  /* ── LIGHT MODE ── */
  [data-theme="light"] {
    --bg: #f5f5f0;
    --surface: #ebebе5;
    --surface: #e4e4de;
    --border: #d0d0c8;
    --accent: #6ab800;
    --accent2: #c8a800;
    --text: #1a1a18;
    --muted: #6b6b63;
    --white: #1a1a18;
    --nav-scrolled-bg: rgba(245, 245, 240, 0.92);
    --social-invert: none;
    --logo-filter: brightness(0) saturate(100%);
    --theme-icon: '🌙';
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
    transition: background 0.35s ease, color 0.35s ease;
  }

  /* Custom cursor */
  .cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: difference;
  }

  .cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.18s ease;
    opacity: 0.5;
    mix-blend-mode: difference;
  }

  body:hover .cursor {
    opacity: 1;
  }

  /* Noise overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9000;
  }

  /* ── THEME TOGGLE BUTTON ── */
  .theme-toggle {
    background: none;
    border: 1px solid var(--border);
    border-radius: 2px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    font-size: 16px;
    transition: border-color 0.3s, transform 0.2s;
    flex-shrink: 0;
    color: var(--muted);
    padding: 0;
    line-height: 1;
  }

  .theme-toggle:hover {
    border-color: var(--accent);
    transform: scale(1.05);
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 48px;
    mix-blend-mode: normal;
    transition: background 0.4s ease, padding 0.4s ease;
    gap: 16px;
  }

  nav.scrolled {
    background: var(--nav-scrolled-bg);
    backdrop-filter: blur(12px);
    padding: 22px 48px;
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-logo img {
    width: 100%;
    max-width: 94px;
    filter: var(--logo-filter);
    transition: filter 0.35s ease;
  }

  .nav-logo span {
    color: var(--accent);
  }

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

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
  }

  .nav-links a:hover {
    color: var(--accent);
  }

  .nav-cta {
    background: var(--accent);
    color: var(--bg) !important;
    padding: 10px 22px;
    border-radius: 2px;
    font-weight: 500 !important;
    font-size: 12px !important;
    transition: background 0.3s, transform 0.2s !important;
  }

  .nav-cta:hover {
    background: var(--accent2) !important;
    transform: translateY(-1px);
  }

  /* ── HAMBURGER ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 2px;
    cursor: none;
    padding: 10px;
    z-index: 200;
    position: relative;
  }

  .nav-hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text);
    transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.25s ease, width 0.3s ease;
    transform-origin: center;
  }

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

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

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

  /* ── MOBILE DRAWER ── */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 150;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 40px 60px;
    pointer-events: none;
    clip-path: circle(0% at calc(100% - 52px) 52px);
    transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  }

  .mobile-menu.open {
    pointer-events: all;
    clip-path: circle(150% at calc(100% - 52px) 52px);
  }

  .mobile-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--border) 1px, transparent 1px),
      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    pointer-events: none;
  }

  .mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .mobile-nav-links li {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }

  .mobile-nav-links li:first-child {
    border-top: 1px solid var(--border);
  }

  .mobile-nav-links a {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 10vw, 64px);
    letter-spacing: 0.04em;
    color: var(--white);
    text-decoration: none;
    padding: 14px 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), color 0.3s;
  }

  .mobile-nav-links a:hover {
    color: var(--accent);
  }

  .mobile-menu.open .mobile-nav-links a {
    transform: translateY(0);
  }

  .mobile-nav-links li:nth-child(1) a { transition-delay: 0.1s; }
  .mobile-nav-links li:nth-child(2) a { transition-delay: 0.15s; }
  .mobile-nav-links li:nth-child(3) a { transition-delay: 0.2s; }
  .mobile-nav-links li:nth-child(4) a { transition-delay: 0.25s; }

  .mobile-close {
    position: absolute;
    top: 28px;
    right: 24px;
    background: none;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    cursor: pointer;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: border-color 0.3s, color 0.3s;
  }

  .mobile-close:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  .mobile-menu-footer {
    position: relative;
    z-index: 1;
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s 0.35s ease, transform 0.4s 0.35s ease;
  }

  .mobile-menu.open .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu-footer a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.08em;
    transition: color 0.3s;
  }

  .mobile-menu-footer a:hover {
    color: var(--accent);
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 48px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--border) 1px, transparent 1px),
      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  }

  .hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 245, 58, 0.12) 0%, transparent 70%);
    top: 10%;
    right: -100px;
    pointer-events: none;
    animation: pulse 6s ease-in-out infinite;
  }

  [data-theme="light"] .hero-glow {
    background: radial-gradient(circle, rgba(106, 184, 0, 0.1) 0%, transparent 70%);
  }

  @keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.1); }
  }

  .hero-content {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .hero-content-main {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .hero-content-main > div {
    width: 50%;
    flex-grow: 1;
  }

  .hero-content-main > img {
    width: 50%;
    max-width: 420px;
    min-width: 200px;
    flex-grow: 1;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 245, 58, 0.08);
    border: 1px solid rgba(200, 245, 58, 0.2);
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }

  [data-theme="light"] .hero-tag {
    background: rgba(106, 184, 0, 0.08);
    border-color: rgba(106, 184, 0, 0.25);
  }

  .hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1 }
    50%       { opacity: 0.2 }
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 10vw, 160px);
    line-height: 0.9;
    letter-spacing: -0.01em;
    color: var(--white);
    opacity: 0;
    animation: fadeUp 0.9s 0.4s forwards;
  }

  .hero h1 em {
    font-style: italic;
    font-family: 'DM Serif Display', serif;
    color: var(--accent);
  }

  .hero-sub {
    max-width: 520px;
    margin-top: 36px;
    font-size: 17px;
    line-height: 1.4;
    color: var(--muted);
    opacity: 0;
    animation: fadeUp 0.9s 0.6s forwards;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 48px;
    opacity: 0;
    animation: fadeUp 0.9s 0.8s forwards;
  }

  .btn-primary {
    background: var(--accent);
    color: var(--bg);
    padding: 16px 36px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 2px;
    cursor: none;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
  }

  .btn-primary:hover {
    background: var(--accent2);
    transform: translateY(-2px);
  }

  .btn-outline {
    background: transparent;
    color: var(--text);
    padding: 16px 36px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    letter-spacing: 0.05em;
    border: 1px solid var(--border);
    border-radius: 2px;
    cursor: none;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.3s, color 0.3s, transform 0.2s;
  }

  .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
  }

  .hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
    opacity: 0;
    animation: fadeUp 0.9s 1s forwards;
  }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: var(--white);
    line-height: 1;
  }

  .stat-num span {
    color: var(--accent);
  }

  .stat-label {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── MARQUEE ── */
  .marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    background: var(--surface);
  }

  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
  }

  .marquee-track span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.15em;
    color: var(--muted);
    padding: 0 40px;
  }

  .marquee-track span.accent {
    color: var(--accent);
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ── SECTIONS ── */
  section {
    padding: 120px 48px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent);
  }

  .section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.1;
    color: var(--white);
    max-width: 700px;
  }

  .section-title em {
    color: var(--accent);
    font-style: italic;
  }

  /* ── SERVICES ── */
  #servicos {
    padding: 120px 0;
    max-width: 100%;
  }

  #servicos .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
  }

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

  .service-card {
    background: var(--bg);
    padding: 48px 40px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s ease;
  }

  .service-card:hover::after { width: 100%; }
  .service-card:hover { background: var(--surface); }
  .service-card:hover .service-icon { color: var(--accent); }

  .service-icon {
    font-size: 32px;
    margin-bottom: 24px;
    transition: color 0.3s;
    display: block;
  }

  .service-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
  }

  .service-card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
  }

  /* ── SOBRE ── */
  #sobre {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
  }

  .sobre-visual {
    position: relative;
    width: 100%;
    min-height: 420px;
  }

  .sobre-box {
    width: 100%;
    height: 100%;
    min-height: 620px;
    background: var(--surface);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    background-image: url('../img/fabiano-kunst-designer.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
  }

  .sobre-box::before {
    content: '';
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 280px;
    color: rgba(200, 245, 58, 0.04);
    line-height: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    letter-spacing: -0.05em;
  }

  .sobre-box-inner {
    position: absolute;
    inset: 24px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    overflow: hidden;
  }

  .sobre-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--bg);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    margin-bottom: 12px;
    width: fit-content;
    flex-shrink: 0;
  }

  .sobre-box-inner p {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(16px, 3.5vw, 26px);
    color: var(--white);
    line-height: 1.35;
    font-style: italic;
  }

  .sobre-content .section-title {
    margin-bottom: 28px;
  }

  .sobre-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 20px;
  }

  .sobre-list {
    list-style: none;
    margin-top: 32px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .sobre-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
  }

  .sobre-list li::before {
    content: '→';
    color: var(--accent);
    font-size: 16px;
  }

  /* ── CLIENTES ── */
  #clientes {
    text-align: center;
    max-width: 1200px;
  }

  .clientes-title {
    margin: 0 auto 64px;
    text-align: center;
  }

  .clientes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 64px;
  }

  .cliente-item {
    background: var(--bg);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: background 0.3s;
    min-height: 100px;
  }

  .cliente-item:hover {
    background: var(--surface);
  }

  .cliente-logo {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(1) brightness(0.4);
    transition: filter 0.3s;
  }

  [data-theme="light"] .cliente-logo {
    filter: grayscale(1) brightness(0.6);
  }

  .cliente-item:hover .cliente-logo {
    filter: grayscale(0) brightness(1);
  }

  .cliente-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--muted);
    transition: color 0.3s;
  }

  .cliente-item:hover .cliente-name {
    color: var(--accent);
  }

  /* ── PARA QUEM ── */
  #para-quem {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    max-width: 100%;
    padding: 120px 0;
  }

  #para-quem .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
  }

  .audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 64px;
  }

  .audience-card {
    border: 1px solid var(--border);
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
  }

  .audience-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
  }

  .audience-emoji {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
  }

  .audience-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
  }

  /* ── CTA ── */
  #contato {
    text-align: center;
    padding: 140px 48px;
    max-width: 100%;
    position: relative;
    overflow: hidden;
  }

  #contato::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 245, 58, 0.07) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  [data-theme="light"] #contato::before {
    background: radial-gradient(circle, rgba(106, 184, 0, 0.07) 0%, transparent 70%);
  }

  #contato .inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
  }

  #contato .section-label {
    justify-content: center;
  }

  #contato .section-title {
    max-width: 100%;
    text-align: center;
    margin-bottom: 24px;
  }

  #contato p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 48px;
  }

  .contato-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }

  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--white);
    text-decoration: none;
  }

  .footer-logo span {
    color: var(--accent);
  }

  .footer-logo img {
    width: 100%;
    max-width: 60px;
    filter: var(--logo-filter);
    transition: filter 0.35s ease;
  }

  .footer-info {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.8;
  }

  .footer-info a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-info a:hover {
    color: var(--accent);
  }

  .footer-social {
    display: flex;
    gap: 20px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: border-color 0.3s, color 0.3s;
    letter-spacing: 0;
  }

  .social-link img {
    width: 30px;
  }

  .social-link:hover {
    transform: scale(1.1);
  }

  /* ── PAGE TRANSITION ── */
  .page-transition {
    position: fixed;
    inset: 0;
    z-index: 9500;
    pointer-events: none;
    display: flex;
    flex-direction: column;
  }

  .pt-strip {
    flex: 1;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: bottom;
  }

  .pt-strip:nth-child(1) { transition: transform 0.4s 0s    cubic-bezier(0.77, 0, 0.175, 1); }
  .pt-strip:nth-child(2) { transition: transform 0.4s 0.06s cubic-bezier(0.77, 0, 0.175, 1); }
  .pt-strip:nth-child(3) { transition: transform 0.4s 0.12s cubic-bezier(0.77, 0, 0.175, 1); }
  .pt-strip:nth-child(4) { transition: transform 0.4s 0.18s cubic-bezier(0.77, 0, 0.175, 1); }

  .page-transition.in .pt-strip  { transform: scaleY(1); transform-origin: bottom; }
  .page-transition.out .pt-strip { transform: scaleY(0); transform-origin: top; }

  .page-transition.out .pt-strip:nth-child(1) { transition: transform 0.4s 0.18s cubic-bezier(0.77, 0, 0.175, 1); }
  .page-transition.out .pt-strip:nth-child(2) { transition: transform 0.4s 0.12s cubic-bezier(0.77, 0, 0.175, 1); }
  .page-transition.out .pt-strip:nth-child(3) { transition: transform 0.4s 0.06s cubic-bezier(0.77, 0, 0.175, 1); }
  .page-transition.out .pt-strip:nth-child(4) { transition: transform 0.4s 0s    cubic-bezier(0.77, 0, 0.175, 1); }

  /* ── SCROLL REVEALS ── */
  .stagger-children > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .stagger-children.visible > *:nth-child(1) { transition-delay: 0s;   opacity: 1; transform: none; }
  .stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: none; }
  .stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: none; }
  .stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: none; }
  .stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: none; }
  .stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: none; }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    nav.scrolled { padding: 14px 24px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    section { padding: 80px 24px; }
    .hero { padding: 100px 24px 60px; }
    .hero-stats { gap: 30px; flex-wrap: wrap; }
    .services-grid { grid-template-columns: 1fr; }
    #sobre { grid-template-columns: 1fr; gap: 48px; }
    .sobre-visual { min-height: 280px; }
    .sobre-box { min-height: 280px; }
    .clientes-grid { grid-template-columns: repeat(2, 1fr); }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    footer { flex-direction: column; text-align: center; padding: 40px 24px; }
    #contato { padding: 100px 24px; }
    #servicos .inner, #para-quem .inner { padding: 0 24px; }
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
    .theme-toggle { cursor: pointer; }
  }
