/* ══════════════════════════════════════════════════════
   WORKCENTER — COMPONENTES CSS
   Extraído do indexs.html — manter sincronizado
   ══════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  border-color: var(--glass-border-2);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.nav-brand {
  font-family: var(--font-display); font-weight: 900; font-size: 20px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--wc-light-900);
  display: flex; align-items: center; gap: 12px;
  /* Safari: força nova camada de compositing para renderizar imagens dentro de backdrop-filter */
  transform: translateZ(0); -webkit-transform: translateZ(0);
}
.nav-brand span { color: var(--wc-green-400); }
.nav-brand-logo { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transform: translateZ(0); -webkit-transform: translateZ(0); }
.nav-brand-logo img { width: 36px; height: 36px; object-fit: contain; display: block; }
/* Logo texto: dimensões explícitas para evitar colapso no Safari */
.nav-brand > img { height: 32px; width: auto; flex-shrink: 0; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links li { display: flex; align-items: center; }
.nav-links a {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--wc-light-600);
  padding: 8px 14px; border-radius: 9999px;
  transition: all 0.2s var(--ease-out);
}
.nav-links a:hover { color: var(--wc-light-900); background: rgba(0,0,0,0.04); }

.nav-cta-wrap { display: flex; align-items: center; }
.nav-cta {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--wc-green-600), var(--wc-green-500));
  color: #fff; padding: 10px 20px; border-radius: 9999px;
  box-shadow: 0 2px 16px rgba(46,173,46,0.3);
  transition: all 0.3s var(--ease-spring);
  display: flex; align-items: center; gap: 8px;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 24px rgba(46,173,46,0.4); }
.nav-cta svg { width: 14px; height: 14px; }

.nav-toggle {
  display: none; width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 5px; z-index: 1002;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--wc-light-800);
  border-radius: 2px; transition: all 0.3s var(--ease-out); transform-origin: center;
}
.nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════
   HERO CAROUSEL
   ══════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 7; max-height: 85vh;
  width: 100vw; margin-left: calc(-50vw + 50%);
}
.hero-carousel { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1); }
.hero-slide.active { opacity: 1; }
.hero-slide picture { display: block; width: 100%; height: 100%; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1); transition: transform 4.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.hero-slide.active img { transform: scale(1.04); }
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.hero-dots {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.25); backdrop-filter: blur(8px);
  padding: 10px 14px; border-radius: 9999px;
}
.hero-dot {
  width: 10px !important; height: 10px !important;
  min-width: 0 !important; min-height: 0 !important;
  max-width: 10px !important; max-height: 10px !important;
  border-radius: 50% !important; padding: 0 !important; margin: 0 !important;
  appearance: none !important; -webkit-appearance: none !important;
  background: rgba(255,255,255,0.4) !important;
  border: 1.5px solid rgba(255,255,255,0.7) !important;
  cursor: pointer; transition: all 0.4s var(--ease-out);
  display: block !important; flex-shrink: 0; line-height: 1; font-size: 0;
}
.hero-dot.active {
  width: 28px !important; max-width: 28px !important; border-radius: 5px !important;
  background: var(--wc-green-400) !important; border-color: var(--wc-green-400) !important;
  box-shadow: 0 0 12px rgba(46,173,46,0.5);
}
.main-content { display: block; }

/* Hero H1 — homepage */
.hero-homepage {
  position: absolute; bottom: 80px; left: 0; right: 0;
  z-index: 3; text-align: center; pointer-events: none; padding: 0 24px;
}
.hero-homepage-h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(20px, 3vw, 44px); line-height: 1.2;
  color: var(--wc-light-900); margin: 0 0 6px;
}
.hero-homepage-tagline {
  font-size: clamp(11px, 1.1vw, 14px); font-weight: 500;
  color: var(--wc-light-700); margin: 0; letter-spacing: 0.4px;
}
@media (max-width: 640px) {
  .hero-homepage {
    bottom: 48px;
  }
  .hero-homepage-h1 {
    font-size: clamp(15px, 5vw, 20px);
    text-shadow: 0 1px 6px rgba(0,0,0,0.75);
  }
  .hero-homepage-tagline {
    font-size: 11px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.65);
  }
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 9999px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--wc-green-400);
  margin-bottom: 32px; animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--wc-green-400);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(44px, 7vw, 88px); line-height: 1.02;
  letter-spacing: -2px; color: var(--wc-light-900); margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}
.hero-title .line { display: block; }
.hero-title .gradient {
  background: linear-gradient(135deg, var(--wc-green-400), var(--wc-emerald-400), var(--wc-green-300));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
  font-size: clamp(16px, 2vw, 20px); color: var(--wc-light-600);
  max-width: 580px; line-height: 1.7; margin-bottom: 40px;
  animation: fadeUp 0.8s var(--ease-out) 0.6s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  animation: fadeUp 0.8s var(--ease-out) 0.8s both;
}
.btn-primary {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--wc-green-600), var(--wc-green-500));
  color: #fff; padding: 16px 32px; border-radius: 12px;
  box-shadow: 0 4px 20px rgba(46,173,46,0.3);
  transition: all 0.3s var(--ease-spring);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(46,173,46,0.4); }
.btn-primary svg { width: 18px; height: 18px; }
.btn-secondary {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  background: transparent; color: var(--wc-green-400);
  border: 1px solid rgba(46,173,46,0.3);
  padding: 16px 32px; border-radius: 12px;
  transition: all 0.3s var(--ease-out);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-secondary:hover { background: rgba(46,173,46,0.08); border-color: var(--wc-green-500); transform: translateY(-2px); }
.btn-secondary svg { width: 18px; height: 18px; }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp 0.8s var(--ease-out) 1.2s both;
}
.hero-scroll-text {
  font-family: var(--font-display); font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--wc-light-400);
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--wc-light-400), transparent);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--wc-green-400));
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0% { top: -100%; } 100% { top: 100%; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ══════════════════════════════════════════════════════
   METRICS BAR
   ══════════════════════════════════════════════════════ */
.metrics {
  padding: 80px 0;
  border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);
  background: var(--wc-light-100); position: relative;
}
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.metric { text-align: center; padding: 24px 16px; position: relative; }
.metric::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%;
  width: 1px; background: var(--glass-border);
}
.metric:last-child::after { display: none; }
.metric-number {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px);
  font-weight: 900; color: var(--wc-light-900); line-height: 1; margin-bottom: 8px;
}
.metric-number .counter { display: inline; }
.metric-number .suffix { font-size: 0.5em; color: var(--wc-green-400); font-weight: 700; }
.metric-label {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--wc-light-500);
}

/* ══════════════════════════════════════════════════════
   SECTION COMMON
   ══════════════════════════════════════════════════════ */
.section { padding: clamp(80px, 10vw, 120px) 0; position: relative; }
.section-dark { background: var(--wc-light-100); }
.section-darker { background: var(--wc-light-50); }
.section-alt { background: var(--wc-light-100); }
.section-tag {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--wc-green-400); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; color: var(--wc-light-900); line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 16px;
}
.section-desc {
  font-size: clamp(15px, 1.5vw, 18px); color: var(--wc-light-600);
  max-width: 580px; line-height: 1.7;
}
.section-header { margin-bottom: clamp(48px, 6vw, 80px); }
.section-header-center { text-align: center; }
.section-header-center .section-desc { margin: 0 auto; }

/* ══════════════════════════════════════════════════════
   ABOUT / SOBRE
   ══════════════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual {
  position: relative; aspect-ratio: 4/3; border-radius: 24px;
  overflow: hidden; background: var(--wc-light-200); border: 1px solid var(--glass-border);
}
.about-visual-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about-float-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border-2); border-radius: 16px;
  padding: 16px 24px; display: flex; align-items: center; gap: 16px;
}
.about-float-number { font-family: var(--font-display); font-size: 36px; font-weight: 900; color: var(--wc-green-400); line-height: 1; }
.about-float-text { font-size: 12px; color: var(--wc-light-700); line-height: 1.4; }
.about-content { display: flex; flex-direction: column; gap: 24px; }
.about-content p { font-size: 16px; color: var(--wc-light-700); line-height: 1.8; }
.about-content p strong { color: var(--wc-light-900); font-weight: 600; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; border-radius: 12px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  transition: all 0.3s var(--ease-out);
}
.about-feature:hover { background: var(--glass-bg-2); border-color: var(--glass-border-2); }
.about-feature-icon {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 8px;
  background: linear-gradient(135deg, rgba(46,173,46,0.12), rgba(20,168,132,0.08));
  display: flex; align-items: center; justify-content: center;
}
.about-feature-icon svg { width: 18px; height: 18px; stroke: var(--wc-green-400); stroke-width: 1.5; fill: none; }
.about-feature-text { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--wc-light-800); }

/* ══════════════════════════════════════════════════════
   SERVICES / SOLUÇÕES
   ══════════════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.service-card {
  background: var(--wc-light-200); border: 1px solid var(--wc-light-250);
  border-radius: 20px; padding: 32px; position: relative;
  transition: all 0.4s var(--ease-out); overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--wc-green-600), var(--wc-emerald-500));
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { border-color: var(--wc-green-500); box-shadow: 0 0 40px rgba(46,173,46,0.08); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(46,173,46,0.12), rgba(20,168,132,0.06));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: all 0.4s var(--ease-out);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, rgba(46,173,46,0.2), rgba(20,168,132,0.12)); box-shadow: 0 0 24px rgba(46,173,46,0.12); }
.service-icon svg { width: 28px; height: 28px; stroke: var(--wc-green-400); stroke-width: 1.5; fill: none; transition: all 0.3s; }
.service-card:hover .service-icon svg { stroke: var(--wc-green-300); filter: drop-shadow(0 0 6px rgba(46,173,46,0.3)); }
.service-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--wc-light-900); margin-bottom: 12px; }
.service-desc { font-size: 14px; color: var(--wc-light-600); line-height: 1.7; margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag {
  font-family: var(--font-display); font-size: 9px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 9999px;
  background: rgba(46,173,46,0.08); color: var(--wc-green-400); border: 1px solid rgba(34,139,34,0.12);
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: var(--wc-green-500);
  transition: gap 0.25s var(--ease-out), color 0.2s;
}
.service-link svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.5; fill: none; transition: transform 0.25s var(--ease-out); }
.service-link:hover { color: var(--wc-green-300); gap: 10px; }
.service-link:hover svg { transform: translateX(2px); }

/* ══════════════════════════════════════════════════════
   BRANDS / PARCEIROS
   ══════════════════════════════════════════════════════ */
.brands { padding: 80px 0; background: var(--wc-light-100); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.brands-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; align-items: center; }
.brand-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 32px 24px;
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; text-align: center; transition: all 0.4s var(--ease-out);
}
.brand-card:hover { background: var(--glass-bg-2); border-color: var(--glass-border-2); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.brand-logo { height: 48px; width: 100%; display: flex; align-items: center; justify-content: center; }
.brand-logo img { max-height: 40px; max-width: 100%; object-fit: contain; filter: grayscale(100%) brightness(0.3); opacity: 0.7; transition: all 0.4s var(--ease-out); }
.brand-card:hover .brand-logo img { filter: grayscale(0%) brightness(1); opacity: 1; }
.brand-name { font-family: var(--font-display); font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--wc-light-500); }
.brand-desc { font-size: 11px; color: var(--wc-light-400); line-height: 1.4; }

/* ══════════════════════════════════════════════════════
   PORTFOLIO / CASES
   ══════════════════════════════════════════════════════ */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-card {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--wc-light-200);
  border: 1px solid var(--wc-light-250);
  transition: all 0.5s var(--ease-out);
}
.portfolio-card-bg { position: absolute; inset: 0; transition: transform 0.6s var(--ease-out); }
.portfolio-card-bg img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-card:hover .portfolio-card-bg { transform: scale(1.05); }
.portfolio-card-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
}
.portfolio-card-tag { font-family: var(--font-display); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--wc-green-300); margin-bottom: 8px; }
.portfolio-card-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.portfolio-card-meta { font-size: 13px; color: rgba(255,255,255,0.75); display: flex; flex-wrap: wrap; gap: 16px; }
.portfolio-card-meta span { display: flex; align-items: center; gap: 6px; }
.portfolio-card-meta svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.6); stroke-width: 1.5; fill: none; }

/* ══════════════════════════════════════════════════════
   SHOWROOM CTA
   ══════════════════════════════════════════════════════ */
.showroom {
  padding: 120px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--wc-light-100) 0%, var(--wc-light-200) 100%);
}
.showroom::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(46,173,46,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(20,168,132,0.06) 0%, transparent 40%);
}
.showroom-inner { position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto; }
.showroom-icon {
  width: 80px; height: 80px; border-radius: 20px; margin: 0 auto 32px;
  background: linear-gradient(135deg, rgba(46,173,46,0.15), rgba(20,168,132,0.1));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(46,173,46,0.2);
}
.showroom-icon svg { width: 40px; height: 40px; stroke: var(--wc-green-400); stroke-width: 1.2; fill: none; }
.showroom h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; color: var(--wc-light-900); margin-bottom: 16px; letter-spacing: -0.5px;
}
.showroom p { font-size: 17px; color: var(--wc-light-600); line-height: 1.7; margin-bottom: 40px; }
.showroom-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Pulse rings */
.showroom-pulse { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.showroom-pulse-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  border-radius: 50%; border: 1px solid rgba(34,139,34,0.1);
  animation: showroomExpand var(--ring-dur, 4s) linear infinite;
  animation-delay: var(--ring-delay, 0s);
}
@keyframes showroomExpand { 0% { width: 60px; height: 60px; opacity: 0.35; } 100% { width: 600px; height: 600px; opacity: 0; } }

/* ══════════════════════════════════════════════════════
   ONDE ESTAMOS
   ══════════════════════════════════════════════════════ */
.onde-estamos {
  padding: 120px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--wc-light-100) 0%, var(--wc-light-200) 100%);
}
.onde-estamos::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(46,173,46,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(20,168,132,0.06) 0%, transparent 40%);
}

/* Hero header */
.oe-hero {
  position: relative; z-index: 2; text-align: center;
  max-width: 680px; margin: 0 auto 56px;
}
.oe-hero h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; color: var(--wc-light-900); margin-bottom: 16px; letter-spacing: -0.5px;
}
.oe-hero p { font-size: 17px; color: var(--wc-light-600); line-height: 1.7; }

/* Floating decorative elements */
.oe-deco {
  position: absolute; top: -72px; left: 50%;
  width: 280px; transform: translateX(-50%); pointer-events: none;
}
.oe-deco-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--wc-green-400); top: 0; left: 8px; opacity: 0.7;
}
.oe-deco-circle {
  position: absolute; width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid rgba(46,173,46,0.25); top: 28px; left: -4px;
}

/* Location cards grid */
.oe-locations {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 840px; margin: 0 auto; position: relative; z-index: 2;
}
.oe-card {
  background: rgba(255,255,255,0.72); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border-2); border-radius: 24px;
  padding: 36px 32px; text-align: center; position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}
.oe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
  border-color: rgba(46,173,46,0.22);
}
.oe-card-badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 14px; border-radius: 100px;
  background: rgba(46,173,46,0.1); color: var(--wc-green-600);
  border: 1px solid rgba(46,173,46,0.2); margin-bottom: 20px;
}
.oe-card-badge--bsb {
  background: rgba(20,168,132,0.1); color: var(--wc-emerald-600);
  border-color: rgba(20,168,132,0.25);
}
.oe-card-icon {
  width: 60px; height: 60px; border-radius: 16px; margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(46,173,46,0.12), rgba(20,168,132,0.06));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(46,173,46,0.15);
}
.oe-card-icon svg { width: 26px; height: 26px; stroke: var(--wc-green-500); fill: none; }
.oe-card h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--wc-light-900); margin-bottom: 12px; letter-spacing: -0.3px;
}
.oe-card address {
  font-style: normal; font-size: 15px; line-height: 1.8;
  color: var(--wc-light-500); margin-bottom: 24px;
}
.oe-map-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--wc-green-600); text-decoration: none;
  border: 1.5px solid rgba(46,173,46,0.3); border-radius: 100px;
  padding: 9px 22px; transition: all 0.25s var(--ease-out);
}
.oe-map-btn:hover {
  background: rgba(46,173,46,0.07); border-color: var(--wc-green-500);
  color: var(--wc-green-500); transform: translateY(-2px);
}
.oe-map-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.testimonial {
  background: var(--glass-bg); backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border); border-radius: 20px;
  padding: 32px; transition: all 0.4s var(--ease-out);
}
.testimonial:hover { background: var(--glass-bg-2); border-color: var(--glass-border-2); transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--wc-green-400); }
.testimonial-text { font-size: 15px; color: var(--wc-light-800); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--wc-green-700), var(--wc-emerald-600));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #fff;
}
.testimonial-name { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--wc-light-900); }
.testimonial-role { font-size: 12px; color: var(--wc-light-500); }
.testimonial-source { display: flex; align-items: center; gap: 6px; margin-top: 4px; font-size: 10px; color: var(--wc-light-400); font-weight: 500; }
.testimonial-wave { height: 24px; margin-top: 16px; opacity: 0.5; }

/* ══════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 16px; overflow: hidden; transition: all 0.3s var(--ease-out);
}
.faq-item.active { background: var(--glass-bg-2); border-color: var(--glass-border-2); }
.faq-question {
  width: 100%; padding: 20px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; cursor: pointer;
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  color: var(--wc-light-800); text-align: left; transition: color 0.3s;
}
.faq-item.active .faq-question { color: var(--wc-light-900); }
.faq-question svg {
  width: 20px; height: 20px; stroke: var(--wc-light-500); stroke-width: 2; fill: none;
  flex-shrink: 0; transition: transform 0.4s var(--ease-out), stroke 0.3s;
}
.faq-item.active .faq-question svg { transform: rotate(45deg); stroke: var(--wc-green-400); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-answer-inner { padding: 0 24px 20px; font-size: 14px; color: var(--wc-light-600); line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   CONTACT / BUDGET FORM
   ══════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  background: linear-gradient(135deg, rgba(46,173,46,0.12), rgba(20,168,132,0.06));
  display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 22px; height: 22px; stroke: var(--wc-green-400); stroke-width: 1.5; fill: none; }
.contact-item-label { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--wc-light-500); margin-bottom: 4px; }
.contact-item-value { font-size: 16px; color: var(--wc-light-900); font-weight: 500; }
.contact-item-sub { font-size: 13px; color: var(--wc-light-500); margin-top: 2px; }
.contact-form {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 40px; backdrop-filter: blur(16px);
}
.form-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--wc-light-900); margin-bottom: 8px; }
.form-subtitle { font-size: 14px; color: var(--wc-light-500); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row-full { margin-bottom: 16px; }
.form-group label { display: block; font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--wc-light-600); margin-bottom: 8px; }
.form-input {
  width: 100%; background: var(--wc-light-200); border: 1px solid var(--wc-light-300);
  border-radius: 10px; padding: 14px 16px; font-family: var(--font-body);
  font-size: 14px; color: var(--wc-light-900); outline: none; transition: all 0.2s var(--ease-out);
}
.form-input::placeholder { color: var(--wc-light-400); }
.form-input:focus { border-color: var(--wc-green-500); box-shadow: 0 0 0 3px rgba(46,173,46,0.12); }
.form-input.invalid { border-color: #e74c3c; box-shadow: 0 0 0 3px rgba(231,76,60,0.12); }
.form-input.valid   { border-color: var(--wc-green-500); box-shadow: 0 0 0 3px rgba(46,173,46,0.10); }
.form-error-msg { display: block; font-size: 11px; color: #e74c3c; margin-top: 5px; font-weight: 500; }
textarea.form-input { min-height: 100px; resize: vertical; }
select.form-input { appearance: none; cursor: pointer; }
.form-submit {
  width: 100%; margin-top: 8px;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--wc-green-600), var(--wc-green-500));
  color: #fff; padding: 18px; border-radius: 12px; border: none;
  box-shadow: 0 4px 20px rgba(46,173,46,0.25);
  cursor: pointer; transition: all 0.3s var(--ease-spring);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(46,173,46,0.35); }
.form-submit:disabled { opacity: 0.75; cursor: not-allowed; transform: none; }
.form-spinner {
  width: 18px; height: 18px; display: inline-block; vertical-align: middle;
  animation: formSpin 0.7s linear infinite;
}
@keyframes formSpin { to { transform: rotate(360deg); } }

/* ── Card de sucesso ── */
.form-success {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 48px 32px; min-height: 320px; justify-content: center;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.form-success.form-success-visible { opacity: 1; transform: translateY(0); }
.form-success-icon {
  width: 72px; height: 72px; color: var(--wc-green-500); margin-bottom: 24px;
}
.form-success-circle {
  stroke-dasharray: 152; stroke-dashoffset: 152;
  transition: stroke-dashoffset 0.55s var(--ease-out);
}
.form-success-check {
  stroke-dasharray: 38; stroke-dashoffset: 38;
  transition: stroke-dashoffset 0.4s var(--ease-out) 0.5s;
}
.form-success-visible .form-success-circle { stroke-dashoffset: 0; }
.form-success-visible .form-success-check  { stroke-dashoffset: 0; }
.form-success-title {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  color: var(--wc-light-900); margin: 0 0 12px;
}
.form-success-msg {
  font-size: 15px; color: var(--wc-light-500); line-height: 1.7; margin: 0 0 32px;
}
.form-success-msg strong { color: var(--wc-light-700); }
.form-success-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff; padding: 12px 24px; border-radius: 9999px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.3px;
  transition: all 0.25s var(--ease-out);
}
.form-success-wa:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.footer { background: var(--wc-light-50); border-top: 1px solid var(--glass-border); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .footer-brand-logo img { width: 36px; height: 36px; object-fit: contain; }
.footer-brand .footer-brand-text img { height: 32px; object-fit: contain; }
.footer-desc { font-size: 14px; color: var(--wc-light-500); line-height: 1.7; margin-bottom: 24px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease-out);
}
.footer-social a:hover { background: var(--glass-bg-2); border-color: var(--wc-green-500); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; stroke: var(--wc-light-600); stroke-width: 1.5; fill: none; }
.footer-social a:hover svg { stroke: var(--wc-green-400); }
.footer-col-title { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--wc-light-700); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; list-style: none; margin: 0; padding: 0; }
.footer-col li { list-style: none; margin: 0; padding: 0; }
.footer-col a { font-size: 14px; color: var(--wc-light-500); transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-col a:hover { color: var(--wc-green-400); }
/* Cidades atendidas */
.footer-cities { border-top: 1px solid var(--glass-border); padding: 20px 0 24px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-cities-label { font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--wc-light-400); white-space: nowrap; }
.footer-cities-list { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-city-chip { font-size: 12px; color: var(--wc-light-500); background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); border-radius: 20px; padding: 4px 12px; transition: color 0.2s, border-color 0.2s; }
a.footer-city-chip--link { color: var(--wc-green-400); border-color: rgba(46,173,46,0.25); }
a.footer-city-chip--link:hover { color: var(--wc-green-300); border-color: rgba(46,173,46,0.5); background: rgba(46,173,46,0.06); }
.footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: var(--wc-light-400); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--wc-light-400); transition: color 0.2s; }
.footer-legal a:hover { color: var(--wc-light-700); }

/* ══════════════════════════════════════════════════════
   WHATSAPP FLOATING
   ══════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #128C7E, #25D366);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all 0.3s var(--ease-spring); cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-float::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3); animation: waPulse 2s infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }

/* ══════════════════════════════════════════════════════
   AUDIO VISUAL EFFECTS
   ══════════════════════════════════════════════════════ */
.wave-divider { position: relative; width: 100%; height: 80px; overflow: hidden; }
.wave-divider canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.metric-eq { display: flex; align-items: flex-end; justify-content: center; gap: 3px; height: 32px; margin-bottom: 12px; opacity: 0.6; }
.metric-eq-bar { width: 3px; border-radius: 2px; background: linear-gradient(to top, var(--wc-green-600), var(--wc-green-400)); animation: eqBounce var(--eq-speed, 0.6s) ease-in-out infinite alternate; }
@keyframes eqBounce { 0% { height: var(--eq-min, 4px); } 100% { height: var(--eq-max, 16px); } }
.service-freq { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; overflow: hidden; opacity: 0; transition: opacity 0.5s; }
.service-card:hover .service-freq { opacity: 1; }
.service-freq-canvas { width: 100%; height: 100%; }
.audio-spectrum-strip { width: 100%; height: 48px; margin-bottom: 48px; position: relative; }
.audio-spectrum-strip canvas { width: 100%; height: 100%; border-radius: 12px; }
.sound-particles-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5; width: 100%; height: 100%; display: block; }
.footer-audio-strip { width: 100%; height: 32px; margin-bottom: 32px; opacity: 0.3; }
.footer-audio-strip canvas { width: 100%; height: 100%; }

/* ══════════════════════════════════════════════════════
   PÁGINA DE SERVIÇO (template page-servico.php)
   ══════════════════════════════════════════════════════ */
.service-page-hero {
  padding: 120px 0 56px;
  background: linear-gradient(135deg, var(--wc-light-100) 0%, var(--wc-light-50) 100%);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}
.service-page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(46,173,46,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(20,168,132,0.04) 0%, transparent 40%);
}
.service-page-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.service-page-hero + .section { padding-top: 64px; }
.service-page-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 9999px;
  background: rgba(46,173,46,0.08); border: 1px solid rgba(46,173,46,0.2);
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--wc-green-500);
  margin-bottom: 24px;
}
.service-page-title {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px);
  font-weight: 900; color: var(--wc-light-900); line-height: 1.05;
  letter-spacing: -1.5px; margin-bottom: 20px;
}
.service-page-desc {
  font-size: clamp(16px, 1.8vw, 20px); color: var(--wc-light-600);
  line-height: 1.7; margin-bottom: 40px; max-width: 600px;
}
.service-page-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 32px;
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--wc-light-400);
}
.breadcrumb a { color: var(--wc-light-400); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--wc-green-400); }
.breadcrumb-sep { color: var(--wc-light-300); }
.breadcrumb-current { color: var(--wc-green-500); }

/* Benefits grid */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 28px); }
.benefit-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 28px; transition: all 0.3s var(--ease-out);
}
.benefit-card:hover { background: var(--glass-bg-2); border-color: var(--glass-border-2); transform: translateY(-4px); }
.benefit-icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(46,173,46,0.12), rgba(20,168,132,0.06));
  display: flex; align-items: center; justify-content: center;
}
.benefit-icon svg { width: 24px; height: 24px; stroke: var(--wc-green-400); stroke-width: 1.5; fill: none; }
.benefit-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--wc-light-900); margin-bottom: 8px; }
.benefit-desc { font-size: 14px; color: var(--wc-light-600); line-height: 1.7; }

/* Contact strip */
.contact-strip {
  background: var(--wc-light-100); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);
  padding: 48px 0;
}
.contact-strip-inner { display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; align-items: center; }
.contact-strip-item { display: flex; align-items: center; gap: 12px; }
.contact-strip-item svg { width: 20px; height: 20px; stroke: var(--wc-green-400); stroke-width: 1.5; fill: none; flex-shrink: 0; }
.contact-strip-label { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--wc-light-400); }
.contact-strip-value { font-size: 15px; color: var(--wc-light-800); font-weight: 500; }

/* CTA Final banner */
.cta-banner {
  background: linear-gradient(135deg, var(--wc-green-800), var(--wc-green-700), var(--wc-emerald-700));
  padding: clamp(64px,8vw,100px) 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.cta-banner-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-banner h2 {
  font-family: var(--font-display); font-size: clamp(28px,4vw,48px);
  font-weight: 900; color: #fff; letter-spacing: -1px; margin-bottom: 16px;
}
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 40px; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  background: #fff; color: var(--wc-green-800);
  padding: 16px 32px; border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.3s var(--ease-spring);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.25); }
.btn-white-outline {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 16px 32px; border-radius: 12px;
  transition: all 0.3s var(--ease-out);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════════════════════════
   SERVIÇO — HERO 2 COLUNAS
   ══════════════════════════════════════════════════════ */
.service-hero {
  background: linear-gradient(135deg, var(--wc-light-100) 0%, var(--wc-green-50) 100%);
  padding: clamp(100px, 12vw, 140px) 0 clamp(64px, 8vw, 100px);
  position: relative; overflow: hidden;
}
.service-hero::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,173,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.service-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "breadcrumb visual"
    "content    visual";
  gap: 0 clamp(40px, 6vw, 80px);
  align-items: start;
}
.service-hero-breadcrumb { grid-area: breadcrumb; align-self: end; padding-bottom: 20px; padding-top: clamp(20px, 3vw, 40px); }
.service-hero-content    { grid-area: content; }
.service-hero-visual     { grid-area: visual; align-self: center; }
.service-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 9999px;
  background: rgba(46,173,46,0.08); border: 1px solid rgba(46,173,46,0.2);
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--wc-green-600);
  margin-bottom: 24px;
}
.service-hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--wc-green-500); display: inline-block;
}
.service-hero-content h1 {
  font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900; color: var(--wc-light-900); line-height: 1.07;
  letter-spacing: -1.5px; margin-bottom: 20px;
}
.service-hero-content h1 .gradient {
  background: linear-gradient(135deg, var(--wc-green-600), var(--wc-emerald-400), var(--wc-green-400));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.service-hero-desc {
  font-size: clamp(16px, 1.8vw, 19px); color: var(--wc-light-600);
  line-height: 1.75; margin-bottom: 36px; max-width: 520px;
}
.service-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.service-hero-visual {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12); aspect-ratio: 4/3;
}
.service-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.service-hero-visual-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(16px);
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.service-hero-visual-badge-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--wc-green-600), var(--wc-green-500));
  display: flex; align-items: center; justify-content: center;
}
.service-hero-visual-badge-icon svg { width: 18px; height: 18px; stroke: #fff; stroke-width: 1.8; fill: none; }
.service-hero-visual-badge-num {
  font-family: var(--font-display); font-size: 24px; font-weight: 900; color: var(--wc-light-900); line-height: 1;
}
.service-hero-visual-badge-label { font-size: 11px; color: var(--wc-light-500); margin-top: 2px; }

/* ══════════════════════════════════════════════════════
   SERVIÇO — SISTEMAS INTEGRADOS
   ══════════════════════════════════════════════════════ */
.systems-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.system-item {
  display: flex; align-items: flex-start; gap: 20px;
  background: var(--wc-light-50); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 24px; transition: all 0.3s var(--ease-out);
}
.system-item:hover { border-color: var(--wc-green-200); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.system-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 12px;
  background: var(--wc-green-50); border: 1px solid var(--wc-green-100);
  display: flex; align-items: center; justify-content: center;
}
.system-icon svg { width: 22px; height: 22px; stroke: var(--wc-green-600); stroke-width: 1.8; fill: none; }
.system-item--img {
  flex-direction: column; gap: 0; padding: 0; overflow: hidden;
}
.system-item--img:last-child:nth-child(odd) { grid-column: 1 / -1; justify-self: center; width: calc(50% - 12px); }
.system-img { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; }
.system-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s var(--ease-out); }
.system-item--img:hover .system-img img { transform: scale(1.04); }
.system-body { padding: 20px; }
.system-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--wc-light-900); margin-bottom: 6px; }
.system-desc { font-size: 13px; color: var(--wc-light-500); line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   SERVIÇO — PROCESSO 4 ETAPAS
   ══════════════════════════════════════════════════════ */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--wc-green-200), var(--wc-emerald-300), var(--wc-green-200));
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--wc-green-600), var(--wc-green-500));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 800; color: #fff;
  box-shadow: 0 8px 24px rgba(46,173,46,0.3);
}
.process-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--wc-light-900); margin-bottom: 8px; }
.process-desc { font-size: 13px; color: var(--wc-light-500); line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   SERVIÇO — MARCAS (CHIPS)
   ══════════════════════════════════════════════════════ */
.brands-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px; margin-top: 8px;
}
.brand-chip {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 12px 24px; border-radius: 12px;
  background: var(--wc-light-50); border: 1px solid var(--glass-border-2);
  color: var(--wc-light-600); transition: all 0.3s var(--ease-out);
}
.brand-chip:hover { border-color: var(--wc-green-400); color: var(--wc-green-700); background: var(--wc-green-50); transform: translateY(-3px); }

/* ══════════════════════════════════════════════════════
   SERVIÇO — SERVIÇOS RELACIONADOS
   ══════════════════════════════════════════════════════ */
.related-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.related-card {
  background: var(--wc-light-50); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 20px 16px; text-align: center; text-decoration: none;
  transition: all 0.3s var(--ease-out);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.related-card:hover { transform: translateY(-4px); border-color: var(--wc-green-300); box-shadow: 0 12px 36px rgba(0,0,0,0.07); }
.related-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--wc-green-50); border: 1px solid var(--wc-green-100);
  display: flex; align-items: center; justify-content: center;
}
.related-icon svg { width: 22px; height: 22px; stroke: var(--wc-green-600); stroke-width: 1.8; fill: none; }
.related-label { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--wc-light-700); }

/* ══════════════════════════════════════════════════════
   SERVIÇO — CONTACT STRIP (ícone com div)
   ══════════════════════════════════════════════════════ */
.contact-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-strip-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 12px;
  background: var(--wc-green-50); display: flex; align-items: center; justify-content: center;
}
.contact-strip-icon svg { width: 22px; height: 22px; stroke: var(--wc-green-600); stroke-width: 1.8; fill: none; }

/* ══════════════════════════════════════════════════════
   MOBILE — MEDIA QUERIES CONSOLIDADAS
   ══════════════════════════════════════════════════════ */


/* ── 1024px — Tablet / Hamburger menu ── */
@media (max-width: 1024px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .nav-toggle { display: flex; }
  .nav.nav-open, .nav.nav-open.scrolled {
    background: #FFFFFF; backdrop-filter: none; -webkit-backdrop-filter: none;
    height: 100vh; height: 100dvh; border-bottom: none; box-shadow: none;
  }
  .nav.nav-open .nav-links {
    display: flex; flex-direction: column; align-items: center;
    position: absolute; top: 72px; left: 0; right: 0; bottom: 0;
    padding: 16px clamp(20px, 4vw, 40px) 0; overflow-y: auto; gap: 0;
  }
  .nav.nav-open .nav-links li { width: 100%; text-align: center; }
  .nav.nav-open .nav-links li a {
    display: flex; align-items: center; justify-content: center;
    padding: 16px 0; font-size: 18px; font-weight: 500;
    color: var(--wc-light-800); border-bottom: 1px solid var(--glass-border);
    transition: color 0.3s; min-height: 52px;
  }
  .nav.nav-open .nav-links li a:hover,
  .nav.nav-open .nav-links li a:active { color: var(--wc-green-600); }
  .nav.nav-open .nav-cta-wrap {
    display: flex; justify-content: center;
    position: absolute; left: 0; right: 0; bottom: 40px;
  }
  .nav.nav-open .nav-cta-wrap .nav-cta { font-size: 16px; padding: 14px 32px; }
}

/* ── 900px ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-height: 320px; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── 768px — Mobile ── */
@media (max-width: 768px) {
  .main-content { display: flex; flex-direction: column; }
  .hero        { order: 1; }
  #solucoes    { order: 2; }
  #parceiros   { order: 3; }
  .wave-divider { display: none; order: 99; }
  .metrics     { order: 4; }
  #sobre       { order: 5; }
  #portfolio   { order: 6; }
  .onde-estamos { order: 7; }
  #depoimentos { order: 8; }
  #faq         { order: 9; }
  #contato     { order: 10; }
  .service-hero-inner { display: flex; flex-direction: column; }
  .service-hero-breadcrumb { order: 1; }
  .service-hero-visual { display: block; order: 2; margin-bottom: 24px; }
  .service-hero-visual-badge { display: none; }
  .service-hero-content { order: 3; }
  .service-hero-desc { max-width: 100%; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .systems-grid { grid-template-columns: 1fr; }
  .system-item--img:last-child:nth-child(odd) { grid-column: auto; width: 100%; justify-self: auto; }
  .contact-strip-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { aspect-ratio: 1 / 1; max-height: 100vw; min-height: auto; width: 100%; margin-left: 0; }
  .hero-slide img { object-position: center center; }
  .hero-scroll { display: none; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .metric:nth-child(2)::after { display: none; }
  .metrics { padding: clamp(40px, 6vw, 80px) 0; }
  .section { padding: clamp(48px, 8vw, 80px) 0; }
  .onde-estamos { padding: clamp(56px, 8vw, 120px) 0; }
  .oe-locations { grid-template-columns: 1fr; max-width: 440px; }
  .brands { padding: clamp(48px, 6vw, 80px) 0; }
  .contact-form { padding: clamp(20px, 4vw, 40px); }
  .contact-grid { gap: 28px; }
  .footer-grid { gap: 24px; }
  .sound-particles-canvas { display: none; }
}

/* ── 640px ── */
@media (max-width: 640px) {
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card-content { padding: 20px; }
  .portfolio-card-title { font-size: 17px; }
  .section-title { letter-spacing: -0.5px; }
  .showroom-actions { flex-direction: column; align-items: center; gap: 12px; }
  .showroom-actions .btn-primary, .showroom-actions .btn-secondary { width: 100%; max-width: 360px; justify-content: center; }
  .service-page-actions { flex-direction: column; }
  .service-page-actions .btn-primary, .service-page-actions .btn-secondary { width: 100%; justify-content: center; }
  .service-hero-actions { flex-direction: column; }
  .service-hero-actions .btn-primary, .service-hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-actions .btn-white, .cta-banner-actions .btn-white-outline { width: 100%; max-width: 360px; justify-content: center; }
}

/* ══════════════════════════════════════════════════════
   TOAST NOTIFICATION
   ══════════════════════════════════════════════════════ */
.wc-toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--wc-light-900); color: #fff;
  padding: 14px 24px; border-radius: 9999px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  opacity: 0; pointer-events: none; z-index: 9999;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  white-space: nowrap; max-width: calc(100vw - 40px);
}
.wc-toast.wc-toast-show {
  opacity: 1; transform: translateX(-50%) translateY(0);
}
.wc-toast.wc-toast-error {
  background: #b91c1c;
}

/* ── 540px ── */
@media (max-width: 540px) {
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-desc { max-width: 100%; }
  .testimonial { padding: 22px 18px; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .service-link { min-height: 44px; display: inline-flex; align-items: center; padding: 4px 0; }
  .service-card { padding: 22px 18px; }
  .hero-dot { width: 12px; height: 12px; }
  .metric { padding: 16px 8px; }
  .metric-label { font-size: 10px; letter-spacing: 1px; }
  .contact-item { flex-direction: column; gap: 10px; }
  .contact-item-icon { width: 40px; height: 40px; }
  .faq-question { padding: 16px 18px; font-size: 14px; }
  .faq-answer-inner { padding: 0 18px 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-legal { gap: 16px; }
}

/* ── 380px ── */
@media (max-width: 380px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .brand-card { padding: 18px 12px; }
  .nav-brand img:last-child { display: none; }
  .whatsapp-float { bottom: 16px; right: 16px; }
  .contact-form { padding: 16px; }
  .form-submit { font-size: 13px; padding: 16px; }
}
