/* ============================================================
   ZANELLA EXTINTORES — DESIGN SYSTEM
   Stack: HTML5 + CSS3 + GSAP | Inter + Phosphor Icons
   Theme: Industrial Premium Dark
   ============================================================ */

/* === 1. RESET ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', sans-serif; background: #0a0a0a; color: #fff; overflow-x: hidden; padding-bottom: calc(56px + 32px + 24px); }
@media (max-width: 480px) { body { padding-bottom: calc(50px + 24px + 24px); } }
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* === 2. TOKENS ============================================ */
:root {
  --c-bg:       #0a0a0a;
  --c-bg-alt:   #111111;
  --c-bg-card:  #141414;
  --c-red:      #CC1F1F;
  --c-red-dark: #991515;
  --c-red-deep: #7a1010;
  --c-white:    #FFFFFF;
  --c-text:     #e0e0e0;
  --c-muted:    #888888;
  --c-border:   rgba(255,255,255,0.07);
  --c-glass-bg: rgba(255,255,255,0.03);
  --c-wa:       #25D366;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-red:  0 8px 32px rgba(204,31,31,0.28);
  --shadow-card: 0 4px 32px rgba(0,0,0,0.5);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:  0.25s;
  --ts: 0.4s;

  --nav-h:      72px;
  --section-py: 96px;
  --container:  1200px;
  --px:         24px;
}

/* === 3. TYPOGRAPHY ======================================== */
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; line-height: 1.04; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.625rem); font-weight: 700; line-height: 1.2; }
h4 { font-size: clamp(1rem, 1.8vw, 1.25rem); font-weight: 700; line-height: 1.3; }
h5 { font-size: 1.0625rem; font-weight: 600; line-height: 1.3; }
h6 { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
p  { font-size: 1rem; line-height: 1.78; color: var(--c-text); }
.label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-red);
}

/* === 4. LAYOUT ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
}
section { padding: var(--section-py) 0; }
.section-header { margin-bottom: 56px; }
.section-header .label { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.0625rem; color: var(--c-muted); max-width: 540px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* === 5. NAVBAR ============================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--c-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}
.nav-logo img { height: 34px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-muted);
  transition: color var(--t);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--c-white); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--c-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-white);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone i { font-size: 16px; color: var(--c-red); }
.nav-cta {
  background: var(--c-red);
  color: var(--c-white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  transition: background var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--c-red-dark); box-shadow: var(--shadow-red); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  right: 0;
  bottom: 0;
  width: min(80vw, 320px);
  background: #0e0e0e;
  border-left: 1px solid var(--c-border);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform var(--ts) var(--ease);
  z-index: 999;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-muted);
  border-bottom: 1px solid var(--c-border);
  transition: color var(--t);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--c-white); }
.mobile-menu-cta {
  margin-top: 28px;
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  background: var(--c-red);
  color: white;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: background var(--t);
}
.mobile-menu-cta:hover { background: var(--c-red-dark) !important; color: white !important; }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  backdrop-filter: blur(4px);
}
.mobile-overlay.open { display: block; }

/* === 6. HERO ============================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(153,21,21,0.3) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(204,31,31,0.12) 0%, transparent 60%),
    var(--c-bg);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.92) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0) 60%, rgba(10,10,10,1) 100%);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 680px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border: 1px solid rgba(204,31,31,0.35);
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 28px;
  background: rgba(204,31,31,0.06);
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-red);
  box-shadow: 0 0 8px var(--c-red);
  animation: dot-pulse 2.2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.4); }
}
.hero h1 {
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--c-red); }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--c-muted);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  z-index: 1;
}
.hero-scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--c-red) 0%, transparent 100%);
  animation: scroll-bar 1.8s ease-in-out infinite;
}
@keyframes scroll-bar {
  0%, 100% { transform: scaleY(1); opacity: 0.8; }
  50% { transform: scaleY(0.4); opacity: 0.3; }
}

/* === 7. BUTTONS =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: background var(--t), box-shadow var(--t), border-color var(--t), color var(--t);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn i { font-size: 1.1em; }
.btn-primary {
  background: var(--c-red);
  color: var(--c-white);
  border-color: var(--c-red);
}
.btn-primary:hover {
  background: var(--c-red-dark);
  border-color: var(--c-red-dark);
  box-shadow: var(--shadow-red);
}
.btn-outline {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.18);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05);
}
.btn-wa {
  background: var(--c-wa);
  color: var(--c-white);
  border-color: var(--c-wa);
}
.btn-wa:hover {
  background: #1daa52;
  border-color: #1daa52;
  box-shadow: 0 8px 28px rgba(37,211,102,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--c-red);
  border-color: rgba(204,31,31,0.25);
}
.btn-ghost:hover {
  background: rgba(204,31,31,0.08);
  border-color: var(--c-red);
}
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.8125rem; }
.btn-block { width: 100%; }

/* === 8. WA FLOAT ========================================= */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--t), box-shadow var(--t);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(37,211,102,0.6);
}
.wa-float i { font-size: 26px; color: white; }

/* === 9. MARQUEE ========================================== */
.marquee-wrap {
  background: var(--c-red-dark);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 28px;
  flex-shrink: 0;
}
.marquee-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  filter: brightness(0.85);
}
.marquee-item span {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255,255,255,0.88);
}
.marquee-sep {
  color: rgba(255,255,255,0.3);
  font-size: 18px;
  padding: 0 8px;
  align-self: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === 10. CARDS DE SERVIÇO ================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--ts), transform var(--ts);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--c-red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--ts) var(--ease);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover {
  border-color: rgba(204,31,31,0.22);
  box-shadow: 0 12px 48px rgba(0,0,0,0.45);
  transform: translateY(-5px);
}
.service-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(204,31,31,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--t);
}
.service-card:hover .service-icon { background: rgba(204,31,31,0.18); }
.service-icon i { font-size: 22px; color: var(--c-red); }
.service-card h4 { margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--c-muted); margin-bottom: 28px; flex: 1; }
.service-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--c-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t);
  margin-top: auto;
}
.service-card:hover .service-link { gap: 10px; }

/* === 11. STATS =========================================== */
.stats-section { background: var(--c-bg-alt); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-border);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.stat-item {
  background: var(--c-bg-alt);
  padding: 44px 32px;
  text-align: center;
}
.stat-num {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--c-red);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  display: block;
}
.stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-muted);
}

/* === 12. DIFERENCIAIS ==================================== */
.diffs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .diffs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .diffs-grid { grid-template-columns: 1fr; }
}
.diff-card {
  background: var(--c-glass-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: background var(--t), border-color var(--t);
}
.diff-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(204,31,31,0.18);
}
.diff-card i {
  font-size: 32px;
  color: var(--c-red);
  display: block;
  margin-bottom: 14px;
}
.diff-card h5 { margin-bottom: 8px; }
.diff-card p { font-size: 0.875rem; color: var(--c-muted); margin: 0; }

/* === 13. TIMELINE ======================================== */
.timeline-section { background: var(--c-bg-alt); }
.timeline {
  display: flex;
  position: relative;
  margin-top: 60px;
}
.timeline-rail {
  position: absolute;
  top: 27px;
  left: calc(var(--px) + 27px);
  right: calc(var(--px) + 27px);
  height: 2px;
  background: var(--c-border);
}
.timeline-progress {
  height: 100%;
  width: 0;
  background: var(--c-red);
  transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
}
.timeline-steps {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 1;
}
.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}
.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  background: var(--c-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: border-color var(--t), background var(--t);
}
.timeline-step.active .timeline-dot {
  border-color: var(--c-red);
  background: rgba(204,31,31,0.1);
}
.timeline-dot i { font-size: 20px; color: var(--c-muted); transition: color var(--t); }
.timeline-step.active .timeline-dot i { color: var(--c-red); }
.timeline-step h5 { margin-bottom: 6px; font-size: 0.9375rem; }
.timeline-step p { font-size: 0.8125rem; color: var(--c-muted); line-height: 1.5; }

/* === 14. FAQ ============================================= */
.faq-wrap { max-width: 720px; margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-text);
  transition: color var(--t);
}
.faq-q:hover { color: var(--c-white); }
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t), border-color var(--t), transform var(--t) var(--ease);
}
.faq-item.open .faq-icon {
  background: var(--c-red);
  border-color: var(--c-red);
  transform: rotate(45deg);
}
.faq-icon i { font-size: 14px; }
.faq-a { overflow: hidden; height: 0; }
.faq-a-inner {
  padding: 0 0 22px;
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.75;
}

/* === 15. QUEM SOMOS ====================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.8) saturate(0.85);
  transition: filter var(--ts);
}
.about-img-wrap:hover img { filter: brightness(0.9) saturate(1); }
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(204,31,31,0.18);
  border-radius: var(--radius-md);
  pointer-events: none;
}
.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--c-red);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.about-content { }
.about-content .label { margin-bottom: 14px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--c-muted); margin-bottom: 16px; line-height: 1.8; }
.about-content .btn { margin-top: 12px; }

/* === 16. CTA BANNER ====================================== */
.cta-banner {
  background: linear-gradient(135deg, #7a1010 0%, var(--c-red) 60%, #e83030 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,0,0,0.15) 0%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner > .container > p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner .btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: white;
}
.cta-banner .btn-outline:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.12);
}

/* === 17. FOOTER ========================================== */
footer {
  background: #080808;
  border-top: 3px solid var(--c-red);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 30px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 0.875rem; color: var(--c-muted); line-height: 1.7; margin-bottom: 18px; }
footer h6 {
  margin-bottom: 18px;
  color: var(--c-white);
  font-size: 0.6875rem;
}
footer ul li { margin-bottom: 10px; }
footer ul li a {
  font-size: 0.875rem;
  color: var(--c-muted);
  transition: color var(--t);
}
footer ul li a:hover { color: var(--c-white); }
.footer-contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: var(--c-muted);
}
.footer-contact-row i { font-size: 15px; color: var(--c-red); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.8125rem; color: var(--c-muted); }
.footer-policy { font-size: 0.8125rem; color: var(--c-muted); transition: color var(--t); }
.footer-policy:hover { color: var(--c-white); }

/* === 18. PAGE HERO (páginas internas) ==================== */
.page-hero {
  padding: calc(var(--nav-h) + 40px) 0 40px;
  background: linear-gradient(to bottom, var(--c-bg-alt) 0%, var(--c-bg) 100%);
  border-bottom: 1px solid var(--c-border);
}
.page-hero .label { margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 18px; }
.page-hero p { font-size: 1.0625rem; color: var(--c-muted); max-width: 560px; margin-bottom: 28px; }
.hero-list { list-style: none; padding: 0; margin: 0 0 28px; max-width: 560px; display: flex; flex-direction: column; gap: 12px; }
.hero-list li { font-size: 1.0625rem; color: var(--c-muted); padding-left: 20px; position: relative; }
.hero-list li::before { content: "•"; position: absolute; left: 0; color: var(--c-accent); font-weight: 700; }
.hero-list li strong { color: var(--c-text); }

/* === 19. CLCB ============================================ */
.risk-section { background: #090606; }
.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 44px;
}
.risk-card {
  border: 1px solid rgba(204,31,31,0.22);
  border-radius: var(--radius-md);
  padding: 22px;
  background: rgba(204,31,31,0.03);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.risk-badge {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--c-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
  color: white;
}
.risk-card p { font-size: 0.875rem; color: var(--c-text); margin: 0; }
.clcb-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.clcb-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: border-color var(--t);
}
.clcb-card:hover { border-color: rgba(204,31,31,0.2); }
.clcb-card i { font-size: 40px; color: var(--c-red); margin-bottom: 16px; display: block; }
.clcb-card h4 { margin-bottom: 12px; }
.clcb-card p { font-size: 0.9rem; color: var(--c-muted); margin: 0; }
.obrigatorio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin-top: 32px;
}
.obrigatorio-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
}
.obrigatorio-item i { font-size: 18px; color: var(--c-red); flex-shrink: 0; }
.obrigatorio-item span { font-size: 0.875rem; font-weight: 600; }

/* === 20. EXTINTORES ====================================== */
.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 48px 0;
}
.maintenance-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color var(--t);
}
.maintenance-card:hover { border-color: rgba(204,31,31,0.2); }
.maintenance-card i { font-size: 30px; color: var(--c-red); margin-bottom: 14px; display: block; }
.maintenance-card h5 { margin-bottom: 10px; }
.maintenance-card p { font-size: 0.875rem; color: var(--c-muted); margin: 0; }
.incluso-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin: 32px 0 48px;
}
.incluso-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--t);
}
.incluso-item:hover { border-color: rgba(204,31,31,0.2); }
.incluso-item i { font-size: 20px; color: var(--c-red); flex-shrink: 0; }
.incluso-item span { font-size: 0.875rem; font-weight: 600; }
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  margin: 32px 0;
}
.ext-table { width: 100%; border-collapse: collapse; min-width: 540px; }
.ext-table th {
  background: var(--c-red);
  padding: 14px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  color: white;
}
.ext-table th:first-child { border-radius: 0; }
.ext-table td {
  padding: 14px 20px;
  font-size: 0.875rem;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
  line-height: 1.5;
}
.ext-table tr:last-child td { border-bottom: none; }
.ext-table tr:nth-child(odd) td { background: rgba(255,255,255,0.015); }
.classe { display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; margin-right: 4px; }
.classe-a { background: rgba(34,197,94,0.12); color: #86efac; }
.classe-b { background: rgba(234,179,8,0.12); color: #fde047; }
.classe-c { background: rgba(59,130,246,0.12); color: #93c5fd; }
.check { font-size: 18px; }
.check.y { color: #22c55e; }
.check.n { color: #333; }

/* === 21. PEÇAS =========================================== */
.pecas-anchors {
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.pecas-anchors .container {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 10px var(--px);
  scrollbar-width: none;
}
.pecas-anchors::-webkit-scrollbar { display: none; }
.anc-link {
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-muted);
  transition: background var(--t), color var(--t);
  flex-shrink: 0;
}
.anc-link:hover,
.anc-link.active { background: rgba(204,31,31,0.1); color: var(--c-red); }
.catalog-section { padding: 72px 0; }
.catalog-section:nth-of-type(even) { background: var(--c-bg-alt); }
.catalog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 40px;
}
.catalog-header h2 { font-size: clamp(1.375rem, 3vw, 1.875rem); }
.catalog-header .label { margin: 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--ts), transform var(--ts);
}
.product-card:hover {
  border-color: rgba(204,31,31,0.22);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.product-img-box {
  aspect-ratio: 1;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform var(--ts);
}
.product-card:hover .product-img-box img { transform: scale(1.06); }
.product-no-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  color: var(--c-muted);
  opacity: 0.35;
}
.product-no-img i { font-size: 44px; }
.product-no-img span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.product-body { padding: 20px; }
.product-body h5 { margin-bottom: 8px; font-size: 0.9375rem; }
.product-body p { font-size: 0.8125rem; color: var(--c-muted); margin-bottom: 16px; line-height: 1.55; }
.product-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--c-red);
  transition: gap var(--t);
}
.product-card:hover .product-wa { gap: 11px; }
.catalog-footer-cta {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 48px;
  text-align: center;
  margin-top: 24px;
}
.catalog-footer-cta h3 { margin-bottom: 12px; }
.catalog-footer-cta p { color: var(--c-muted); margin-bottom: 28px; }

/* === 22. CONTATO ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--c-muted); margin-bottom: 36px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(204,31,31,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { font-size: 18px; color: var(--c-red); }
.contact-item-text strong { display: block; font-size: 0.875rem; font-weight: 700; margin-bottom: 3px; color: var(--c-white); }
.contact-item-text span { font-size: 0.875rem; color: var(--c-muted); }
.contact-wa {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: rgba(37,211,102,0.07);
  border: 1px solid rgba(37,211,102,0.22);
  border-radius: var(--radius-sm);
  color: #25D366;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: background var(--t), box-shadow var(--t);
  margin-top: 28px;
}
.contact-wa:hover {
  background: rgba(37,211,102,0.14);
  box-shadow: 0 4px 24px rgba(37,211,102,0.18);
}
.contact-wa i { font-size: 22px; }
.form-box {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 40px;
}
.form-box h3 { margin-bottom: 28px; font-size: 1.25rem; }
.form-row { margin-bottom: 20px; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--c-text);
}
label .req { color: var(--c-red); margin-left: 2px; }
.field {
  width: 100%;
  background: #191919;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 11px 15px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--c-white);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.field::placeholder { color: #444; }
.field:focus {
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(204,31,31,0.1);
}
select.field {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23CC1F1F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
select.field option { background: #191919; }
textarea.field { min-height: 110px; resize: vertical; }
.form-honeypot { display: none; visibility: hidden; }
.form-submit { width: 100%; padding: 16px; margin-top: 4px; font-size: 0.9375rem; }
.map-wrap {
  border-top: 1px solid var(--c-border);
  background: var(--c-bg-alt);
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: 0;
  filter: grayscale(80%) invert(92%) hue-rotate(182deg) brightness(0.88);
}

/* === 23. OBRIGADO ======================================== */
.thanks-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.thanks-content { max-width: 520px; }
.thanks-content .thanks-icon { font-size: 72px; color: var(--c-red); display: block; margin-bottom: 24px; }
.thanks-content h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 16px; }
.thanks-content p { color: var(--c-muted); margin-bottom: 36px; }

/* === 24. POLÍTICA ======================================== */
.policy-page { padding: calc(var(--nav-h) + 72px) 0 96px; }
.policy-content { max-width: 700px; }
.policy-content h1 { margin-bottom: 10px; font-size: clamp(1.75rem, 4vw, 2.5rem); }
.policy-meta { font-size: 0.875rem; color: var(--c-muted); margin-bottom: 48px; }
.policy-content h2 { font-size: 1.25rem; margin: 40px 0 12px; color: var(--c-white); }
.policy-content p { color: var(--c-muted); margin-bottom: 14px; }
.policy-content ul { padding-left: 18px; list-style: disc; color: var(--c-muted); margin-bottom: 14px; }
.policy-content ul li { margin-bottom: 8px; font-size: 0.9375rem; }

/* === 25. UTILITIES ======================================= */
.text-red   { color: var(--c-red) !important; }
.text-muted { color: var(--c-muted) !important; }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-32 { margin-bottom: 32px; }

/* === 26. SCROLLBAR ======================================= */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-red-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-red); }

/* === 27. RESPONSIVE ====================================== */
@media (max-width: 1023px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; --px: 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > .footer-brand { grid-column: 1 / -1; }
  .clcb-cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .maintenance-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-box { padding: 28px 20px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .timeline-steps { flex-direction: column; }
  .timeline-rail { display: none; }
  .timeline-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    column-gap: 20px;
    row-gap: 4px;
    text-align: left;
    padding: 0 0 28px;
    align-items: start;
  }
  .timeline-dot { grid-column: 1; grid-row: 1 / 3; margin-bottom: 0; }
  .timeline-step h5 { grid-column: 2; grid-row: 1; align-self: end; margin-bottom: 0; }
  .timeline-step p { grid-column: 2; grid-row: 2; }
  .catalog-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  :root { --px: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .catalog-footer-cta { padding: 32px 20px; }
  .wa-float { bottom: 24px; right: 24px; width: 50px; height: 50px; }
  .wa-float i { font-size: 22px; }
}

@media (max-width: 360px) {
  h1 { font-size: 2.1rem; }
  .stats-grid { grid-template-columns: 1fr; }
}


/* === 28. CLCB STEPS ====================================== */
.clcb-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  counter-reset: steps;
}
.clcb-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--c-border);
  transition: background var(--t);
}
.clcb-step:last-child { border-bottom: none; }
.clcb-step-num {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--c-red);
  letter-spacing: -0.04em;
  line-height: 1;
  min-width: 52px;
  opacity: 0.85;
  flex-shrink: 0;
}
.clcb-step-content h5 { margin-bottom: 8px; font-size: 1rem; }
.clcb-step-content p { font-size: 0.9rem; color: var(--c-muted); margin: 0; line-height: 1.7; }

/* === 29. CLCB NEW HERO + SECTIONS ======================== */
.clcb-hero-new {
  padding: calc(var(--nav-h) + 56px) 0 72px;
  background: #0c0c0e;
  overflow: hidden;
}
.clcb-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.clcb-hero-text .label { margin-bottom: 16px; }
.clcb-hero-text h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 22px; line-height: 1.05; }
.clcb-hero-text > p { font-size: 1.0625rem; color: var(--c-muted); margin-bottom: 32px; max-width: 500px; line-height: 1.7; }
.clcb-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.clcb-hero-badges { display: flex; gap: 24px; flex-wrap: wrap; padding-top: 4px; border-top: 1px solid var(--c-border); }
.clcb-badge { display: flex; align-items: center; gap: 9px; font-size: 0.8rem; color: var(--c-muted); line-height: 1.35; }
.clcb-badge i { font-size: 20px; color: var(--c-accent); flex-shrink: 0; }
.clcb-hero-img img {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(204,31,31,0.3);
  box-shadow: 0 0 40px rgba(204,31,31,0.12);
  display: block;
}

/* Feature cards */
.clcb-features { padding: 64px 0; background: #111113; border-top: 1px solid #222; }
.clcb-features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.clcb-feat-card {
  background: #181818;
  border: 1px solid rgba(204,31,31,0.35);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color var(--t), box-shadow var(--t);
}
.clcb-feat-card:hover { border-color: rgba(204,31,31,0.7); box-shadow: 0 0 20px rgba(204,31,31,0.1); }
.clcb-feat-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.clcb-feat-icon {
  width: 50px; height: 50px; border-radius: 10px; flex-shrink: 0;
  background: rgba(204,31,31,0.1); border: 1px solid rgba(204,31,31,0.35);
  display: flex; align-items: center; justify-content: center;
}
.clcb-feat-icon i { font-size: 24px; color: var(--c-accent); }
.clcb-feat-header h4 { margin: 0; font-size: 1rem; line-height: 1.35; align-self: center; }
.clcb-feat-card > p { font-size: 0.875rem; color: var(--c-muted); margin: 0; line-height: 1.7; }

/* Process */
.clcb-process { padding: 80px 0; background: #0c0c0e; border-top: 1px solid #1e1e20; }
.clcb-section-title { color: var(--c-accent) !important; font-size: 1.375rem; letter-spacing: 0.04em; }
.clcb-process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 56px; }
.clcb-proc-step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; padding: 0 12px; }
.clcb-proc-icon-wrap {
  width: 76px; height: 76px; border-radius: 50%;
  border: 2px solid var(--c-accent); background: rgba(204,31,31,0.08);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; flex-shrink: 0;
}
.clcb-proc-icon-wrap i { font-size: 30px; color: var(--c-accent); }
.clcb-proc-arrow {
  position: absolute; top: 36px; left: calc(50% + 42px);
  width: calc(100% - 84px); height: 2px;
  border-top: 2px dashed rgba(204,31,31,0.5);
  display: flex; align-items: center; justify-content: flex-end;
}
.clcb-proc-arrow::after { content: "→"; color: var(--c-accent); font-size: 14px; margin-top: -2px; position: absolute; right: -4px; top: -10px; }
.clcb-proc-step:last-child .clcb-proc-arrow { display: none; }
.clcb-proc-num { font-size: 1.375rem; font-weight: 900; color: var(--c-accent); margin-bottom: 6px; }
.clcb-proc-step h6 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 8px; color: var(--c-text); }
.clcb-proc-step p { font-size: 0.8rem; color: var(--c-muted); line-height: 1.6; max-width: 140px; }

/* Why Zanella */
.clcb-why { padding: 80px 0; background: #111113; border-top: 1px solid #1e1e20; }
.clcb-why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 40px; }
.clcb-why-card {
  background: #181818; border: 1px solid rgba(204,31,31,0.25);
  border-radius: 14px; padding: 26px 20px; transition: border-color var(--t);
}
.clcb-why-card:hover { border-color: rgba(204,31,31,0.6); }
.clcb-why-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.clcb-why-icon {
  width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0;
  background: rgba(204,31,31,0.1); border: 1px solid rgba(204,31,31,0.3);
  display: flex; align-items: center; justify-content: center;
}
.clcb-why-icon i { font-size: 22px; color: var(--c-accent); }
.clcb-why-header h4 { margin: 0; font-size: 0.9375rem; line-height: 1.3; align-self: center; }
.clcb-why-card > p { font-size: 0.85rem; color: var(--c-muted); margin: 0; line-height: 1.65; }

/* Responsive */
@media (max-width: 960px) {
  .clcb-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .clcb-hero-img img { height: 280px; }
  .clcb-features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .clcb-process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .clcb-proc-arrow { display: none; }
  .clcb-why-grid { grid-template-columns: 1fr 1fr; }
  .clcb-process { padding: 60px 0; }
  .clcb-why { padding: 60px 0; }
}
@media (max-width: 600px) {
  /* Hero */
  .clcb-hero-new { padding: calc(var(--nav-h) + 32px) 0 48px; }
  .clcb-hero-text h1 { font-size: 2.125rem; }
  .clcb-hero-img img { height: 210px; }
  .clcb-hero-ctas { flex-direction: column; }
  .clcb-hero-badges { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; padding-top: 16px; flex-direction: unset; }
  .clcb-badge { flex-direction: column; align-items: center; text-align: center; gap: 5px; font-size: 0.72rem; }

  /* Feature cards */
  .clcb-features { padding: 48px 0; }
  .clcb-features-grid { grid-template-columns: 1fr; }

  /* Process — timeline vertical */
  .clcb-process { padding: 48px 0; }
  .clcb-process-steps { grid-template-columns: 1fr; gap: 0; }
  .clcb-proc-step { flex-direction: row; align-items: flex-start; text-align: left; gap: 16px; padding: 0 0 28px; position: relative; }
  .clcb-proc-step:not(:last-child)::after { content: ''; position: absolute; left: 29px; top: 62px; bottom: 0; width: 2px; background: linear-gradient(to bottom, rgba(204,31,31,0.45), rgba(204,31,31,0.05)); }
  .clcb-proc-icon-wrap { width: 60px; height: 60px; flex-shrink: 0; }
  .clcb-proc-icon-wrap i { font-size: 24px; }
  .clcb-proc-num { font-size: 1.125rem; margin-bottom: 4px; }
  .clcb-proc-step h6 { font-size: 0.9375rem; margin-bottom: 4px; }
  .clcb-proc-step p { max-width: 100%; }

  /* Why cards */
  .clcb-why { padding: 48px 0; }
  .clcb-why-grid { grid-template-columns: 1fr; }
}

/* === 29. EXT TABLE WRAP ================================== */
.ext-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
}
.ext-table-wrap .ext-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.ext-table-wrap .ext-table th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }

/* === 30. CATALOG LAYOUT ================================== */
.catalog-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  min-height: 100vh;
  align-items: start;
}
.catalog-sidebar {
  position: sticky;
  top: var(--nav-h);
  height: fit-content;
  border-right: 1px solid var(--c-border);
  background: var(--c-bg);
  padding: 40px 0;
}
.anc-wrap {
  padding: 0 20px;
}
.anc-wrap h6 {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-border);
}
.anc-wrap .anc-link {
  display: block;
  margin-bottom: 4px;
  border-radius: var(--radius-sm);
}
.catalog-main {
  min-width: 0;
}
.catalog-section {
  padding: 64px 48px;
  border-bottom: 1px solid var(--c-border);
}
.catalog-section:last-child { border-bottom: none; }
.catalog-section-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}
.catalog-section-header h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  margin-bottom: 6px;
}
.catalog-section-header p {
  font-size: 0.9rem;
  color: var(--c-muted);
  margin: 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.product-img-wrap {
  aspect-ratio: 1;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform var(--ts);
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-img-placeholder {
  flex-direction: column;
  gap: 6px;
}
.product-img-placeholder i { font-size: 44px; color: var(--c-muted); opacity: 0.3; }
.product-info {
  padding: 18px;
}
.product-info h5 { font-size: 0.9375rem; margin-bottom: 8px; }
.product-info p { font-size: 0.8125rem; color: var(--c-muted); margin-bottom: 14px; line-height: 1.5; }
.catalog-not-found {
  text-align: center;
  padding: 64px 48px;
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
}
.catalog-not-found i { font-size: 56px; color: var(--c-muted); opacity: 0.3; margin-bottom: 16px; display: block; }
.catalog-not-found h4 { margin-bottom: 10px; font-size: 1.25rem; }
.catalog-not-found p { color: var(--c-muted); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }

@media (max-width: 900px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-sidebar { position: relative; top: 0; border-right: none; border-bottom: 1px solid var(--c-border); padding: 16px 0; }
  .anc-wrap { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 var(--px); }
  .anc-wrap h6 { display: none; }
  .anc-wrap .anc-link { display: inline-flex; border: 1px solid var(--c-border); margin-bottom: 0; padding: 7px 14px; }
  .catalog-section { padding: 48px var(--px); }
  .catalog-not-found { padding: 48px var(--px); }
}

/* === 31. CONTACT FORM ==================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-info h3 { margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--c-border);
}
.contact-info-item:last-of-type { border-bottom: none; margin-bottom: 0; }
.contact-info-item i { font-size: 22px; color: var(--c-red); flex-shrink: 0; margin-top: 1px; }
.contact-info-item strong { display: block; font-size: 0.8125rem; font-weight: 700; color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-info-item a, .contact-info-item span { font-size: 0.9375rem; color: var(--c-text); line-height: 1.6; }
.contact-info-item a:hover { color: var(--c-red); }
.map-wrap { margin-top: 24px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--c-border); }
.map-wrap iframe { filter: grayscale(80%) invert(92%) hue-rotate(182deg) brightness(0.88); }
.contact-form-wrap {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 40px;
}
.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--c-muted); font-size: 0.9rem; margin-bottom: 32px; }
.contact-form .form-row { margin-bottom: 18px; }
.contact-form .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--c-text);
}
.form-group .req { color: var(--c-red); margin-left: 2px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #191919;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 11px 15px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--c-white);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #444; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(204,31,31,0.1);
}
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23CC1F1F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.contact-form select option { background: #191919; }
.contact-form textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 0.75rem; color: var(--c-muted); text-align: center; margin-top: 12px; }
.form-note a { color: var(--c-red); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 28px 20px; }
  .contact-form .form-row-2 { grid-template-columns: 1fr; }
}

/* === 32. OBRIGADO ======================================== */
.obrigado-section {
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 48px) 0 80px;
}
.obrigado-box {
  max-width: 540px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
}
.obrigado-icon { font-size: 72px; color: var(--c-red); display: block; margin-bottom: 20px; }
.obrigado-box h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 14px; }
.obrigado-box p { color: var(--c-muted); margin-bottom: 12px; }
@media (max-width: 480px) { .obrigado-box { padding: 40px 24px; } }

/* === 33. AVALIAÇÕES GOOGLE ================================ */
.reviews-section { background: var(--c-bg); padding: 96px 0; }
.reviews-rating-block { display: flex; justify-content: center; margin-bottom: 2rem; }
.reviews-rating-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.reviews-big-score { font-size: 5rem; font-weight: 900; line-height: 1; color: var(--c-white); }
.reviews-count { font-size: 0.9375rem; color: var(--c-muted); }
.reviews-badge {
  display: flex; align-items: center; gap: 10px;
  justify-content: center; margin-top: 20px; flex-wrap: wrap;
}
.reviews-score { font-size: 2.25rem; font-weight: 900; color: var(--c-white); line-height: 1; }
.reviews-stars-row { display: flex; gap: 3px; color: #FBBC05; font-size: 1.1rem; }
.reviews-label { font-size: 0.875rem; color: var(--c-muted); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.review-card {
  background: var(--c-bg-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: rgba(204,31,31,0.35); }
.review-card-header { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--c-red); color: #fff;
  font-weight: 700; font-size: 0.8125rem; letter-spacing: 0.03em;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.reviewer-meta { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.reviewer-meta strong { font-size: 0.9375rem; color: var(--c-white); }
.reviewer-meta span { font-size: 0.8rem; color: var(--c-muted); }
.google-g { flex-shrink: 0; }
.review-text { font-size: 0.9375rem; color: var(--c-muted); line-height: 1.65; flex: 1; font-style: italic; }
.reviews-cta { display: flex; justify-content: center; margin-top: 2.5rem; }
.reviews-cta .btn { gap: 10px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } .reviews-score { font-size: 1.875rem; } }

/* === 34. MAPA SEÇÃO ====================================== */
.map-section { background: var(--c-bg-alt); padding: 80px 0 0; }
.map-section-header { margin-bottom: 2rem; }
.map-section-info h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: var(--c-white); margin: 0.5rem 0 0.75rem; }
.map-section-info p { color: var(--c-muted); margin-bottom: 1.5rem; font-size: 0.9375rem; }
.map-embed-wrap { border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; line-height: 0; }
.map-embed-wrap iframe { display: block; width: 100%; height: 420px; }
@media (max-width: 640px) { .map-embed-wrap iframe { height: 280px; } }

/* === 35. LEGAL =========================================== */
.legal-section {
  padding: calc(var(--nav-h) + 64px) 0 96px;
}
.legal-content { max-width: 700px; }
.legal-content h1 { margin-bottom: 10px; }
.legal-updated { font-size: 0.875rem; color: var(--c-muted); margin-bottom: 48px; }
.legal-content h2 { font-size: 1.25rem; margin: 40px 0 12px; color: var(--c-white); }
.legal-content p { color: var(--c-muted); margin-bottom: 14px; }
.legal-content ul { padding-left: 20px; list-style: disc; color: var(--c-muted); margin-bottom: 14px; }
.legal-content ul li { margin-bottom: 8px; font-size: 0.9375rem; line-height: 1.6; }
.legal-content a { color: var(--c-red); }
.legal-content strong { color: var(--c-text); font-weight: 700; }

/* === 31. VISUAL ASSETS — BACKGROUNDS ===================== */
/* pecas.html hero */
section[aria-labelledby="pecas-hero-title"] {
  background:
    linear-gradient(to right, rgba(8,8,8,1.0) 44%, rgba(8,8,8,0.08) 100%),
    url('../assets/img/hero-pecas-equipamentos-zanella-itu-sp.webp') right center / cover no-repeat;
  border-bottom: 1px solid var(--c-border);
}

/* extintores.html hero */
section[aria-labelledby="ext-hero-title"] {
  background:
    linear-gradient(to right, rgba(8,8,8,1.0) 46%, rgba(8,8,8,0.08) 100%),
    url('../assets/img/extintor-certificado-zanella-itu-sp.webp') right center / cover no-repeat;
  border-bottom: 1px solid var(--c-border);
}

/* index.html — Diferenciais */
section[aria-labelledby="diffs-title"] {
  background:
    linear-gradient(to right, rgba(8,8,8,1.0) 52%, rgba(8,8,8,0.0) 100%),
    url('../assets/img/extintor-zanella-diferenciais-itu-sp.webp') right center / cover no-repeat;
}

/* 4-card grid */
.diffs-cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.diff-card-4 {
  background: rgba(20,20,20,0.85);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.diff-card-4 > i { font-size: 1.5rem; color: var(--c-red); }
.diff-card-4 h5  { font-size: 0.92rem; font-weight: 600; color: var(--c-white); line-height: 1.3; }
.diff-card-4 p   { font-size: 0.82rem; color: var(--c-text); line-height: 1.6; margin: 0; }

/* Diferenciais CTA bar */
.diffs-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(20,20,20,0.85);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.diffs-cta-content { display: flex; align-items: center; gap: 18px; flex: 1; min-width: 0; }
.diffs-cta-content > i { font-size: 2.2rem; color: var(--c-red); flex-shrink: 0; }
.diffs-cta-text strong { font-size: 1rem; color: var(--c-white); display: block; margin-bottom: 4px; line-height: 1.4; }
.diffs-cta-text p { font-size: 0.82rem; color: var(--c-muted); margin: 0; line-height: 1.5; }

.diffs-cta-bar .btn { flex-shrink: 0; display: flex; align-items: center; gap: 8px; white-space: nowrap; }

@media (max-width: 900px) {
  .diffs-cards-4 { grid-template-columns: repeat(2, 1fr); }
  .diffs-cta-bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .diffs-cards-4 { grid-template-columns: 1fr; }
}

/* index.html — Avaliações */
section#avaliacoes {
  background:
    linear-gradient(to right, rgba(8,8,8,1.0) 50%, rgba(8,8,8,0.0) 100%),
    url('../assets/img/avaliacao-fundo-zanella-itu-sp.webp') right center / cover no-repeat;
}

/* Review cards grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.review-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-g-icon { flex-shrink: 0; }

.review-card-meta { display: flex; flex-direction: column; }
.review-card-meta strong { font-size: 0.88rem; color: var(--c-white); }
.review-card-meta span   { font-size: 0.75rem; color: var(--c-muted); margin-top: 1px; }

.review-card-stars { display: flex; gap: 3px; }
.review-card-stars i { color: #F5C518; font-size: 1rem; }

.review-card-text { font-size: 0.85rem; color: var(--c-text); line-height: 1.6; }

/* Trust bar */
.reviews-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--c-border);
}

.trust-item { display: flex; align-items: flex-start; gap: 14px; }
.trust-item > i { font-size: 1.5rem; color: var(--c-red); flex-shrink: 0; margin-top: 1px; }
.trust-item strong { font-size: 0.88rem; color: var(--c-white); display: block; margin-bottom: 4px; }
.trust-item p { font-size: 0.78rem; color: var(--c-muted); line-height: 1.5; margin: 0; }

@media (max-width: 900px) {
  .reviews-grid        { grid-template-columns: repeat(2, 1fr); }
  .reviews-trust-bar   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .reviews-grid        { grid-template-columns: 1fr; }
  .reviews-trust-bar   { grid-template-columns: 1fr; }
}

/* === 32. QUEM SOMOS — FEATURES BAR ======================= */
.about-features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--c-border);
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 28px 0 0;
}
.about-feat + .about-feat {
  padding-left: 28px;
  border-left: 1px solid var(--c-border);
}
.about-feat > i { font-size: 2rem; color: var(--c-red); flex-shrink: 0; margin-top: 2px; }
.about-feat strong { font-size: 0.9rem; color: var(--c-white); display: block; margin-bottom: 4px; font-weight: 600; }
.about-feat p { font-size: 0.8rem; color: var(--c-muted); margin: 0; line-height: 1.5; }

@media (max-width: 900px) {
  .about-features-bar { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .about-feat { padding: 0 !important; border-left: none !important; }
}
@media (max-width: 480px) {
  .about-features-bar { grid-template-columns: 1fr; }
}

/* === 33. PAGE HERO — FEATURE LIST WITH ICON BOXES ======== */
.hero-feat-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
}
.hero-feat-item:last-child { border-bottom: none; }
.hero-feat-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(204,31,31,0.1);
  border: 1px solid rgba(204,31,31,0.35);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-feat-icon i { font-size: 1.4rem; color: var(--c-red); }
.hero-feat-item strong { font-size: 0.92rem; color: var(--c-white); display: block; margin-bottom: 3px; font-weight: 700; }
.hero-feat-item p { font-size: 0.82rem; color: var(--c-text); margin: 0; line-height: 1.5; }

/* === 34. ACOMPANHAMENTO TÉCNICO — HERO + CARDS + STEPS ==== */
.acomp-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, var(--c-bg-alt) 42%, rgba(18,18,20,0.7) 65%, rgba(18,18,20,0.4) 100%),
              url('../assets/img/bombeiro-incendio-zanella-itu-sp.webp') right center / cover no-repeat;
  padding: 72px 0 64px;
}
.acomp-hero-text { max-width: 52%; }
.acomp-hero-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 12px 0 20px;
  line-height: 1.2;
}
.acomp-hero-text p { color: var(--c-text-2); line-height: 1.7; max-width: 520px; }

.acomp-badge {
  position: absolute;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.acomp-badge-alert {
  bottom: 32px; right: 10%;
  background: rgba(204,31,31,0.95);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45);
}
.acomp-badge-alert i { font-size: 1.4rem; flex-shrink: 0; }
.acomp-badge-alert strong { display: block; font-weight: 700; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.04em; }
.acomp-badge-alert span { font-size: 0.74rem; opacity: 0.9; }
.acomp-badge-ok {
  top: 32px; right: 5%;
  background: rgba(204,31,31,0.92);
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  border: 2px solid rgba(255,255,255,0.22);
  box-shadow: 0 4px 20px rgba(0,0,0,0.45);
}

.acomp-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 48px 0 0;
}
.acomp-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s;
}
.acomp-card:hover { border-color: rgba(204,31,31,0.4); }
.acomp-card-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: rgba(204,31,31,0.1);
  border: 1px solid rgba(204,31,31,0.35);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.acomp-card-icon i { font-size: 1.6rem; color: var(--c-red); }
.acomp-card h5 { font-size: 1rem; font-weight: 700; color: var(--c-white); margin: 0 0 8px; line-height: 1.3; }
.acomp-card p { font-size: 0.875rem; color: var(--c-muted); margin: 0; line-height: 1.6; }

.acomp-steps-wrap { padding: 48px 0 56px; }
.acomp-steps-label {
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-red);
  text-transform: uppercase;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
}
.acomp-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 40px;
}
.acomp-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.acomp-step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--c-red);
  background: rgba(204,31,31,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.acomp-step-circle i { font-size: 1.6rem; color: var(--c-red); }
.acomp-step-num { font-size: 0.7rem; font-weight: 800; color: var(--c-red); letter-spacing: 0.08em; }
.acomp-step h6 { font-size: 0.9rem; font-weight: 700; color: var(--c-white); margin: 0; }
.acomp-step p { font-size: 0.76rem; color: var(--c-muted); margin: 0; line-height: 1.55; max-width: 130px; }
.acomp-step-arrow {
  flex: 0 0 28px;
  height: 2px;
  border-top: 2px dashed rgba(255,255,255,0.15);
  margin-top: 34px;
  align-self: flex-start;
}
.acomp-cta { width: 100%; justify-content: center; padding: 18px 24px; font-size: 1.05rem; }

@media (max-width: 900px) {
  .acomp-hero { background: var(--c-bg-alt); padding: 52px 0 40px; }
  .acomp-hero-text { max-width: 100%; }
  .acomp-badge { display: none; }
  .acomp-cards-grid { grid-template-columns: 1fr; }
  .acomp-steps { flex-direction: column; align-items: center; gap: 16px; }
  .acomp-step-arrow { flex: 0 0 auto; width: 2px; height: 20px; border-top: none; border-left: 2px dashed rgba(255,255,255,0.15); margin-top: 0; align-self: auto; }
  .acomp-step p { max-width: 280px; }
}
@media (max-width: 480px) {
  .acomp-card { flex-direction: column; }
  .acomp-card-icon { width: 48px; height: 48px; }
  .acomp-cta { font-size: 0.95rem; padding: 16px 20px; }
}

/* === 35. CONTATO — CTA WHATSAPP CARD ==================== */
.cta-wa-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: var(--radius-md);
  margin: 24px 0 20px;
}
.cta-wa-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(37,211,102,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-wa-icon i { font-size: 1.8rem; color: #25d366; }
.cta-wa-text { display: flex; flex-direction: column; gap: 4px; }
.cta-wa-text strong { font-size: 1rem; color: var(--c-white); font-weight: 700; }
.cta-wa-text span { font-size: 0.82rem; color: var(--c-muted); }

/* === 36. CLIENTES ATENDIDOS ============================== */
.clients-section { padding: 72px 0; background: var(--c-bg); }
.clients-logos-wrap {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  margin-top: 40px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.clients-logos-wrap img { width: 100%; height: auto; display: block; }

@media (max-width: 600px) {
  .clients-logos-wrap { padding: 20px 16px; }
}