/* =====================================================================
   SUL FERRAMENTAS — Folha de estilo única (compartilhada por todas as páginas)
   Afiação CNC • Ferramentas • Rede de Ar Comprimido
   Design system industrial-técnico. Marca: azul + laranja.
   ===================================================================== */

/* ── RESET & TOKENS ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  /* Marca */
  --azul:        #1e3a8a;
  --azul-esc:    #0f1f4d;
  --azul-med:    #2e4092;
  --laranja:     #f59e0b;
  --laranja-esc: #d97706;
  --verde-zap:   #25d366;

  /* Neutros industriais (aço / grafite) */
  --grafite:     #0b1530;
  --aco:         #475569;
  --aco-claro:   #94a3b8;
  --cinza-bg:    #eef2f8;
  --cinza-borda: #dde5f0;
  --texto:       #2b3648;
  --texto-leve:  #647189;
  --branco:      #ffffff;

  /* Efeitos */
  --sombra:      0 6px 24px rgba(14,30,80,0.08);
  --sombra-lg:   0 18px 50px rgba(14,30,80,0.16);
  --radius:      10px;
  --radius-lg:   18px;

  /* Layout */
  --max:         1180px;
  --grad-marca:  linear-gradient(90deg, var(--azul), var(--laranja));
  --grad-azul:   linear-gradient(135deg, var(--azul-esc) 0%, var(--azul) 100%);
}

body {
  font-family: 'Barlow', system-ui, sans-serif;
  color: var(--texto);
  background: var(--cinza-bg);
  overflow-x: hidden;
  overflow-anchor: none;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  letter-spacing: 0.01em;
  color: var(--azul-esc);
  line-height: 1.12;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
:focus-visible { outline: 3px solid rgba(245,158,11,0.75); outline-offset: 3px; border-radius: 10px; }

/* Faixa de acento industrial no topo absoluto da página */
body::before {
  content: '';
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 1500;
  background: var(--grad-marca);
}

/* ── TOPBAR ───────────────────────────────────────────────────────── */
.topbar {
  background: var(--grafite);
  color: #c7d4f0;
  font-size: 0.82rem; font-weight: 500;
  padding: 8px 5%;
  display: flex; justify-content: space-between; align-items: center;
  gap: 10px; flex-wrap: wrap;
}
.topbar a { color: #c7d4f0; transition: color .2s; }
.topbar a:hover { color: var(--laranja); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar i { margin-right: 5px; color: var(--laranja); }
.topbar-hours { display: flex; align-items: center; gap: 6px; }

/* ── NAV WRAPPER (sticky) ─────────────────────────────────────────── */
#nav-wrapper { position: sticky; top: 0; z-index: 1200; }

/* ── HEADER ───────────────────────────────────────────────────────── */
header {
  background: rgba(255,255,255,0.97);
  padding: 14px 5%;
  position: relative;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(14,30,80,0.08);
  border-bottom: 1px solid var(--cinza-borda);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  transition: padding .3s, box-shadow .3s;
  will-change: padding;
}
header.shrink { padding: 8px 5%; box-shadow: 0 3px 22px rgba(14,30,80,0.14); }
.logo-img { height: 110px; width: auto; transition: height .2s; }
header.shrink .logo-img { height: 58px; }

nav ul { list-style: none; display: flex; gap: 4px; align-items: center; }
nav ul li a {
  display: block; padding: 8px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--azul); border-radius: 6px; position: relative;
  transition: color .2s, background .2s;
}
nav ul li a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--laranja);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
nav ul li a:hover, nav ul li a.active { color: var(--laranja-esc); background: #fff7ed; }
nav ul li a:hover::after, nav ul li a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--laranja) !important; color: #fff !important;
  border-radius: 6px; font-weight: 700; padding: 9px 18px !important;
  box-shadow: 0 4px 14px rgba(245,158,11,0.3);
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--laranja-esc) !important; transform: translateY(-1px); color: #fff !important; }
.nav-cta::after { display: none !important; }

/* ── HAMBURGER ────────────────────────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 6px; border: 0; background: transparent;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center; z-index: 1300;
}
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--azul); border-radius: 3px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── BOTÕES ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 32px; border-radius: 8px; border: none; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; min-height: 44px;
  transition: transform .25s, filter .25s, box-shadow .25s, background .2s;
}
.btn:hover { transform: translateY(-3px); filter: brightness(1.06); }
.btn-zap { background: var(--verde-zap); color: #fff; box-shadow: 0 6px 24px rgba(37,211,102,0.35); }
.btn-zap:hover { box-shadow: 0 10px 32px rgba(37,211,102,0.45); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline-w { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.45); }
.btn-outline-w:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-primary { background: var(--azul); color: #fff; box-shadow: 0 6px 22px rgba(30,58,138,0.28); }
.btn-primary:hover { background: var(--azul-esc); }

/* Botão WhatsApp em barra de subtopo (faixa branca de CTA) */
.cta-strip { padding: 22px 5%; background: var(--branco); border-bottom: 1px solid var(--cinza-borda); }
.cta-strip-inner { max-width: var(--max); margin: auto; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-strip .btn-outline-w { color: var(--azul); border-color: var(--cinza-borda); }
.cta-strip .btn-outline-w:hover { background: var(--cinza-bg); border-color: var(--azul); }

/* ── HERO (home) ──────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--grafite);
}
.hero-bg { position: absolute; inset: 0; background: var(--grad-azul); }
.hero-bg::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.20) 0%, transparent 70%); pointer-events: none;
}
.hero-bg::after {
  content: ''; position: absolute; left: -60px; bottom: -60px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,138,0.5) 0%, transparent 70%); pointer-events: none;
}
.hero-grid, .hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 48px 20px; max-width: 920px; }

.hero-badge, .page-hero .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,0.18); border: 1px solid rgba(245,158,11,0.4);
  color: var(--laranja); font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 50px; margin-bottom: 26px;
  animation: fadeInDown .7s ease both;
}
.hero h1 { color: #fff; font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; margin-bottom: 22px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); animation: fadeInUp .8s .1s ease both; }
.hero h1 span { color: var(--laranja); }
.hero p { font-size: 1.18rem; color: rgba(255,255,255,0.84); max-width: 640px; margin: 0 auto 36px; font-weight: 500; animation: fadeInUp .8s .2s ease both; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeInUp .8s .3s ease both; }

/* ── PAGE HERO (páginas internas) ─────────────────────────────────── */
.page-hero { position: relative; background: var(--grad-azul); padding: 84px 5% 72px; text-align: center; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; right: -80px; top: -80px; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 70%); pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 900; margin-bottom: 16px; animation: fadeInUp .8s .1s ease both; }
.page-hero h1 span { color: var(--laranja); }
.page-hero p { font-size: 1.12rem; color: rgba(255,255,255,0.82); max-width: 580px; margin: 0 auto; font-weight: 500; animation: fadeInUp .8s .2s ease both; }

/* ── FAIXA DE MATERIAIS / MARCAS ──────────────────────────────────── */
.marcas-strip { background: var(--branco); padding: 28px 5%; border-bottom: 1px solid var(--cinza-borda); overflow: hidden; }
.marcas-inner { max-width: var(--max); margin: auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.marcas-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; color: var(--texto-leve); text-transform: uppercase; letter-spacing: 0.1em; }
.marcas-logos { display: flex; gap: 36px; align-items: center; flex-wrap: wrap; }
.marca-item { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--azul-esc); display: flex; align-items: center; gap: 8px; }
.marca-item i { color: var(--laranja); }

/* ── STATS ────────────────────────────────────────────────────────── */
.stats-strip { background: var(--azul); color: #fff; }
.stats-inner { display: flex; justify-content: center; flex-wrap: wrap; max-width: var(--max); margin: auto; }
.stat-item { flex: 1; min-width: 160px; text-align: center; padding: 28px 20px; border-right: 1px solid rgba(255,255,255,0.12); transition: background .25s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.07); }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.6rem; font-weight: 900; color: var(--laranja); line-height: 1; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.72); margin-top: 4px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

/* ── SEÇÃO GENÉRICA ───────────────────────────────────────────────── */
section { padding: 84px 5%; }
.section-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--laranja-esc); background: #fff7ed; border: 1px solid #fde68a; padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 14px; }
.section-header h2 span { color: var(--laranja); }
.section-header p { max-width: 640px; margin: auto; color: var(--texto-leve); font-size: 1.05rem; }

/* ── QUEM SOMOS / SOBRE ───────────────────────────────────────────── */
#quem-somos, #historia { background: var(--branco); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: var(--max); margin: auto; }
.sobre-text h2 { font-size: 2.6rem; font-weight: 900; margin-bottom: 20px; }
.sobre-text p { color: var(--texto-leve); margin-bottom: 16px; font-size: 1.05rem; }
.sobre-text strong { color: var(--azul); }
.sobre-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.feat-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--cinza-bg); border-radius: var(--radius); border-left: 3px solid var(--laranja); transition: transform .3s; }
.feat-item:hover { transform: translateX(5px); }
.feat-icon { font-size: 1.4rem; color: var(--laranja); flex-shrink: 0; margin-top: 2px; }
.feat-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; color: var(--azul-esc); }
.feat-item p { font-size: 0.82rem; color: var(--texto-leve); margin: 0; }

.sobre-visual { position: relative; }
.sobre-visual-box {
  background: var(--grad-azul); border-radius: var(--radius-lg); aspect-ratio: 4/3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px; color: #fff; text-align: center; position: relative; overflow: hidden;
}
.sobre-visual-box::before { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.04); top: -80px; right: -80px; }
.sobre-visual-box i { font-size: 5rem; color: var(--laranja); opacity: 0.9; margin-bottom: 20px; }
.sobre-visual-box h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; color: #fff; }
.sobre-visual-box p { color: rgba(255,255,255,0.72); font-size: 0.95rem; }
.badge-flutuante { position: absolute; bottom: -20px; right: -20px; background: var(--laranja); color: #fff; border-radius: 12px; padding: 16px 22px; text-align: center; box-shadow: var(--sombra-lg); }
.badge-flutuante .num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 900; line-height: 1; }
.badge-flutuante .txt { font-size: 0.78rem; font-weight: 600; opacity: 0.92; }

/* ── CARD SYSTEM (serviços, valores, diferenciais, produtos) ──────── */
#servicos, #servicos-lista { background: var(--cinza-bg); }
.servicos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: var(--max); margin: auto; }
.servico-card {
  background: var(--branco); border: 1px solid var(--cinza-borda); border-radius: var(--radius-lg);
  padding: 34px 28px; box-shadow: var(--sombra); position: relative; overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.servico-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-marca); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.servico-card:hover { transform: translateY(-8px); box-shadow: var(--sombra-lg); border-color: transparent; }
.servico-card:hover::before { transform: scaleX(1); }
.servico-icon {
  width: 64px; height: 64px; border-radius: 14px; background: var(--grad-azul);
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem; color: var(--laranja);
  margin-bottom: 22px; transition: transform .3s;
}
.servico-card:hover .servico-icon { transform: rotate(-6deg) scale(1.05); }
.servico-card h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 10px; }
.servico-card p { color: var(--texto-leve); font-size: 0.95rem; margin-bottom: 16px; }
.servico-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { background: #fff7ed; border: 1px solid #fde68a; color: var(--laranja-esc); font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 50px; }

/* ── DIFERENCIAIS (faixa escura blueprint) ────────────────────────── */
#diferenciais { background: var(--grad-azul); position: relative; overflow: hidden; }
#diferenciais.claro { background: var(--cinza-bg); }
#diferenciais::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  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: 50px 50px;
}
#diferenciais.claro::before { display: none; }
#diferenciais .section-header h2, #diferenciais .section-label { color: #fff; }
#diferenciais .section-label { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }
#diferenciais .section-header p { color: rgba(255,255,255,0.72); }
#diferenciais.claro .section-header h2 { color: var(--azul-esc); }
#diferenciais.claro .section-label { color: var(--laranja-esc); background: #fff7ed; border-color: #fde68a; }
#diferenciais.claro .section-header p { color: var(--texto-leve); }

.dif-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: var(--max); margin: auto; position: relative; }
.dif-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; color: #fff; transition: background .3s, transform .3s; backdrop-filter: blur(4px); }
.dif-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-6px); }
.dif-card i, .dif-card .dif-icon { font-size: 2.4rem; color: var(--laranja); margin-bottom: 16px; }
.dif-card h3 { font-size: 1.22rem; font-weight: 800; margin-bottom: 8px; color: #fff; }
.dif-card p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
/* variante clara (página serviços) */
#diferenciais.claro .dif-card { background: var(--branco); border: 1px solid var(--cinza-borda); color: var(--texto); box-shadow: var(--sombra); }
#diferenciais.claro .dif-card:hover { box-shadow: var(--sombra-lg); }
#diferenciais.claro .dif-card h3 { color: var(--azul-esc); }
#diferenciais.claro .dif-card p { color: var(--texto-leve); }
.dif-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--grad-azul); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--laranja); margin: 0 auto 16px; }

/* ── PRODUTOS ─────────────────────────────────────────────────────── */
#produtos { background: var(--branco); }
.produtos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: var(--max); margin: auto; }
.produto-card { background: var(--cinza-bg); border: 1px solid var(--cinza-borda); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sombra); transition: transform .35s, box-shadow .35s; }
.produto-card:hover { transform: translateY(-8px); box-shadow: var(--sombra-lg); }
.produto-img { width: 100%; height: 200px; background: var(--grad-azul); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.produto-img img { width: 100%; height: 100%; object-fit: cover; }
.produto-img i { font-size: 4rem; color: var(--laranja); opacity: 0.5; }
.produto-tag { position: absolute; top: 12px; left: 12px; background: var(--azul); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; }
.produto-body { padding: 22px; background: var(--branco); }
.produto-body h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.produto-body p { font-size: 0.88rem; color: var(--texto-leve); margin-bottom: 18px; }
.btn-produto { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; min-height: 44px; background: var(--laranja); color: #fff; padding: 10px 22px; border-radius: 7px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; transition: background .2s, transform .2s; }
.btn-produto:hover { background: var(--laranja-esc); transform: translateY(-2px); }

/* ── VALORES (quem-somos) ─────────────────────────────────────────── */
#valores { background: var(--cinza-bg); }
.valores-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: var(--max); margin: auto; }
.valor-card { background: var(--branco); border: 1px solid var(--cinza-borda); border-radius: var(--radius); padding: 32px 28px; transition: box-shadow .3s, transform .3s; }
.valor-card:hover { box-shadow: var(--sombra-lg); transform: translateY(-4px); }
.valor-icon { width: 52px; height: 52px; border-radius: var(--radius); background: #fff7ed; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--laranja); margin-bottom: 18px; border: 1px solid #fde68a; }
.valor-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.valor-card p { font-size: 0.9rem; color: var(--texto-leve); line-height: 1.7; }

/* ── EQUIPE ───────────────────────────────────────────────────────── */
#equipe { background: var(--branco); }
.equipe-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; max-width: var(--max); margin: auto; }
.membro-card { background: var(--cinza-bg); border: 1px solid var(--cinza-borda); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; transition: box-shadow .3s, transform .3s; }
.membro-card:hover { box-shadow: var(--sombra-lg); transform: translateY(-4px); }
.membro-avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 18px; background: var(--grad-azul); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--laranja); }
.membro-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; }
.membro-role { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--laranja-esc); margin-bottom: 14px; }
.membro-card p { font-size: 0.88rem; color: var(--texto-leve); line-height: 1.65; }

/* ── PROCESSO (serviços) ──────────────────────────────────────────── */
#processo { background: var(--cinza-bg); }
.processo-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: var(--max); margin: auto; position: relative; }
.processo-steps::before { content: ''; position: absolute; top: 34px; left: calc(12.5% + 32px); right: calc(12.5% + 32px); height: 2px; background: linear-gradient(90deg, var(--laranja) 0%, rgba(245,158,11,0.2) 100%); z-index: 0; }
.step-card { text-align: center; padding: 0 8px; position: relative; z-index: 1; }
.step-num { width: 68px; height: 68px; border-radius: 50%; background: var(--grad-azul); border: 4px solid var(--cinza-bg); color: var(--laranja); font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: var(--sombra); }
.step-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--texto-leve); line-height: 1.6; }

/* ── MATERIAIS (serviços) ─────────────────────────────────────────── */
#materiais { background: var(--branco); }
.materiais-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; max-width: var(--max); margin: auto; }
.material-chip { background: var(--cinza-bg); border: 1px solid var(--cinza-borda); border-radius: var(--radius); padding: 24px 12px; text-align: center; transition: box-shadow .2s, border-color .2s, transform .2s; }
.material-chip:hover { border-color: var(--laranja); transform: translateY(-3px); box-shadow: var(--sombra); }
.material-chip i { font-size: 2rem; color: var(--azul); margin-bottom: 10px; }
.material-chip span { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--azul-esc); letter-spacing: 0.04em; }

/* ── FAQ ──────────────────────────────────────────────────────────── */
#faq { background: var(--cinza-bg); }
#faq.branco { background: var(--branco); }
.faq-container { max-width: 800px; margin: auto; }
.faq-item { background: var(--branco); border: 1px solid var(--cinza-borda); border-radius: var(--radius); margin-bottom: 15px; overflow: hidden; transition: box-shadow 0.3s; }
.faq-item:hover { box-shadow: var(--sombra); }
.faq-question { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-weight: 700; font-size: 1.05rem; color: var(--azul-esc); background: var(--branco); user-select: none; }
.faq-question i { color: var(--laranja); transition: transform 0.3s; flex-shrink: 0; }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; background: var(--branco); color: var(--texto-leve); font-size: 0.95rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-answer { padding: 0 24px 20px; max-height: 320px; }

/* ── CONTATO ──────────────────────────────────────────────────────── */
#contato, #contato-principal { background: var(--branco); }
.contato-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; max-width: var(--max); margin: auto; }
.info-card { background: var(--grafite); border-radius: var(--radius-lg); padding: 44px 40px; color: #fff; display: flex; flex-direction: column; }
.info-card h3 { font-size: 1.9rem; font-weight: 800; color: var(--laranja); margin-bottom: 28px; }
.info-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.info-row-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.info-row-icon.laranja { background: rgba(245,158,11,0.2); color: var(--laranja); }
.info-row-icon.verde { background: rgba(37,211,102,0.2); color: var(--verde-zap); }
.info-row-text { flex: 1; }
.info-row-text strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.info-row-text span, .info-row-text a { font-size: 1rem; color: rgba(255,255,255,0.9); }
.info-row-text a:hover { color: var(--laranja); }
.horarios { margin: 24px 0; background: rgba(255,255,255,0.06); border-radius: 10px; padding: 16px 20px; }
.horarios h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.horario-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: rgba(255,255,255,0.8); padding: 4px 0; }
.horario-row:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.07); }
.btn-agendar { margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 24px; background: var(--verde-zap); color: #fff; border-radius: 8px; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; min-height: 44px; transition: background .2s, transform .2s; }
.btn-agendar:hover { background: #1db954; transform: translateY(-2px); }
.mapa-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sombra-lg); height: 100%; min-height: 400px; }
.mapa-card iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 400px; }

/* Formulário (contato) */
.form-card { background: var(--cinza-bg); border: 1px solid var(--cinza-borda); border-radius: var(--radius-lg); padding: 40px; }
.form-card h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.form-sub { color: var(--texto-leve); font-size: 0.95rem; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--azul-esc); margin-bottom: 7px; }
input, select, textarea { width: 100%; background: var(--branco); border: 1px solid var(--cinza-borda); border-radius: var(--radius); color: var(--texto); font-family: 'Barlow', sans-serif; font-size: 0.95rem; padding: 11px 16px; outline: none; transition: border-color .2s, box-shadow .2s; }
input::placeholder, textarea::placeholder { color: var(--texto-leve); }
input:focus, select:focus, textarea:focus { border-color: var(--azul); box-shadow: 0 0 0 3px rgba(30,58,138,0.1); }
select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
textarea { resize: vertical; min-height: 120px; }
.btn-enviar { width: 100%; background: var(--laranja); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border: none; border-radius: var(--radius); padding: 14px; cursor: pointer; min-height: 48px; transition: background .2s, transform .2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-enviar:hover { background: var(--laranja-esc); transform: translateY(-2px); }
.btn-enviar:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-note { text-align: center; color: var(--texto-leve); font-size: 0.82rem; margin-top: 12px; }
.form-note a { color: var(--verde-zap); font-weight: 600; }
.success-msg { display: none; background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius); padding: 14px 16px; text-align: center; color: #166534; font-weight: 600; margin-top: 14px; font-size: 0.95rem; }

/* Mapa (página contato) + canais */
#mapa { background: var(--cinza-bg); }
.mapa-wrap { max-width: var(--max); margin: auto; }
.mapa-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.btn-directions { display: inline-flex; align-items: center; gap: 8px; background: var(--azul); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 12px 24px; border-radius: 8px; transition: background .2s, transform .2s; }
.btn-directions:hover { background: var(--azul-esc); transform: translateY(-2px); }
#canais { background: var(--branco); }
.canais-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: var(--max); margin: auto; }
.canal-card { background: var(--cinza-bg); border: 1px solid var(--cinza-borda); border-radius: var(--radius-lg); padding: 32px 20px; text-align: center; transition: box-shadow .3s, transform .3s; }
.canal-card:hover { box-shadow: var(--sombra-lg); transform: translateY(-4px); }
.canal-icon { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.canal-icon.azul { background: rgba(30,58,138,0.1); color: var(--azul); }
.canal-icon.verde { background: rgba(37,211,102,0.12); color: var(--verde-zap); }
.canal-icon.laranja { background: #fff7ed; color: var(--laranja); }
.canal-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.canal-card p { font-size: 0.85rem; color: var(--texto-leve); margin-bottom: 16px; line-height: 1.55; }
.canal-link { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--azul); border-bottom: 2px solid var(--laranja); padding-bottom: 2px; transition: color .2s; }
.canal-link:hover { color: var(--laranja-esc); }

/* ── CTA BAND ─────────────────────────────────────────────────────── */
.cta-band { background: var(--grad-azul); padding: 64px 5%; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; pointer-events: none; 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: 50px 50px; }
.cta-inner { max-width: var(--max); margin: auto; display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-inner h2 { font-size: 2.4rem; font-weight: 900; color: #fff; margin-bottom: 8px; }
.cta-inner h2 span { color: var(--laranja); }
.cta-inner p { color: rgba(255,255,255,0.74); font-size: 1rem; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── FLUTUANTES ───────────────────────────────────────────────────── */
.float-zap { position: fixed; bottom: 32px; right: 32px; width: 58px; height: 58px; background: var(--verde-zap); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 6px 24px rgba(37,211,102,0.45); z-index: 1001; transition: transform .25s, box-shadow .25s; }
.float-zap:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.mobile-contact-bar { display: none; }
#backToTop { position: fixed; bottom: 104px; right: 32px; width: 44px; height: 44px; background: var(--azul); color: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 17px; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; z-index: 1000; box-shadow: var(--sombra); }
#backToTop.show { opacity: 1; pointer-events: auto; }
#backToTop:hover { transform: translateY(-3px); }

/* ── LOJA FÍSICA (banda de credibilidade) ────────────────────────── */
#loja { background: var(--branco); }
.loja-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center; max-width: var(--max); margin: auto; }
.loja-foto { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sombra-lg); aspect-ratio: 16/9; background: var(--grad-azul); }
/* A imagem fica SEMPRE por cima (z-index 1). O placeholder é uma camada
   atrás (z-index 0) que só aparece se a imagem não carregar. */
.loja-foto img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 1; }
.loja-foto.sem-foto img { display: none; }
.loja-foto-ph { position: absolute; inset: 0; z-index: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; padding: 24px; }
.loja-foto-ph i { font-size: 3.4rem; color: var(--laranja); margin-bottom: 12px; }
.loja-foto-ph strong { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; }
.loja-foto-ph span { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 6px; }
.loja-foto-ph b { color: var(--laranja); }
.loja-foto-tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--azul-esc); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 50px; display: inline-flex; align-items: center; gap: 7px; }
.loja-foto-tag i { color: var(--laranja); }
.loja-info h2 { font-size: 2.4rem; font-weight: 900; margin-bottom: 16px; }
.loja-info h2 span { color: var(--laranja); }
.loja-info > p { color: var(--texto-leve); font-size: 1.05rem; margin-bottom: 24px; }
.loja-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.trust-item { display: flex; align-items: center; gap: 12px; background: var(--cinza-bg); border: 1px solid var(--cinza-borda); border-radius: var(--radius); padding: 14px 16px; }
.trust-item i { font-size: 1.4rem; color: var(--laranja); flex-shrink: 0; }
.trust-item b { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; color: var(--azul-esc); line-height: 1.1; }
.trust-item small { color: var(--texto-leve); font-size: 0.8rem; }

/* ── AVALIAÇÕES (Google) ─────────────────────────────────────────── */
#avaliacoes { background: var(--cinza-bg); }
.google-badge { display: inline-flex; align-items: center; gap: 12px; background: var(--branco); border: 1px solid var(--cinza-borda); border-radius: 50px; padding: 10px 22px; box-shadow: var(--sombra); margin-bottom: 14px; }
.google-badge .g-logo { font-size: 1.3rem; font-weight: 700; font-family: 'Barlow Condensed', sans-serif; }
.google-badge .g-logo .b { color: #4285F4; } .google-badge .g-logo .r { color: #EA4335; } .google-badge .g-logo .y { color: #FBBC05; } .google-badge .g-logo .g { color: #34A853; }
.google-badge .g-score { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--azul-esc); }
.google-badge .g-stars { color: var(--laranja); letter-spacing: 1px; }
.google-badge .g-count { font-size: 0.85rem; color: var(--texto-leve); }
.avaliacoes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: var(--max); margin: auto; }
.review-card { background: var(--branco); border: 1px solid var(--cinza-borda); border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--sombra); display: flex; flex-direction: column; transition: box-shadow .3s, transform .3s; }
.review-card:hover { box-shadow: var(--sombra-lg); transform: translateY(-4px); }
.review-stars { color: var(--laranja); font-size: 0.95rem; letter-spacing: 1px; margin-bottom: 12px; }
.review-text { color: var(--texto); font-size: 0.96rem; line-height: 1.7; margin-bottom: 20px; flex: 1; }
.review-text::before { content: '\201C'; color: var(--cinza-borda); font-family: Georgia, serif; font-size: 2.6rem; line-height: 0; vertical-align: -0.35em; margin-right: 4px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-azul); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 900; color: var(--laranja); flex-shrink: 0; }
.review-author b { display: block; font-size: 0.95rem; color: var(--azul-esc); font-weight: 700; }
.review-author small { color: var(--texto-leve); font-size: 0.78rem; }
.avaliacoes-cta { text-align: center; margin-top: 38px; }

/* ── ORÇAMENTO (formulário de lead na home) ──────────────────────── */
#orcamento { background: var(--grad-azul); position: relative; overflow: hidden; }
#orcamento::before { content: ''; position: absolute; inset: 0; pointer-events: none; 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: 50px 50px; }
.orcamento-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; max-width: var(--max); margin: auto; }
.orcamento-intro .section-label { color: #fff; background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }
.orcamento-intro h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 16px; }
.orcamento-intro h2 span { color: var(--laranja); }
.orcamento-intro > p { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 26px; }
.orcamento-list { list-style: none; display: grid; gap: 14px; margin-bottom: 28px; }
.orcamento-list li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.9); font-size: 0.98rem; }
.orcamento-list li i { width: 34px; height: 34px; flex-shrink: 0; border-radius: 8px; background: rgba(245,158,11,0.18); color: var(--laranja); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; }
.orcamento-zap { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; }
.orcamento-zap a { color: var(--verde-zap); font-weight: 700; }
/* O cartão do formulário reaproveita .form-card; aqui só o fundo branco */
#orcamento .form-card { background: var(--branco); border: none; box-shadow: var(--sombra-lg); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

/* ── FOOTER ───────────────────────────────────────────────────────── */
footer { background: #070d22; color: rgba(255,255,255,0.6); padding: 52px 5% 24px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--laranja); margin-bottom: 16px; }
.footer-col p, .footer-col a { font-size: 0.9rem; line-height: 1.9; color: rgba(255,255,255,0.55); display: block; }
.footer-col a:hover { color: var(--laranja); }
.footer-logo img { height: 56px; width: auto; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-logo p { font-size: 0.88rem; color: rgba(255,255,255,0.45); }
.footer-bottom { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* ── REVEAL ───────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .75s ease, transform .75s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(24px);  } to { opacity: 1; transform: translateY(0); } }

/* ── INSTAGRAM PILL ───────────────────────────────────────────────── */
.btn-insta { display: inline-flex; align-items: center; gap: 5px; background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff !important; padding: 4px 12px; border-radius: 5px; font-weight: 700; font-size: 0.82rem; transition: opacity .2s, transform .2s; }
.btn-insta:hover { opacity: .88; transform: translateY(-1px); }

/* ── RESPONSIVO ───────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .sobre-grid, .contato-wrap, .footer-top, .loja-grid, .orcamento-grid { grid-template-columns: 1fr; }
  .loja-trust { grid-template-columns: 1fr 1fr; }
  .badge-flutuante { right: 0; bottom: -16px; }
  .sobre-features { grid-template-columns: 1fr; }
  .marcas-inner { justify-content: center; text-align: center; }
  .processo-steps { grid-template-columns: 1fr 1fr; }
  .processo-steps::before { display: none; }
  .materiais-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .mapa-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 12px 5% 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 1250; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 4px; align-items: stretch; }
  .hamburger { display: flex; }
  .topbar-left { display: none; }
  .topbar { justify-content: center; }
  .logo-img { height: 70px; }
  header.shrink .logo-img { height: 50px; }
  .stat-item { min-width: 45%; }
  section { padding: 60px 5%; }
  .form-row { grid-template-columns: 1fr; }
  .materiais-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-contact-bar {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1400;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.18);
  }
  .mobile-contact-bar a { min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; }
  .mobile-contact-bar .whats { background: var(--verde-zap); }
  .mobile-contact-bar .call { background: var(--grafite); }
  .float-zap { bottom: 86px; }
  #backToTop { bottom: 158px; }
  body { padding-bottom: 58px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .stat-item { min-width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .sobre-grid { gap: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, header, .logo-img { transition: none; }
}
