*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --bg: #0a0a08;
    --bg2: #111110;
    --fg: #f0ece2;
    --fg2: #8a8880;
    --accent: #e8186d;
    --accent2: #f5502a;
    --border: rgba(240,236,226,0.08);
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
  }

  /* Nav */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    mix-blend-mode: normal;
  }
  nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,8,0.9) 0%, transparent 100%);
    pointer-events: none;
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    color: var(--fg);
    text-decoration: none;
    position: relative;
  }
  .nav-logo span { color: var(--accent); }
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    position: relative;
  }
  .nav-links a {
    color: var(--fg2);
    text-decoration: none;
    font-size: 0.8rem;
    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);
    padding: 0.65rem 1.5rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    position: relative;
  }
  .nav-cta:hover { background: var(--fg); transform: scale(1.04); }

  /* Hero */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 3rem 5rem;
    position: relative;
    overflow: hidden;
    padding: 120px 3rem 5rem;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(232, 24, 109, 0.06) 0%, transparent 70%),
                radial-gradient(ellipse 50% 50% at 20% 80%, rgba(155, 39, 175, 0.05) 0%, transparent 60%);
  }
  .hero-ticker {
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(12rem, 20vw, 22rem);
    color: rgba(116, 107, 87, 0.025);
    white-space: nowrap;
    letter-spacing: -0.02em;
    line-height: 1;
    animation: ticker 15s linear infinite;
    pointer-events: none;
  }
  @keyframes ticker {
    from { transform: translateY(-50%) translateX(0); }
    to { transform: translateY(-50%) translateX(-50%); }
  }
  .hero-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s 0.2s forwards;
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 9vw, 13rem);
    line-height: 0.9;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp 1s 0.4s forwards;
  }
  .hero-title em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    color: var(--accent);
  }

  .hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeUp 1s 0.7s forwards;
  }
  .hero-desc {
    max-width: 380px;
    color: var(--fg2);
    font-size: 1rem;
    line-height: 1.7;
  }
  .hero-scroll {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--fg2);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

#changing-word {
  display: inline-block;
  position: relative;
  min-width: 2ch;

  /* Espaço extra para não cortar as letras */
  padding: 0.05em 0.05em 0.2em;

  background: linear-gradient(90deg, #f5502a 0%, #e8186d 45%, #9b27af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#changing-word.glitch-active {
  animation: glitch-skew 0.65s steps(1) forwards;
}

#changing-word.glitch-active::before,
#changing-word.glitch-active::after {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  overflow: hidden;
  background: var(--bg);
}

#changing-word.glitch-active::before {
  color: #00fff9;
  mix-blend-mode: screen;
  animation: glitch-chan-a 0.65s steps(1) forwards;
  clip-path: polygon(0 15%, 100% 15%, 100% 35%, 0 35%);
  z-index: 2;
}

#changing-word.glitch-active::after {
  color: #ff00e4;
  mix-blend-mode: screen;
  animation: glitch-chan-b 0.65s steps(1) forwards;
  clip-path: polygon(0 55%, 100% 55%, 100% 80%, 0 80%);
  z-index: 2;
}

@keyframes glitch-skew {
  0%   { transform: translate(0) skewX(0deg); opacity: 0; }
  8%   { transform: translate(-4px, 2px) skewX(-3deg); opacity: 1; }
  16%  { transform: translate(4px, -1px) skewX(2deg); clip-path: polygon(0 0,100% 0,100% 30%,0 30%,0 33%,100% 33%,100% 60%,0 60%,0 63%,100% 63%,100% 100%,0 100%); }
  24%  { transform: translate(-3px,0) skewX(0deg); clip-path: none; }
  32%  { transform: translate(2px,2px) skewX(1deg); clip-path: polygon(0 40%,100% 40%,100% 42%,0 42%); }
  40%  { transform: translate(0) skewX(-1deg); clip-path: none; }
  48%  { transform: translate(-2px,1px); }
  56%  { transform: translate(2px,-1px); clip-path: polygon(0 70%,100% 70%,100% 73%,0 73%); }
  64%  { transform: translate(0); clip-path: none; }
  100% { transform: translate(0); opacity: 1; }
}

@keyframes glitch-chan-a {
  0%   { transform: translate(-6px,-2px); clip-path: polygon(0 10%,100% 10%,100% 32%,0 32%); }
  20%  { transform: translate(4px,1px);   clip-path: polygon(0 22%,100% 22%,100% 44%,0 44%); }
  40%  { transform: translate(-5px,3px);  clip-path: polygon(0 5%,100% 5%,100% 25%,0 25%); }
  60%  { transform: translate(5px,0);     clip-path: polygon(0 60%,100% 60%,100% 80%,0 80%); }
  80%  { transform: translate(-3px,2px);  clip-path: polygon(0 10%,100% 10%,100% 30%,0 30%); }
  100% { transform: translate(0);         clip-path: polygon(0 15%,100% 15%,100% 35%,0 35%); }
}

@keyframes glitch-chan-b {
  0%   { transform: translate(6px,1px);   clip-path: polygon(0 50%,100% 50%,100% 72%,0 72%); }
  20%  { transform: translate(-4px,-1px); clip-path: polygon(0 75%,100% 75%,100% 95%,0 95%); }
  40%  { transform: translate(5px,-3px);  clip-path: polygon(0 35%,100% 35%,100% 55%,0 55%); }
  60%  { transform: translate(-5px,0);    clip-path: polygon(0 45%,100% 45%,100% 65%,0 65%); }
  80%  { transform: translate(3px,-2px);  clip-path: polygon(0 65%,100% 65%,100% 85%,0 85%); }
  100% { transform: translate(0);         clip-path: polygon(0 55%,100% 55%,100% 80%,0 80%); }
}
    
  .scroll-line {
    width: 60px;
    height: 1px;
    background: var(--fg2);
    position: relative;
    overflow: hidden;
  }
  .scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    animation: scanLine 2s ease-in-out infinite;
  }
  @keyframes scanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Marquee strip */
  .marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  overflow: hidden;
  background: var(--bg2);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-logo {
  height: 55px;       /* ajuste a altura conforme suas logos */
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1); /* deixa todas brancas */
  opacity: 0.4;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.marquee-logo:hover {
  opacity: 1;
  filter: brightness(1) invert(0); /* mostra a cor original no hover */
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

  /* Seção genérica */
  section {
    padding: 8rem 3rem;
    position: relative;
  }
  .section-tag {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .section-tag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--accent);
  }

  /* About */
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .about-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: 0.95;
    letter-spacing: 0.01em;
  }
  .about-title em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    color: var(--accent);
  }

  .about-right { }
  
  .about-text {
    color: var(--fg2);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }
  .stats-row {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }
  .stat-item {}
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--accent);
  }
  .stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fg2);
    margin-top: 0.3rem;
  }
  .about-img {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 4px;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .about-img-inner {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 15vw, 16rem);
    color: rgba(200,242,48,0.05);
    line-height: 1;
    letter-spacing: -0.03em;
  }
  .about-tag-float {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--accent);
    color: var(--bg);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
  }

  /* Serviços */
  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
  }
  .services-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    line-height: 0.95;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  .service-card {
    background: var(--bg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
  }

  .card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.6s ease;
  z-index: 1;
}

.service-card:hover .card-img {
  opacity: 1;
  transform: scale(1);
}

  .service-card::before {
    display: none;
  }
  .service-card:hover::before { transform: translateY(0); }
  .service-card:hover .service-num,
  .service-card:hover .service-name {
    transform: translateY(-4px);
  }
  .service-card:hover::after {
    opacity: 1;
  }
  .service-card:hover .service-desc {
    position: relative;
    z-index: 3;
  }
  .service-num {
    font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(240,236,226,0.05);
  line-height: 1;
  position: relative;
  z-index: 3;
  transition: transform 0.4s;
  }
  .service-name {
    font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  margin: 1rem 0 0.8rem;
  position: relative;
  z-index: 3;
  transition: transform 0.4s;
  }
  .service-desc {
    font-size: 0.85rem;
  color: var(--fg2);
  line-height: 1.7;
  position: relative;
  z-index: 3;
  transition: color 0.4s;
  }
  .service-card:hover .service-desc { color: rgba(240, 236, 226, 0.85); }

  .service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,8,0.88), rgba(10,10,8,0.35));
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 2;
}

  /* Work / Portfólio */
  .work-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
  }
  .work-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    line-height: 0.95;
  }
  .work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .work-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: none;
  }
  .work-card:first-child { grid-row: span 2; }
  .work-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }
  .work-card:first-child .work-thumb { aspect-ratio: 3/4; height: 100%; }
  .work-thumb-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 10vw, 11rem);
    color: rgba(240,236,226,0.04);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
  }
  .work-card:hover .work-thumb-label { transform: scale(1.12); }
  .work-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,8,0.95) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
  }
  .work-card:hover .work-thumb-overlay { opacity: 1; }
  .work-thumb-cta {
    background: var(--accent);
    color: var(--bg);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
  }
  .work-info {
    padding: 1.2rem 0 0;
  }
  .work-cats {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
  }
  .work-cat {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fg2);
    border: 1px solid var(--border);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
  }
  .work-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }
  .work-year {
    font-size: 0.75rem;
    color: var(--fg2);
    letter-spacing: 0.1em;
  }

  /* Accent color dots per card */
  .work-card:nth-child(1) .work-thumb { background: #0f1a0a; }
  .work-card:nth-child(2) .work-thumb { background: #0a0f1a; }
  .work-card:nth-child(3) .work-thumb { background: #1a0a10; }

  /* Process */
  .process-section { background: var(--bg2); }
  .process-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
  }
  .process-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    line-height: 0.95;
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
  }
  .process-step {
    padding: 2.5rem;
    border-right: 1px solid var(--border);
    position: relative;
  }
  .process-step:last-child { border-right: none; }
  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: rgba(240,236,226,0.04);
    line-height: 1;
    margin-bottom: 1rem;
  }
  .step-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-style: italic;
  }
  .step-desc {
    font-size: 0.85rem;
    color: var(--fg2);
    line-height: 1.7;
  }
  .step-connector {
    position: absolute;
    top: 2.5rem;
    right: -1px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateX(50%);
  }
  .process-step:last-child .step-connector { display: none; }

  /* Depoimentos */
  .testimonials-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 4rem;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .testimonial-card {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
    position: relative;
  }
  .testimonial-card::before {
    content: '\201C';
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    opacity: 0.3;
  }
  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--fg2);
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--bg);
    flex-shrink: 0;
  }
  .author-name {
    font-weight: 500;
    font-size: 0.85rem;
  }
  .author-role {
    font-size: 0.75rem;
    color: var(--fg2);
  }

  /* CTA final */
  .cta-section {
    text-align: center;
    padding: 10rem 3rem;
    position: relative;
    overflow: hidden;
  }
  .cta-bg-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(10rem, 20vw, 22rem);
    color: rgba(240,236,226,0.015);
    pointer-events: none;
    letter-spacing: -0.03em;
    white-space: nowrap;
  }
  .cta-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
  }
  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 11rem);
    line-height: 0.9;
    margin-bottom: 2rem;
  }
  .cta-title em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    color: var(--accent);
  }
  .cta-sub {
    color: var(--fg2);
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }
  .cta-btn {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  border: 2px solid var(--accent);
  padding: 1.1rem 3.5rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 24px rgba(232, 24, 109, 0.35), inset 0 0 24px rgba(232, 24, 109, 0.05);
}

.cta-btn:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 48px rgba(232, 24, 109, 0.6);
  transform: scale(1.06);
}

  /* Footer */
  footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 4rem;
  padding: 2rem 2rem;
}

/* Logo */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  width: 90px; /* aumente à vontade, ex: 110px, 120px */
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}


.footer-logo span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--fg);
  line-height: 1;
}

.footer-logo span em {
  font-style: normal;
  color: var(--accent);
}

.footer-slogan {
  font-size: 0.85rem;
  color: var(--fg2);
  line-height: 1.75;
  max-width: 320px;
}

/* Divisor vertical */
.footer-divider-v {
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

/* Contato */
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: flex-start;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--fg2);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}

.footer-contact-line svg {
  color: var(--accent);
  flex-shrink: 0;
}

.footer-contact-line:hover {
  color: var(--fg);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--fg2);
  letter-spacing: 0.08em;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}

.footer-socials a:hover {
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 1.5rem;
    text-align: center;
  }

  .footer-divider-v {
    width: 80px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(to right, transparent, var(--border), transparent);
  }

  .footer-contact-block {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
  }
}


  /* Reveal animações */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Link genérico */
  .link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--fg);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.2rem;
  }
  .link-arrow:hover { color: var(--accent); border-color: var(--accent); }
  .link-arrow::after { content: '→'; }

  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { display: none; }
    section { padding: 5rem 1.5rem; }
    .hero { padding: 0 1.5rem 4rem; }
    .about { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .work-card:first-child { grid-row: span 1; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  }

html {
  scroll-behavior: auto;
}

.logo-topo-direita {
  position: absolute;
  top: 22px;
  right: 28px;
  z-index: 9998;
  display: block;
}

.logo-topo-direita img {
  width: min(155px, 34vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.foguete-scroll {
  position: fixed;
  right: 34px;
  bottom: 28px;
  width: 74px;
  height: 74px;
  z-index: 9999;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(120px) scale(0.85) rotate(-18deg);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.foguete-scroll.aparecer {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1) rotate(-18deg);
}

.foguete-scroll img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
  animation: fogueteFlutuando 2.2s ease-in-out infinite;
}

.foguete-rastro {
  position: absolute;
  left: 23%;
  bottom: -31px;
  width: 20px;
  height: 54px;
  transform: translateX(-50%) rotate(18deg);
  transform-origin: top center;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    rgba(255, 204, 74, 0.95),
    rgba(255, 100, 40, 0.75),
    rgba(255, 255, 255, 0)
  );
  filter: blur(3px);
  opacity: 0.75;
  z-index: 1;
  animation: rastroPulsando 0.55s ease-in-out infinite alternate;
}

.foguete-scroll.voando {
  pointer-events: none;
  transition: none;
}

.foguete-scroll.voando img {
  animation: fogueteDecolando 0.22s ease-in-out infinite alternate;
}

.foguete-scroll.voando .foguete-rastro {
  height: 95px;
  bottom: -74px;
  opacity: 1;
  filter: blur(5px);
}

@keyframes fogueteFlutuando {
  0%, 100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}

@keyframes fogueteDecolando {
  from {
    transform: translateY(0) rotate(-5deg) scale(1);
  }

  to {
    transform: translateY(-8px) rotate(5deg) scale(1.06);
  }
}

@keyframes rastroPulsando {
  from {
    transform: translateX(-50%) scaleY(0.85);
    opacity: 0.5;
  }

  to {
    transform: translateX(-50%) scaleY(1.18);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .logo-topo-direita {
    top: 16px;
    right: 16px;
  }

  .logo-topo-direita img {
    width: 118px;
  }

  .foguete-scroll {
    width: 60px;
    height: 60px;
    right: 18px;
    bottom: 20px;
  }
}

.work-thumb-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.work-video-click-area {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
}

.work-thumb-overlay {
  z-index: 6;
  pointer-events: none;
}

.work-thumb-overlay .work-thumb-cta {
  pointer-events: auto;
  position: relative;
  cursor: pointer;
}