:root {
--ink: #0d0d0d;
--ink-light: #3a3a3a;
--paper: #f5f2ee;
--orange: #c8952a;
--orange-dark: #FFDE59;
--steel: #1a2332;
--steel-mid: #2d3f55;
--gold: #c8952a;
--white: #ffffff;
--border: rgba(0,0,0,0.12);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: 'DM Sans', sans-serif;
background: var(--paper);
color: var(--ink);
overflow-x: hidden;
}

/* ──────────── NAV ──────────── */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
display: flex; align-items: center; justify-content: space-between;
padding: 1.2rem 4rem;
background: var(--paper);
backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(255,255,255,0.06);
transition: padding 0.3s;
}
.logo{
  width: 100px;
}
nav.scrolled { padding: 0.8rem 4rem; }
.nav-logo {
font-family: 'Bebas Neue', sans-serif;
font-size: 2rem;
letter-spacing: 0.08em;
text-decoration: none;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--orange);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
background: var(--orange);
color: var(--white) !important;
padding: 0.5rem 1.4rem;
border-radius: 2px;
font-weight: 500;
}
.nav-cta:hover { background: var(--orange-dark); color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: black; transition: all 0.3s; }

/* ──────────── HERO / CARROSSEL ──────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--steel);
}

/* trilho que desliza */
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

/* cada slide */
.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* efeito Ken Burns na imagem */
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.carousel-slide.active img { transform: scale(1.07); }

/* overlay escuro diagonal */
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(26,35,50,0.88) 0%,
    rgba(26,35,50,0.55) 55%,
    rgba(26,35,50,0.20) 100%
  );
  z-index: 1;
}

/* grade decorativa */
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.035;
  background-image: linear-gradient(var(--white) 1px, transparent 1px),
                    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* conteúdo textual do slide */
.slide-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 6rem;
  max-width: 780px;
}

/* tag acima do título */
.slide-tag {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s 0.1s, transform 0.6s 0.1s;
  margin-top: 120px;
}
.slide-tag::before { content: ''; width: 28px; height: 2px; background: var(--orange); }

/* título */
.slide-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 8rem);
  line-height: 0.95; color: var(--white);
  letter-spacing: 0.02em;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s 0.25s, transform 0.7s 0.25s;
}
.slide-content h1 em { color: var(--orange); font-style: normal; }

/* descrição */
.slide-desc {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75; max-width: 460px;
  margin-top: 1.0rem;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.7s 0.4s, transform 0.7s 0.4s;
}

/* botões de ação */
.slide-actions {
  display: flex; gap: 1rem; margin-top: 1.5rem;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.7s 0.55s, transform 0.7s 0.55s;
}

/* ativa as animações apenas no slide ativo */
.carousel-slide.active .slide-tag,
.carousel-slide.active h1,
.carousel-slide.active .slide-desc,
.carousel-slide.active .slide-actions {
  opacity: 1; transform: translateY(0);
}

/* botões globais (usados dentro dos slides) */
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 0.9rem 2.2rem; border-radius: 2px;
  text-decoration: none; font-weight: 500; font-size: 0.9rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px);color: #3a3a3a;}
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.5); color: var(--white);
  padding: 0.9rem 2.2rem; border-radius: 2px;
  text-decoration: none; font-weight: 400; font-size: 0.9rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--orange); background: rgba(200,149,42,0.12); }

/* estatísticas na base esquerda */
.hero-stats {
  position: absolute; bottom: 4.5rem; left: 6rem;
  display: flex; gap: 3.5rem; z-index: 10;
}
.stat-item { text-align: left; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 3.2rem;
  color: var(--white); line-height: 1;
}
.stat-num span { color: var(--orange); }
.stat-label {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: rgba(255,255,255,0.4); margin-top: 0.3rem;
}

/* setas prev / next */
.carousel-btn {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(6px);
}
.carousel-btn:hover { background: var(--orange); border-color: var(--orange); }
.carousel-btn svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }
.carousel-prev { left: 2rem; }
.carousel-next { right: 2rem; }

/* dots indicadores */
.carousel-dots {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 10;
}
.dot {
  width: 28px; height: 3px;
  background: rgba(255,255,255,0.25);
  cursor: pointer; transition: background 0.3s, width 0.3s;
  border: none; padding: 0;
}
.dot.active { background: var(--orange); width: 48px; }

/* barra de progresso na base */
.carousel-progress {
  position: absolute; bottom: 0; left: 0; height: 3px;
  background: var(--orange); z-index: 10;
  width: 0%;
}

/* hint de scroll (canto direito) */
.hero-scroll {
  position: absolute; bottom: 2rem; right: 6rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); z-index: 10;
  text-decoration: none; writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity:0.3; } 50% { opacity:1; } }

/* ──────────── SOBRE ──────────── */
.sobre {
background: var(--paper);
display: grid; grid-template-columns: 1fr 1fr;
min-height: 80vh;
}
.sobre-visual {
background: var(--steel);
position: relative; overflow: hidden;
display: flex; align-items: center; justify-content: center;
}
.sobre-visual-inner {
position: relative; z-index: 2; padding: 6rem;
text-align: center;
}
.big-number {
font-family: 'Bebas Neue', sans-serif;
font-size: 11rem; line-height: 1;
color: rgba(255,255,255,0.07);
position: absolute; top: 50%; left: 50%;
transform: translate(-50%, -50%);
white-space: nowrap; user-select: none;
}
.circle-badge {
width: 220px; height: 220px; border-radius: 50%;
border: 1px solid rgba(255,255,255,0.15);
display: flex; flex-direction: column;
align-items: center; justify-content: center;
margin: 0 auto;
}
.circle-badge .n {
font-family: 'Bebas Neue', sans-serif; font-size: 5rem;
color: var(--orange); line-height: 1;
}
.circle-badge p { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.sobre-content {
padding: 6rem 5rem; display: flex; flex-direction: column; justify-content: center;
}
.section-tag {
font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
color: var(--orange); margin-bottom: 1.2rem;
display: flex; align-items: center; gap: 0.6rem;
}
.section-tag::before { content: ''; width: 24px; height: 2px; background: var(--orange); }
.section-title {
font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 4vw, 4rem);
line-height: 1.05; color: var(--ink);
margin-bottom: 1.5rem;
}
.section-title em { color: var(--orange); font-style: normal; }
.sobre-content p {
font-size: 1rem; line-height: 1.8; color: var(--ink-light);
margin-bottom: 1rem; font-weight: 300;
}
.sobre-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.pillar {
padding: 1.2rem;
border: 1px solid var(--border);
border-left: 3px solid var(--orange);
background: white;
}
.pillar strong { font-size: 0.85rem; font-weight: 500; display: block; margin-bottom: 0.3rem; }
.pillar span { font-size: 0.8rem; color: var(--ink-light); }

/* ──────────── PRODUTOS ──────────── */
.produtos { background: var(--ink); padding: 8rem 4rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-tag { justify-content: center; }
.section-header .section-tag::before { display: none; }
.section-header .section-title { color: var(--white); }
.section-header p { color: rgba(255,255,255,0.5); max-width: 500px; margin: 0 auto; font-weight: 300; }
.produtos-grid {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
background: rgba(255,255,255,0.08);
max-width: 1200px; margin: 0 auto;
}
.produto-card {
  background: var(--paper);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.produtos a:link {
  color: inherit;
  text-decoration: none;
}
.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.produto-card::before {
content: ''; position: absolute; bottom: 0; left: 0;
width: 0; height: 3px; background: var(--orange);
transition: width 0.4s ease;
}
.produto-card:hover::before { width: 100%; }
.produto-num {
font-family: 'Bebas Neue', sans-serif; font-size: 5rem;
color: rgba(255,255,255,0.04); line-height: 1;
position: absolute; top: 1rem; right: 1.5rem;
user-select: none;
}

/* ── CARROSSEL DE IMAGENS NOS CARDS ── */
.produto-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}
/* trilho de imagens */
.img-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.77,0,0.18,1);
  will-change: transform;
}
.img-track img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.4s ease;
  pointer-events: none;
  user-select: none;
}
/* setas do card */
.card-prev,
.card-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; z-index: 5;
  background: rgba(0,0,0,0.45);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.card-prev { left: 6px; }
.card-next { right: 6px; }
.card-prev svg, .card-next svg {
  width: 14px; height: 14px;
  stroke: white; fill: none; stroke-width: 2.5;
}
.produto-img:hover .card-prev,
.produto-img:hover .card-next { opacity: 1; }
.card-prev:hover, .card-next:hover { background: var(--orange); }
/* dots do card */
.card-dots {
  position: absolute; bottom: 7px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 5;
}
.card-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background 0.25s, transform 0.25s;
  cursor: pointer; border: none; padding: 0;
}
.card-dot.active { background: var(--orange); transform: scale(1.25); }

/* ── GALERIA NA PÁGINA DO PRODUTO ── */
.gallery-main {
  width: 100%;
  max-height: 480px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  position: relative;
}
.gallery-track {
  display: flex; height: 100%;
  transition: transform 0.5s cubic-bezier(0.77,0,0.18,1);
}
.gallery-track img {
  min-width: 100%; height: 100%;
  object-fit: contain; flex-shrink: 0;
  padding: 2rem;
  pointer-events: none; user-select: none;
}
/* setas da galeria */
.gal-prev, .gal-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.1);
  cursor: pointer; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.gal-prev { left: 10px; }
.gal-next { right: 10px; }
.gal-prev svg, .gal-next svg { width: 18px; height: 18px; stroke: var(--ink); fill: none; stroke-width: 2; }
.gal-prev:hover, .gal-next:hover { background: var(--orange); border-color: var(--orange); }
.gal-prev:hover svg, .gal-next:hover svg { stroke: white; }
/* thumbnails */
.gallery-thumbs {
  display: flex; gap: 0.6rem; margin-top: 0.7rem;
}
.gal-thumb {
  flex: 1; aspect-ratio: 1/1;
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent;
  background: white;
  transition: border-color 0.2s;
}
.gal-thumb.active { border-color: var(--orange); }
.gal-thumb img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 0.4rem;
  pointer-events: none;
  filter: grayscale(0.3);
  transition: filter 0.2s;
}
.gal-thumb.active img, .gal-thumb:hover img { filter: none; }
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
}
.produto-icon {
width: 56px; height: 56px;
background: rgba(232,79,28,0.12);
border: 1px solid rgba(232,79,28,0.25);
border-radius: 2px;
display: flex; align-items: center; justify-content: center;
margin-bottom: 1.5rem;
}
.produto-icon svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.produto-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--white); letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.produto-card p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.produto-link {
display: inline-flex; align-items: center; gap: 0.4rem;
font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
color: var(--orange); margin-top: 1.5rem; text-decoration: none;
transition: gap 0.2s;
}
.produto-link:hover { gap: 0.7rem; }
.produto-link::after { content: '→'; }

/* CONTEÚDO */
.produto-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.produto-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.produto-content p {
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* BOTÃO */
.produto-btn {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  padding: 0.7rem;
  border: 1px solid var(--orange);
  color: var(--orange);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s;
}

.produto-btn:hover {
  background: var(--orange);
  color: var(--white);
}

/* ──────────── SOLUCOES ──────────── */
.solucoes {
background: var(--paper);
padding: 8rem 4rem;
display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
max-width: 1400px; margin: 0 auto;
align-items: center;
}
.solucoes-steps { counter-reset: step; }
.step {
display: flex; gap: 1.5rem; padding: 1.8rem 0;
border-bottom: 1px solid var(--border);
position: relative;
}
.step:last-child { border-bottom: none; }
.step-num {
flex-shrink: 0;
width: 44px; height: 44px;
border: 1px solid var(--orange);
display: flex; align-items: center; justify-content: center;
font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--orange);
}
.step-content h4 { font-size: 1rem; font-weight: 500; margin-bottom: 0.4rem; }
.step-content p { font-size: 0.85rem; color: var(--ink-light); line-height: 1.6; }

/* ──────────── POR QUE NOS ──────────── */
.porque {
background: var(--steel);
padding: 8rem 4rem; text-align: center;
}
.porque .section-title { color: var(--white); }
.porque-grid {
display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
max-width: 1100px; margin: 4rem auto 0;
}
.porque-item {
border: 1px solid rgba(255,255,255,0.08);
padding: 2rem 1.5rem; text-align: left;
position: relative; transition: border-color 0.3s;
}
.porque-item:hover { border-color: var(--orange-dark); }
.porque-item::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; height: 2px;
background: linear-gradient(to right, var(--orange), transparent);
opacity: 0; transition: opacity 0.3s;
}
.porque-item:hover::before { opacity: 1; }
.porque-num {
font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem;
color: var(--orange); line-height: 1; margin-bottom: 1rem;
}
.porque-item h4 { font-size: 0.9rem; font-weight: 500; color: var(--white); margin-bottom: 0.6rem; }
.porque-item p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ──────────── CONTATO / FOOTER ──────────── */
.contato {
background: var(--ink);
display: grid; grid-template-columns: 1fr 1fr;
}
.contato-left {
padding: 7rem 5rem;
border-right: 1px solid rgba(255,255,255,0.06);
}
.contato-left .section-title { color: var(--white); margin-bottom: 1.5rem; }
.contato-left p { color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.8; margin-bottom: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
display: flex; align-items: center; gap: 1rem;
font-size: 0.9rem; color: rgba(255,255,255,0.6);
text-decoration: none;
transition: color 0.2s;
}
.contact-item:hover { color: var(--orange); }
.contact-item .icon {
width: 36px; height: 36px; background: rgba(255,255,255,0.05);
border-radius: 2px; display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.contact-item .icon svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.contato-right { padding: 7rem 5rem; }
.contato-right h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--white); letter-spacing: 0.04em; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); display: block; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea {
width: 100%; background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
color: var(--white); padding: 0.85rem 1rem;
font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
border-radius: 0; outline: none;
transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { height: 120px; resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
width: 100%; background: var(--orange); color: var(--white);
border: none; padding: 1rem; font-family: 'DM Sans', sans-serif;
font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
font-weight: 500; cursor: pointer; border-radius: 0;
transition: background 0.2s;
}
.btn-submit:hover { background: var(--orange-dark); }

/* ──────────── WHATSAPP FLUTUANTE ──────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wppEntrada 0.5s ease 1s both;
  overflow: visible;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(37,211,102,0.55);
}
.whatsapp-float svg {
  width: 28px !important;
  height: 28px !important;
  fill: #ffffff;
  flex-shrink: 0;
  display: block;
}
/* tooltip */
.whatsapp-float::before {
  content: 'Fale conosco';
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 0.4rem 0.85rem;
  border-radius: 3px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.whatsapp-float::after {
  content: '';
  position: absolute;
  right: calc(100% + 4px);
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--ink);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.whatsapp-float:hover::before,
.whatsapp-float:hover::after { opacity: 1; }
/* pulso */
.wpp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: wppPulse 2.8s ease-out infinite;
  z-index: -1;
}
@keyframes wppPulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes wppEntrada {
  from { opacity: 0; transform: scale(0.5) translateY(16px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}
@media (max-width: 640px) {
  .whatsapp-float { width: 46px; height: 46px; bottom: 1.2rem; right: 1.2rem; }
  .whatsapp-float svg { width: 24px !important; height: 24px !important; }
  .whatsapp-float::before, .whatsapp-float::after { display: none; }
}

footer {
background: #050505;
padding: 2rem 4rem;
display: flex; align-items: center; justify-content: space-between;
border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-logo {
font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
color: rgba(255,255,255,0.5); letter-spacing: 0.08em;
}
.footer-logo span { color: var(--orange); }
footer p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }

/* ──────────── JORNADA ──────────── */
.jornada {
  background: var(--paper);
  padding: 8rem 4rem;
}
.jornada-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.jornada-intro {
  font-size: 1.05rem; line-height: 1.85; font-weight: 300;
  color: var(--ink-light); max-width: 780px;
  margin: 1.5rem 0 4rem;
}
.jornada-intro strong { font-weight: 500; color: var(--ink); }

/* timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--border);
  margin-left: 1.5rem;
  margin-bottom: 5rem;
}
.timeline-item {
  display: flex;
  gap: 2.5rem;
  padding: 0 0 3rem 3rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -9px; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--paper);
}
.timeline-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem; line-height: 1;
  color: var(--orange);
  min-width: 90px;
  flex-shrink: 0;
}
.timeline-content h4 {
  font-size: 1rem; font-weight: 500;
  margin-bottom: 0.5rem; color: var(--ink);
}
.timeline-content p {
  font-size: 0.9rem; line-height: 1.75;
  color: var(--ink-light); font-weight: 300;
}
.timeline-content p strong { font-weight: 500; color: var(--ink); }

/* números rápidos */
.jornada-nums {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.jnum {
  background: var(--white);
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.5rem;
}
.jnum-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; line-height: 1;
  color: var(--ink);
}
.jnum-val em { color: var(--orange); font-style: normal; font-size: 2.5rem; }
.jnum-label {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--ink-light);
}

/* ──────────── MISSÃO VISÃO VALORES ──────────── */
.mvv {
  background: var(--steel);
  padding: 8rem 4rem;
}
.mvv-header {
  text-align: center;
  margin-bottom: 4rem;
}
.mvv-header .section-tag {
  justify-content: center;
}
.mvv-header .section-tag::before { display: none; }
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.mvv-card {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s;
}
.mvv-card:hover { border-color: rgba(200,149,42,0.4); }
.mvv-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--orange), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.mvv-card:hover::before { opacity: 1; }
.mvv-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(200,149,42,0.3);
  background: rgba(200,149,42,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--orange);
}
.mvv-icon svg { width: 24px; height: 24px; }

.mvv-icon .material-symbols-outlined {
  font-size: 38px; /* controla o tamanho */
  color: var(--orange);
}

.mvv-card:hover .material-symbols-outlined {
  transform: scale(1.2);
  transition: 0.3s ease;
}

.mvv-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 0.04em;
  color: var(--white); margin-bottom: 1rem;
}
.mvv-card p {
  font-size: 0.88rem; line-height: 1.8;
  color: rgba(255,255,255,0.55); font-weight: 300;
}
.mvv-card p strong { color: var(--orange); font-weight: 500; }

/* ──────────── EQUIPE ──────────── */
.equipe {
  background: var(--paper);
  padding: 8rem 4rem;
}
.equipe-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 6rem; align-items: start;
}
.equipe-text p {
  font-size: 0.95rem; line-height: 1.85;
  color: var(--ink-light); font-weight: 300;
  margin-bottom: 1rem;
}
.certs {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 1.8rem;
}
.cert-badge {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500; padding: 0.4rem 0.9rem;
  border: 1px solid var(--orange);
  color: var(--orange);
}
/* wrapper dos dois cards */
.equipe-cards-wrap {
  display: flex; flex-direction: column; gap: 1.5rem;
}
/* card individual */
.equipe-card {
  background: var(--steel);
  padding: 2rem;
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.lider-avatar {
  width: 60px; height: 60px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(200,149,42,0.15);
  border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem;
  color: var(--orange); letter-spacing: 0.05em;
}
/* variante dourada para a fundadora */
.lider-avatar-gold {
  background: rgba(200,149,42,0.28);
  border-color: var(--gold);
  color: var(--gold);
  width: 66px; height: 66px; font-size: 1.4rem;
}
.lider-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; color: var(--white);
  letter-spacing: 0.04em; margin-bottom: 0.2rem;
}
.lider-cargo {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--orange);
  display: block; margin-bottom: 0.7rem;
}
.lider-info p {
  font-size: 0.84rem; line-height: 1.75;
  color: rgba(255,255,255,0.5); font-weight: 300;
}
.lider-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 0.9rem;
}
.lider-tags span {
  font-size: 0.67rem; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.25rem 0.6rem;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ──────────── RESPONSIVE ──────────── */
@media (max-width: 1024px) {
nav { padding: 1.2rem 2rem; }
.nav-links { display: none; }
.hamburger { display: flex; }
.slide-content { padding: 0 2.5rem; max-width: 100%; }
.slide-tag { margin-top: 150px; }
.hero-stats { left: 2.5rem; bottom: 3.5rem; gap: 2rem; }
.carousel-btn { display: none; }
.hero-scroll { display: none; }
.sobre { grid-template-columns: 1fr; }
.sobre-visual { min-height: 300px; }
.sobre-content { padding: 4rem 2rem; }
.produtos { padding: 6rem 2rem; }
.produtos-grid { grid-template-columns: 1fr 1fr; }
.solucoes { grid-template-columns: 1fr; padding: 6rem 2rem; gap: 3rem; }
.porque { padding: 6rem 2rem; }
.porque-grid { grid-template-columns: 1fr 1fr; }
.contato { grid-template-columns: 1fr; }
.contato-left, .contato-right { padding: 4rem 2rem; }
footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem; }
.jornada { padding: 5rem 2rem; }
.jornada-nums { grid-template-columns: 1fr 1fr; }
.mvv { padding: 5rem 2rem; }
.mvv-grid { grid-template-columns: 1fr; gap: 1rem; }
.equipe { padding: 5rem 2rem; }
.equipe-inner { grid-template-columns: 1fr; gap: 3rem; }
.equipe-cards-wrap { gap: 1rem; }
.equipe-card { padding: 1.5rem; gap: 1rem; }
}
@media (max-width: 640px) {
.produtos-grid { grid-template-columns: 1fr; }
.porque-grid { grid-template-columns: 1fr; }
.form-row { grid-template-columns: 1fr; }
.sobre-pillars { grid-template-columns: 1fr; }
.hero-stats { flex-direction: column; gap: 1.5rem; }
.timeline { margin-left: 0.5rem; }
.timeline-item { gap: 1.2rem; padding-left: 1.5rem; }
.jornada-nums { grid-template-columns: 1fr 1fr; }
}

/* ──────────── MOBILE MENU ──────────── */
.mobile-menu {
position: fixed; inset: 0; z-index: 200;
background: var(--ink);
display: flex; flex-direction: column; align-items: center; justify-content: center;
gap: 2rem; opacity: 0; pointer-events: none;
transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem;
color: var(--white); text-decoration: none; letter-spacing: 0.06em;
transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--orange); }
.close-menu {
position: absolute; top: 1.5rem; right: 2rem;
background: none; border: none; color: white; font-size: 2rem; cursor: pointer;
}

/* ──────────── Página de Produtos ──────────── */

/* ── HERO DO PRODUTO ── */
.produto-hero {
  background: var(--steel);
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 9rem 6rem 5rem;
  position: relative;
  overflow: hidden;
}
.produto-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--white) 1px, transparent 1px),
                    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.03; pointer-events: none;
}
.produto-hero-content { position: relative; z-index: 2;}
.breadcrumb {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 1.8rem;
}
.breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }
.breadcrumb::before { content: ''; width: 20px; height: 1px; background: rgba(255,255,255,0.3); }
.produto-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 7rem);
  line-height: 0.95; color: var(--white);
  letter-spacing: 0.02em;
}
.produto-hero h1 em { color: var(--orange); font-style: normal; }
.produto-hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1.2rem;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(200,149,42,0.35);
  padding: 0.4rem 1rem;
}
.produto-hero-num {
  position: absolute; right: 6rem; bottom: 2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18rem; line-height: 1; color: rgba(255,255,255,0.03);
  user-select: none; pointer-events: none;
  letter-spacing: -0.05em;
}

/* ── CORPO PRINCIPAL ── */
.produto-body {
  background: var(--paper);
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
  box-sizing: border-box;
  width: 100%;
}

/* coluna esquerda */
.produto-visual {
  position: sticky;
  top: 7rem;
  min-width: 0;
  box-sizing: border-box;
}
.produto-img-box {
  background: white;
  border: 1px solid var(--border);
  padding: 3rem;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.produto-img-box img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s; }
.produto-img-box:hover img { transform: scale(1.04); }
.produto-tag-linha {
  display: flex; align-items: center; gap: 0.6rem;
  margin: 1.5rem 0 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange);
}
.produto-tag-linha::before { content: ''; width: 20px; height: 2px; background: var(--orange); }
.produto-cta-group { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 2rem; }
.btn-produto-primary {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--orange); color: var(--white);
  padding: 1rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500; text-decoration: none; transition: background 0.2s;
  box-sizing: border-box;
}
.btn-produto-primary:hover { background: var(--orange-dark); }
.btn-produto-secondary {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  border: 1px solid var(--ink); color: var(--ink); padding: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 400; text-decoration: none; transition: border-color 0.2s, color 0.2s;
  box-sizing: border-box;
}
.btn-produto-secondary:hover { border-color: var(--orange); color: var(--orange); }
.aviso { font-size: 0.72rem; color: var(--ink-light); font-style: italic; text-align: center; margin-top: 0.8rem; opacity: 0.7; }

/* coluna direita */
.produto-info .section-tag { margin-bottom: 0.5rem; }
.produto-nome {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem; letter-spacing: 0.04em;
  color: var(--ink); line-height: 1.05; margin-bottom: 0.3rem;
}
.produto-subtitulo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 0.06em;
  color: var(--orange); margin-bottom: 1.5rem;
}
.produto-desc {
  font-size: 1rem; line-height: 1.85; font-weight: 300;
  color: var(--ink-light); margin-bottom: 2.5rem;
  border-left: 3px solid var(--orange); padding-left: 1.2rem;
}
.carac-titulo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 0.06em;
  color: var(--ink); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.carac-titulo::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.carac-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); margin-bottom: 2.5rem;
}
.carac-item { background: white; padding: 1.2rem 1.4rem; }
.carac-item label {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); display: block; margin-bottom: 0.4rem; font-weight: 500;
}
.carac-item span { font-size: 0.88rem; color: var(--ink); line-height: 1.5; }
.aplicacoes-lista { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.aplic-tag {
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4rem 0.9rem; border: 1px solid var(--border);
  color: var(--ink-light); background: white; transition: border-color 0.2s, color 0.2s;
}
.aplic-tag:hover { border-color: var(--orange); color: var(--orange); }
.norma-box {
  background: var(--steel); padding: 1.4rem 1.6rem;
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2.5rem;
}
.norma-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(200,149,42,0.12); border: 1px solid rgba(200,149,42,0.3);
  display: flex; align-items: center; justify-content: center;
}
.norma-icon svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.norma-box p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.norma-box strong { color: var(--orange); font-weight: 500; }

/* ── MAIS PRODUTOS ── */
.mais-produtos { background: var(--ink); padding: 6rem; }
.mais-produtos .section-header { margin-bottom: 3rem; }
.mais-produtos .section-header .section-tag { justify-content: center; }
.mais-produtos .section-header .section-tag::before { display: none; }
.mais-produtos .section-header .section-title { color: var(--white); }
.mais-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
  max-width: 900px; margin: 0 auto;
}
.mais-card {
  background: var(--ink); padding: 2rem 1.5rem;
  text-decoration: none; color: inherit; display: block;
  transition: background 0.3s; position: relative; overflow: hidden;
}
.mais-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--orange); transition: width 0.4s;
}
.mais-card:hover { background: #141414; }
.mais-card:hover::before { width: 100%; }
.mais-card-img {
  width: 100%; aspect-ratio: 1/1; overflow: hidden; margin-bottom: 1.2rem;
  background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center;
}
.mais-card-img img {
  width: 80%; height: 80%; object-fit: contain;
  filter: brightness(0.85); transition: transform 0.4s, filter 0.3s;
}
.mais-card:hover .mais-card-img img { transform: scale(1.06); filter: brightness(1); }
.mais-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; color: var(--white); letter-spacing: 0.04em; margin-bottom: 0.4rem;
}
.mais-link {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); display: inline-flex; align-items: center; gap: 0.3rem;
  transition: gap 0.2s;
}
.mais-card:hover .mais-link { gap: 0.6rem; }
.mais-link::after { content: '→'; }

/* ── RESPONSIVE TABLET (<=1024px) ── */
@media (max-width: 1024px) {
  .produto-hero { padding: 8rem 2.5rem 4rem; }
  .produto-hero-num { display: none; }
  .produto-body {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    gap: 2.5rem;
    max-width: 100%;
  }
  .produto-visual { position: static; }
  .mais-produtos { padding: 4rem 2rem; }
  .mais-grid { grid-template-columns: 1fr 1fr; }
  .btn-produto-primary,
  .btn-produto-secondary { width: 100%; justify-content: center; }
}

/* ── RESPONSIVE MOBILE (<=640px) ── */
@media (max-width: 640px) {
  .produto-hero { padding: 7rem 1.2rem 3rem; }
  .breadcrumb { flex-wrap: wrap; }
  .produto-body {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 1.5rem;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .produto-visual {
    position: static;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .gallery-main {
    aspect-ratio: unset;
    height: 260px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .gallery-track { height: 100%; }
  .gallery-track img {
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 1rem;
    object-fit: contain;
    box-sizing: border-box;
  }
  .gallery-thumbs {
    display: flex;
    gap: 0.4rem;
    width: 100%;
    overflow: hidden;
  }
  .gal-thumb {
    flex: 1;
    min-width: 0;
    aspect-ratio: 1/1;
    overflow: hidden;
  }
  .btn-produto-primary,
  .btn-produto-secondary { width: 100%; }
  .carac-grid { grid-template-columns: 1fr; }
  .norma-box { flex-direction: column; gap: 0.8rem; }
  .mais-grid { grid-template-columns: 1fr; }
  .mais-produtos { padding: 3rem 1.2rem; }
  .aplic-tag { font-size: 0.72rem; }
}


/* ── HERO ── */
.parc-hero {
  background: var(--steel);
  min-height: 62vh;
  display: flex; align-items: flex-end;
  padding: 9rem 6rem 5rem;
  position: relative; overflow: hidden;
}
.parc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
/* linha diagonal decorativa */
.parc-hero::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, transparent 45%, rgba(200,149,42,0.06) 100%);
  pointer-events: none;
}
.parc-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 1.8rem;
}
.breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }
.breadcrumb::before { content: ''; width: 20px; height: 1px; background: rgba(255,255,255,0.25); }
.parc-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 7.5rem);
  line-height: 0.95; color: var(--white); letter-spacing: 0.02em;
}
.parc-hero h1 em { color: var(--orange); font-style: normal; }
.parc-hero-sub {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.5); max-width: 520px;
  line-height: 1.75; margin-top: 1.2rem;
}
.parc-hero-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 2.5rem;
  background: var(--orange); color: var(--white);
  padding: 0.9rem 2rem; text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  transition: background 0.2s;
}
.parc-hero-cta:hover { background: var(--orange-dark); }
.parc-hero-num {
  position: absolute; right: 5rem; top: 50%; transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22rem; line-height: 1; color: rgba(255,255,255,0.025);
  user-select: none; pointer-events: none; letter-spacing: -0.05em;
}

/* ── INTRO NUMEROS ── */
.parc-nums {
  background: var(--ink);
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; border-top: 3px solid var(--orange);
}
.parc-num-item {
  background: #0d0d0d;
  padding: 2.5rem 2rem; text-align: center;
}
.parc-num-val {
  font-family: 'Bebas Neue', sans-serif; font-size: 3.8rem; line-height: 1;
  color: var(--white);
}
.parc-num-val em { color: var(--orange); font-style: normal; }
.parc-num-label {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-top: 0.5rem; display: block;
}

/* ── SECTION LABEL PADRÃO ── */
.sec-wrap { max-width: 1200px; margin: 0 auto; }

/* ── NOSSOS SERVIÇOS ── */
.servicos {
  background: var(--paper);
  padding: 8rem 4rem;
}
.servicos-intro {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem;
  align-items: center; margin-bottom: 5rem;
}
.servicos-intro p {
  font-size: 1rem; line-height: 1.85; font-weight: 300;
  color: var(--ink-light);
}
.servicos-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
}
.serv-card {
  background: white; border: 1px solid var(--border);
  padding: 2.5rem 2rem; position: relative; overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.serv-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: 3px;
  background: var(--orange); transition: width 0.4s;
}
.serv-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.serv-card:hover::after { width: 100%; }
.serv-icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(200,149,42,0.3);
  background: rgba(200,149,42,0.06);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; color: var(--orange);
}
.serv-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.serv-card h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
  letter-spacing: 0.04em; color: var(--ink); margin-bottom: 1rem;
}
.serv-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.serv-bullets li {
  font-size: 0.88rem; color: var(--ink-light); line-height: 1.5;
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.serv-bullets li::before {
  content: ''; flex-shrink: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); margin-top: 0.45rem;
}
.serv-bullets strong { color: var(--ink); font-weight: 500; }
/* tags de canal — automação comercial */
.auto-canais {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.canal-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500; padding: 0.35rem 0.75rem;
  border-radius: 2px;
}
.canal-whatsapp  { background: rgba(37,211,102,0.12); color: #25d366; border: 1px solid rgba(37,211,102,0.3); }
.canal-instagram { background: rgba(225,48,108,0.1);  color: #e1306c; border: 1px solid rgba(225,48,108,0.25); }
.canal-facebook  { background: rgba(24,119,242,0.1);  color: #1877f2; border: 1px solid rgba(24,119,242,0.25); }

/* badge NOVO */
.badge-new {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--orange); color: white;
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; font-weight: 500;
}

/* ── POR QUE TERCEIRIZAR ── */
.terceirizacao {
  background: var(--steel);
  padding: 8rem 4rem;
}
.terceirizacao-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center;
}
.terceirizacao-left .section-title { color: var(--white); }
.terceirizacao-left p {
  font-size: 0.95rem; line-height: 1.85; font-weight: 300;
  color: rgba(255,255,255,0.55); margin-top: 1.2rem;
}
.terc-items { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 0; }
.terc-item {
  border: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 1.8rem;
  display: flex; gap: 1.2rem; align-items: flex-start;
  transition: border-color 0.3s;
  position: relative; overflow: hidden;
}
.terc-item:hover { border-color: rgba(200,149,42,0.4); }
.terc-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--orange); opacity: 0; transition: opacity 0.3s;
}
.terc-item:hover::before { opacity: 1; }
.terc-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  color: var(--orange); line-height: 1; flex-shrink: 0; min-width: 36px;
}
.terc-text h4 { font-size: 0.9rem; font-weight: 500; color: var(--white); margin-bottom: 0.4rem; }
.terc-text p { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.65; font-weight: 300; }

/* ── DETALHE MARKETING ── */
/* ── MARKETING INDUSTRIAL ── */
.mkt {
  background: var(--paper);
  padding: 8rem 4rem;
}
.mkt-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}
.mkt-header .section-title { color: var(--ink); margin: 0.4rem 0 1rem; }
.mkt-header p {
  font-size: 0.95rem; line-height: 1.85;
  font-weight: 300; color: var(--ink-light);
}

/* grid: métricas à esquerda, cards à direita */
.mkt-body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

/* coluna esquerda — dark com métricas */
.mkt-metrics {
  background: var(--ink);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.mkt-metrics::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.mkt-metric-item {
  position: relative; z-index: 2;
  padding: 2rem 0;
}
.mkt-metric-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; color: var(--white);
  line-height: 1; margin-bottom: 0.4rem;
}
.mkt-metric-val em { color: var(--orange); font-style: normal; }
.mkt-metric-item p {
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  line-height: 1.5; font-weight: 300;
}
.mkt-metric-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  position: relative; z-index: 2;
}

/* coluna direita — cards horizontais */
.mkt-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--border);
}
.mkt-card {
  background: var(--white);
  padding: 2.2rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: background 0.25s;
  position: relative;
}
.mkt-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.mkt-card:hover { background: #fafaf8; }
.mkt-card:hover::after { transform: scaleX(1); }
.mkt-card-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(200,149,42,0.08);
  border: 1px solid rgba(200,149,42,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.mkt-card-icon svg { width: 20px; height: 20px; }
.mkt-card-text h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: 0.04em;
  color: var(--ink); margin-bottom: 0.5rem;
}
.mkt-card-text p {
  font-size: 0.83rem; color: var(--ink-light);
  line-height: 1.65; font-weight: 300;
}
.mkt-card-text p strong { color: var(--orange); font-weight: 500; }

/* responsive */
@media (max-width: 1024px) {
  .mkt { padding: 5rem 2rem; }
  .mkt-body { grid-template-columns: 1fr; }
  .mkt-metrics { flex-direction: row; flex-wrap: wrap; gap: 0; padding: 2.5rem; }
  .mkt-metric-item { flex: 1; min-width: 140px; padding: 1.2rem; }
  .mkt-metric-divider { display: none; }
}
@media (max-width: 640px) {
  .mkt-cards { grid-template-columns: 1fr; }
  .mkt-metrics { flex-direction: column; }
  .mkt-metric-divider { display: block; }
}

/* ── ANÁLISE DE DADOS (seção dark) ── */
.analytics {
  background: var(--ink);
  padding: 8rem 4rem;
}
.analytics-header { text-align: center; margin-bottom: 5rem; }
.analytics-header .section-tag { justify-content: center; }
.analytics-header .section-tag::before { display: none; }
.analytics-header .section-title { color: var(--white); }
.analytics-header p { color: rgba(255,255,255,0.45); max-width: 580px; margin: 1rem auto 0; font-weight: 300; line-height: 1.8; }
/* cards de feature */
.analytics-features {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 4rem;
}
.analy-feat {
  background: #0d0d0d; padding: 2.5rem 2rem;
  position: relative; transition: background 0.3s;
}
.analy-feat:hover { background: #111; }
.analy-feat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--orange), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.analy-feat:hover::before { opacity: 1; }
.analy-feat-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(200,149,42,0.25); background: rgba(200,149,42,0.07);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; color: var(--orange);
}
.analy-feat-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.analy-feat h4 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem;
  color: var(--white); letter-spacing: 0.04em; margin-bottom: 0.8rem;
}
.analy-feat p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; font-weight: 300; }
/* fluxo do pipeline */
.analytics-pipeline { max-width: 900px; margin: 0 auto; }
.pipeline-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
  color: var(--white); letter-spacing: 0.06em; text-align: center;
  margin-bottom: 2.5rem;
}
.pipeline-steps {
  display: flex; align-items: center; gap: 0;
  flex-wrap: wrap; justify-content: center; gap: 0;
}
.pipe-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.8rem; flex: 1; min-width: 100px;
}
.pipe-step-circle {
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid var(--orange);
  background: rgba(200,149,42,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); position: relative; z-index: 2;
}
.pipe-step-circle svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.pipe-step span {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); text-align: center; line-height: 1.4;
}
.pipe-arrow {
  flex: 0 0 40px; height: 1px; background: rgba(200,149,42,0.3);
  position: relative; margin-bottom: 2rem;
}
.pipe-arrow::after {
  content: ''; position: absolute; right: -4px; top: -4px;
  width: 8px; height: 8px;
  border-top: 1px solid var(--orange); border-right: 1px solid var(--orange);
  transform: rotate(45deg);
}

/* ── SEÇÃO DESENVOLVIMENTO WEB ── */
.devweb {
  background: var(--paper);
  padding: 8rem 4rem;
}
.devweb-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 6rem; align-items: center; }
.devweb-content .section-title { color: var(--ink); }
.devweb-content > p {
  font-size: 0.95rem; line-height: 1.85; font-weight: 300;
  color: var(--ink-light); margin-top: 1.2rem;
}
.devweb-services {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.devweb-svc {
  border: 1px solid var(--border); background: white;
  padding: 1.3rem; border-left: 3px solid var(--orange);
}
.devweb-svc h5 { font-size: 0.88rem; font-weight: 500; color: var(--ink); margin-bottom: 0.3rem; }
.devweb-svc p { font-size: 0.78rem; color: var(--ink-light); line-height: 1.55; }
/* tela mockup simplificada */
.devweb-visual {
  background: var(--steel); padding: 2.5rem;
  position: relative; overflow: hidden;
}
.devweb-visual::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.mock-browser {
  background: #0d0d0d; border: 1px solid rgba(255,255,255,0.1);
  position: relative; z-index: 2;
}
.mock-bar {
  background: #1a1a1a; padding: 0.7rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #ff5f57; }
.mock-dot:nth-child(2) { background: #ffbd2e; }
.mock-dot:nth-child(3) { background: #28c840; }
.mock-url {
  flex: 1; background: rgba(255,255,255,0.06); border-radius: 3px;
  padding: 0.25rem 0.8rem; margin-left: 0.5rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.3); letter-spacing: 0.04em;
}
.mock-body { padding: 1.5rem; }
.mock-nav-bar {
  height: 32px; background: rgba(200,149,42,0.15);
  border-bottom: 1px solid rgba(200,149,42,0.3); margin-bottom: 1rem;
  display: flex; align-items: center; padding: 0 0.8rem; gap: 1rem;
}
.mock-nav-dot { width: 28px; height: 6px; background: rgba(200,149,42,0.5); border-radius: 2px; }
.mock-nav-dot:first-child { background: var(--orange); }
.mock-row { display: grid; grid-template-columns: 2fr 1fr; gap: 0.7rem; margin-bottom: 0.7rem; }
.mock-block { background: rgba(255,255,255,0.04); border-radius: 2px; }
.mock-block-tall { height: 80px; }
.mock-block-short { height: 80px; }
.mock-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; }
.mock-card-sm { height: 44px; background: rgba(200,149,42,0.08); border: 1px solid rgba(200,149,42,0.15); border-radius: 2px; }

/* ── CTA FINAL ── */
.parc-cta {
  background: var(--steel);
  padding: 7rem 4rem; text-align: center; position: relative; overflow: hidden;
}
.parc-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.parc-cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.parc-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem); line-height: 1;
  color: var(--white); letter-spacing: 0.02em; margin-bottom: 1.2rem;
}
.parc-cta h2 em { color: var(--orange); font-style: normal; }
.parc-cta p { color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.8; font-size: 1rem; margin-bottom: 2.5rem; }
.parc-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-orange {
  background: var(--orange); color: var(--white);
  padding: 1rem 2.4rem; text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  transition: background 0.2s;
}
.btn-orange:hover { background: var(--orange-dark); }
.btn-outline-white {
  border: 1px solid rgba(255,255,255,0.3); color: var(--white);
  padding: 1rem 2.4rem; text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: border-color 0.2s;
}
.btn-outline-white:hover { border-color: var(--orange); color: var(--orange); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .parc-hero { padding: 8rem 2rem 4rem; }
  .parc-hero-num { display: none; }
  .parc-nums { grid-template-columns: 1fr 1fr; }
  .servicos { padding: 5rem 2rem; }
  .servicos-intro { grid-template-columns: 1fr; gap: 2rem; }
  /* em tablet: 2 colunas para os cards de serviço */
  .servicos-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  /* o card de BI (span 2) vira largura total */
  .serv-card[style*="grid-column"] { grid-column: 1 / -1; }
  /* bullets em grid viram coluna única */
  .serv-bullets[style*="grid"] { display: flex !important; flex-direction: column !important; }
  .terceirizacao { padding: 5rem 2rem; }
  .terceirizacao-inner { grid-template-columns: 1fr; gap: 3rem; }
  .mkt { padding: 5rem 2rem; }
  .analytics { padding: 5rem 2rem; }
  .analytics-features { grid-template-columns: 1fr 1fr; }
  .devweb { padding: 5rem 2rem; }
  .devweb-inner { grid-template-columns: 1fr; gap: 3rem; }
  .devweb-services { grid-template-columns: 1fr 1fr; }
  .parc-cta { padding: 5rem 2rem; }
  .pipeline-steps { gap: 0; flex-direction: column; align-items: center; }
  .pipe-step { width: 100%; flex-direction: row; justify-content: center; gap: 1.2rem; padding: 0; }
  .pipe-step span { text-align: left; }
  /* seta horizontal vira seta vertical apontando para baixo */
  .pipe-arrow {
    flex: none;
    width: 1px; height: 36px;
    background: rgba(200,149,42,0.35);
    margin: 0.4rem 0;
    align-self: center;
  }
  .pipe-arrow::after {
    right: auto; top: auto;
    left: -3px; bottom: -5px;
    border-top: none; border-right: none;
    border-bottom: 1px solid var(--orange);
    border-left: 1px solid var(--orange);
    transform: rotate(-45deg);
  }
}
@media (max-width: 640px) {
  .parc-nums { grid-template-columns: 1fr 1fr; }
  .parc-cta-btns { flex-direction: column; align-items: center; }
  /* mobile: tudo em 1 coluna */
  .servicos-grid { grid-template-columns: 1fr !important; }
  .serv-card { padding: 1.8rem 1.5rem; }
  .analytics-features { grid-template-columns: 1fr !important; }
  .devweb-services { grid-template-columns: 1fr !important; }
  .parc-nums { grid-template-columns: 1fr 1fr; }
}

/* ──────────── ANIMATIONS ──────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

.img-track img {
  object-fit: cover;
}

.slide-content h1 {
  margin-top: 20px;
}