/* ==========================================================================
   Section Argument: Dobra 2
   HTML: index.html:153-242
   ========================================================================== */

.jea-section {
  background: #0a0a0a;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

.jea-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 80, 60, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.jea-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pixel-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,80,60,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,80,60,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

.arg-terminal-line {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.terminal-line span { color: #ff503c; }
.terminal-line em { color: #555; font-style: normal; }

.section-tag {
  font-family: 'Share Tech Mono', monospace;
  color: #ff503c;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #ff503c;
  box-shadow: 0 0 10px #ff503c;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 22vw, 28vh);
  line-height: 0.8;
  margin: 0 0 40px;
  color: #fff;
  letter-spacing: -2px;
  text-transform: uppercase;
  position: relative;
  display: block;
  text-align: center;
}

/* Efeito Glitch Sincronizado com Hero */
.section-title::before,
.section-title::after {
  content: "O CAOS TEM UM CUSTO";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.section-title::before {
  color: #00ffff;
  z-index: -1;
  animation: pixelGlitch 2.5s step-end infinite;
  left: -4px;
}

.section-title::after {
  color: #ff00ff;
  z-index: -2;
  animation: pixelGlitch 2.5s step-end reverse infinite;
  left: 4px;
}

@keyframes pixelGlitch {
  0%, 80%, 100% { 
    clip-path: inset(0 0 100% 0); 
    transform: translate(0); 
    opacity: 0;
  }
  81% { clip-path: inset(10% 0 80% 0); transform: translate(-8px, 8px); opacity: 0.8; }
  85% { clip-path: inset(40% 0 40% 0); transform: translate(8px, -8px); opacity: 0.8; }
  90% { clip-path: inset(60% 0 20% 0); transform: translate(-8px, -4px); opacity: 0.8; }
  95% { clip-path: inset(0 0 60% 0); transform: translate(8px, 4px); opacity: 0.8; }
}

.section-title span { color: #ff503c; text-shadow: 0 0 30px rgba(255,80,60,0.2); position: relative; z-index: 2; }

/* Efeito Shuffle no Caractere */
.glitch-char {
  position: relative;
  display: inline-block;
  color: #fff;
}

.glitch-char::after {
  content: attr(data-char);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  color: #00ff41; /* Letra intrusa em verde neon */
  animation: charShuffle 4s infinite step-end;
  opacity: 0;
}

@keyframes charShuffle {
  0%, 90% { opacity: 0; content: attr(data-char); }
  91% { opacity: 1; content: "@"; }
  93% { opacity: 1; content: "#"; }
  95% { opacity: 1; content: "$"; }
  97% { opacity: 1; content: "%"; }
  99% { opacity: 1; content: "&"; }
  100% { opacity: 0; content: attr(data-char); }
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 4vw, 24px); /* Aumentado para escala hero */
  color: #888;
  max-width: 800px; /* Reduzido para centralização ficar melhor */
  margin: 0 auto 100px; /* Centralizado com auto */
  text-align: center;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Tabela Brutalista Imersiva */
.chaos-table-wrapper {
  margin-bottom: 80px;
  border: 1px solid #1a1a1a;
  background: #0a0a0a;
  min-height: 80vh; /* Ajustado para 80vh para melhor respiro */
  display: flex;
  flex-direction: column;
}

.chaos-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 1px;
  background: #1a1a1a;
}

.col-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px; /* Aumentado */
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 24px 30px;
  background: #0d0d0d;
}

.col-label.problem { color: #ff4040; border-top: 3px solid #ff4040; }
.col-label.client  { color: #666; border-top: 3px solid #333; text-align: center; }
.col-label.solution{ color: #3dff8f; border-top: 3px solid #3dff8f; text-align: right; }

.row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 1px;
  background: #1a1a1a;
  transition: all 0.3s ease;
  flex: 1; /* Faz as linhas crescerem para preencher os 100vh */
}

.row:hover {
  background: #222;
}

.cell { 
  padding: 30px 40px; /* Ajustado para equilíbrio com fonte maior */
  font-size: 24px; /* Aumentado significativamente */
  line-height: 1.3; 
  position: relative;
  display: flex;
  align-items: center;
}

.cell-problem {
  background: #0d0d0d;
  color: #ff6b6b;
  border-left: 3px solid #ff4040;
  font-family: 'Share Tech Mono', monospace;
  font-size: 22px; /* Aumentado */
  opacity: 0.9;
}
.cell-problem::before { content: '✕  '; opacity: 0.7; }

.cell-dor {
  background: #0a0a0a;
  color: #888;
  text-align: center;
  font-size: 24px; /* Aumentado */
  font-style: italic;
  justify-content: center;
  font-weight: 300;
}

.cell-solution {
  background: #0d0d0d;
  color: #3dff8f;
  text-align: right;
  border-right: 3px solid #3dff8f;
  font-family: 'Share Tech Mono', monospace;
  font-size: 22px; /* Aumentado */
  justify-content: flex-end;
  transition: all 0.3s ease;
}

.row:hover .cell-solution {
  background: #0a150d;
  text-shadow: 0 0 10px rgba(61,255,143,0.3);
}

.cell-solution::after { content: '  ✓'; opacity: 0.5; }

/* Divisor */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,80,60,0.5), transparent);
  margin: 64px 0;
}

/* Título do Processo (Radical - Centralizado e Maior) */
.process-intro {
  margin: 180px 0 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-tag {
  font-family: 'Share Tech Mono', monospace;
  color: #ff503c;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 32px;
}

.process-tag::before,
.process-tag::after {
  content: '';
  width: 40px;
  height: 1px;
  background: #ff503c;
  box-shadow: 0 0 10px rgba(255, 80, 60, 0.5);
}

.process-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 20vw, 220px);
  line-height: 0.8;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: -3px;
}

.process-title .highlight {
  color: transparent;
  -webkit-text-stroke: 2px #ff503c;
  filter: drop-shadow(0 0 20px rgba(255, 80, 60, 0.5));
}

.process-subtitle {
  font-family: 'Share Tech Mono', monospace;
  color: #777;
  font-size: clamp(16px, 2.5vw, 22px);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Trilho de Scroll Horizontal (GSAP) */
.horizontal-scroll-container {
  width: 100%;
  overflow: hidden;
  background: #080808;
  position: relative;
}

.proof-section {
  display: flex;
  width: 600vw; /* 6 cartões de 100vw */
  height: 100vh;
  will-change: transform;
  position: relative; /* Base para a linha de storyline */
}

/* Storyline Path */
.storyline-path {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 80, 60, 0.4) 5%, 
    rgba(255, 80, 60, 0.4) 95%, 
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.storyline-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: #ff503c;
  border-radius: 50%;
  box-shadow: 0 0 20px #ff503c, 0 0 40px rgba(255, 80, 60, 0.5);
  z-index: 5; /* Acima da linha e lottie */
}

.proof-card {
  width: 100vw;
  height: 100vh;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #0a0a0a;
  border-right: 1px solid #1a1a1a;
  position: relative;
  overflow: hidden;
}

.card-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(150px, 25vw, 300px);
  color: #fff;
  line-height: 1;
  opacity: 0.03;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.card-step-tag {
  font-family: 'Share Tech Mono', monospace;
  color: #ff503c;
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 20px;
  z-index: 2;
  text-transform: uppercase;
}

.card-step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(50px, 10vw, 100px);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 24px;
  z-index: 2;
  letter-spacing: 2px;
}

.card-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2.2vw, 22px);
  color: #999;
  max-width: 700px;
  margin-bottom: 50px;
  line-height: 1.5;
  z-index: 2;
  font-weight: 300;
}

.card-step-deliverable {
  font-family: 'Share Tech Mono', monospace;
  color: #fff;
  background: rgba(255, 80, 60, 0.15);
  padding: 12px 24px;
  border: 1px solid rgba(255, 80, 60, 0.4);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 2;
  display: inline-block;
}

.card-lottie-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.proof-number, .proof-label, .proof-desc {
  position: relative;
  z-index: 2;
}

.proof-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 22vw, 280px); /* Números monumentais */
  color: #ff503c;
  line-height: 0.8;
  margin-bottom: 20px;
  text-shadow: 0 0 50px rgba(255,80,60,0.1);
}

.proof-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 30px;
}

.proof-desc {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #888;
  line-height: 1.6;
  max-width: 700px;
}

/* CTA Block (legacy - mantido para compatibilidade) */
.cta-block {
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  background-image: linear-gradient(45deg, #0d0d0d 25%, #0f0f0f 25%, #0f0f0f 50%, #0d0d0d 50%, #0d0d0d 75%, #0f0f0f 75%, #0f0f0f 100%);
  background-size: 4px 4px;
}

.cta-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: #fff;
  margin-bottom: 12px;
}

.cta-sub {
  font-size: 16px;
  color: #555;
  font-weight: 300;
  max-width: 400px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
}

/* ====================================================
   T-SHAPED KNOWLEDGE BLOCK
   ==================================================== */

.t-shape-block {
  padding: 80px 0;
  border-top: 1px solid #1a1a1a;
}

/* Header */
.t-shape-header {
  text-align: center;
  margin-bottom: 80px;
}

.t-shape-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 15vw, 180px);
  line-height: 0.85;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -3px;
  margin: 24px 0 20px;
}

.t-shape-title .highlight {
  color: #ff503c;
}

.t-shape-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  color: #555;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

/* Visual T-shape */
.t-shape-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  height: 280px;
  border-bottom: 1px solid #222;
  padding-bottom: 0;
  margin-bottom: 0;
  position: relative;
}

/* Linha de base decorativa */
.t-shape-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #333, #ff503c, #333, transparent);
}

/* Skill column */
.t-skill {
  flex: 1;
  max-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  position: relative;
  cursor: default;
}

/* Tooltip */
.t-skill::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #111;
  border: 1px solid #333;
  color: #aaa;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.t-skill:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Bar */
.t-bar {
  width: 100%;
  height: 0; /* starts at 0 — animated via GSAP */
  background: linear-gradient(to top, #111, #1e1e1e);
  border-top: 2px solid #333;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
}

.t-skill:hover .t-bar {
  background: linear-gradient(to top, #1a1a1a, #2a2a2a);
  border-color: #555;
}

/* Deep skill highlight — Programação */
.t-deep .t-bar {
  background: linear-gradient(to top, rgba(255, 80, 60, 0.08), rgba(255, 80, 60, 0.18));
  border-top: 2px solid #ff503c;
  box-shadow: 0 0 30px rgba(255, 80, 60, 0.1), inset 0 0 20px rgba(255, 80, 60, 0.04);
}

.t-deep .t-bar::after {
  content: 'EXPERTISE';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 80, 60, 0.4);
  white-space: nowrap;
}

.t-deep:hover .t-bar {
  background: linear-gradient(to top, rgba(255, 80, 60, 0.14), rgba(255, 80, 60, 0.28));
  border-color: #ff6b5e;
  box-shadow: 0 0 50px rgba(255, 80, 60, 0.2);
}

/* Label */
.t-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 0 0;
  width: 100%;
  text-align: center;
}

.t-level {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: #444;
}

.t-deep .t-level { color: #ff503c; }

.t-name {
  font-family: 'Inter', sans-serif;
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.t-skill:hover .t-name { color: #ccc; }
.t-deep .t-name { color: #ff503c; }
.t-deep:hover .t-name { color: #ff7060; }

/* CTA inferior */
.t-shape-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0 0;
  gap: 32px;
  border-top: 1px solid #1a1a1a;
  margin-top: 40px;
}

.t-cta-text {
  font-family: 'Share Tech Mono', monospace;
  color: #555;
  font-size: clamp(13px, 1.8vw, 16px);
  letter-spacing: 1px;
}

/* ====================================================
   STACK LOGOS CAROUSEL
   ==================================================== */

.stack-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  margin: 48px 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* Fade nas bordas */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.stack-carousel-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: stackScroll linear infinite;
}

.track-1 { animation-duration: 35s; }
.track-2 { animation-duration: 45s; animation-direction: reverse; }

/* Escondido no Desktop */
.track-3 { 
  display: none; 
}

.stack-carousel-track:hover {
  animation-play-state: paused;
}

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

@media (max-width: 768px) {
  .stack-carousel-wrapper {
    gap: 16px;
    margin: 32px 0 0;
  }
  .stack-carousel-track {
    gap: 32px;
  }
  .track-1 { animation-duration: 20s; }
  .track-2 { animation-duration: 25s; }
  .track-3 { 
    display: flex; /* Mostra no mobile */
    animation-duration: 22s; 
  }
}

.stack-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.stack-logo-item:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.stack-logo-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.7);
  transition: filter 0.3s ease;
}

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

/* Logos com fundo branco: inverte para ficar visível no dark mode */
.stack-logo-item img[alt="Next.js"],
.stack-logo-item img[alt="WordPress"],
.stack-logo-item img[alt="Cloudflare"] {
  filter: grayscale(1) invert(1) brightness(0.6);
}

.stack-logo-item:hover img[alt="Next.js"],
.stack-logo-item:hover img[alt="WordPress"],
.stack-logo-item:hover img[alt="Cloudflare"] {
  filter: invert(1) brightness(1);
}

.stack-logo-item span {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: #444;
  text-transform: uppercase;
  transition: color 0.3s;
}

.stack-logo-item:hover span {
  color: #ff503c;
}

@media (max-width: 768px) {
  /* Gráfico vira horizontal: barras empilhadas na vertical */
  .t-shape-visual {
    flex-direction: column;
    height: auto;
    align-items: stretch;
    gap: 20px;
    border-bottom: none;
    padding-bottom: 0;
  }

  .t-shape-visual::after {
    display: none; /* Remove linha de base desktop */
  }

  .t-skill {
    flex-direction: row;
    max-width: none;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }

  /* Label: coluna fixa à esquerda */
  .t-label {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 90px;
    flex-shrink: 0;
    padding: 0;
    gap: 2px;
    text-align: left;
  }

  .t-level { font-size: 9px; }
  .t-name  { font-size: 11px; }

  /* Barra horizontal: cresce para a direita */
  .t-bar {
    height: 36px;
    width: 0; /* animado via JS */
    border-top: none;
    border-left: 3px solid #333;
    flex-shrink: 0;
  }

  .t-deep .t-bar {
    border-left: 3px solid #ff503c;
  }

  /* Desativa texto rotacionado no mobile */
  .t-deep .t-bar::after {
    display: none;
  }

  /* Tooltips off no mobile */
  .t-skill::before {
    display: none;
  }

  .t-shape-cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}


/* Os botões agora herdam de hero.css via classes .cta-btn.primary e .cta-btn.secondary */

@media (max-width: 992px) {
  .cta-block {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }
  .cta-sub { max-width: none; }
}

@media (max-width: 768px) {
  .jea-section { padding: 60px 20px; }

  .chaos-header,
  .row { grid-template-columns: 1fr; }

  .col-label.client,
  .cell-dor { display: none; }
  
  .col-label.problem, .cell-problem { border-right: 2px solid #ff4040; text-align: left; }
  .col-label.solution, .cell-solution { text-align: left; border-left: 2px solid #3dff8f; border-right: none; }

  .horizontal-scroll-container {
    overflow: visible;
  }

  .proof-section {
    flex-direction: column;
    width: 100% !important;
    height: auto !important;
    display: flex !important;
  }

  .proof-card {
    width: 100% !important;
    height: auto !important;
    min-height: 60vh;
    padding: 0 20px; /* Remove top and bottom padding */
    border-right: none;
    border-bottom: 1px solid #1a1a1a;
    opacity: 0;
    transform: translateX(100px); /* Start from the right */
  }

  .storyline-path, 
  .storyline-dot { display: none; }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
}

/* Transição para Dobra 3 */
.section-break {
  width: 100%;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  z-index: 15;
}

.section-break-out {
  width: 100%;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  z-index: 15;
  margin-top: -1px; /* Evita fendas de subpixel */
}

/* Transição de saída da Dobra 3 (Laranja -> Preto) */
.section-break-out {
  width: 100%;
  background: #ff503c; /* Fundo começa laranja para fundir com a dobra 3 */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  z-index: 15;
  margin-bottom: -2px; /* Evita fendas de subpixel mais teimosas */
}

.section-break-out .break-svg {
  transform: translateY(1px); /* Puxa o SVG sutilmente para baixo para cobrir qualquer linha residual */
}


.break-svg {
  width: 100%;
  height: auto;
  display: block;
}
