/* ═══════════════════════════════════════════════════════════════
   PRIME BLINDAGEM v2 — style.css
   Brand: Montserrat · #8AC547 green · Light theme (hero/cta/footer dark)
═══════════════════════════════════════════════════════════════ */

:root {
  --green: #8AC547;
  --green-dark: #6a9e30;
  --green-deep: #4d7a1f;
  --green-glow: rgba(138,197,71,0.15);
  --green-subtle: rgba(138,197,71,0.10);
  --green-border: rgba(138,197,71,0.35);

  /* Light theme (main site ~90%) */
  --bg: #ffffff;
  --bg-alt: #f4f6f2;
  --bg-card: #f7f8f5;
  --bg-card-hover: #eef1ea;
  --border: rgba(20,25,15,0.10);

  --text: #1c1f18;
  --text-muted: #5f6560;
  --text-dim: #9aa09a;

  /* Dark anchors (hero, cta, footer) */
  --dark-bg: #141414;
  --dark-bg-2: #1c1c1c;
  --dark-card: #222222;
  --dark-border: rgba(255,255,255,0.10);
  --dark-text: #f0f0f0;
  --dark-text-muted: #9a9a9a;

  --font: 'Montserrat', sans-serif;
  --r: 8px;
  --r-lg: 16px;
  --nav-h: 84px;
  --section-py: clamp(80px, 10vw, 140px);
  --ease: cubic-bezier(0.16,1,0.3,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }

:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 2px; }

/* ─── CONTAINER ──────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px,5vw,60px); }

/* ─── SHARED ─────────────────────────────────────────────────── */
.section { padding: var(--section-py) 0; position: relative; overflow: hidden; }
.section--dark { background: var(--bg-alt); }

.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.title {
  font-size: clamp(1.8rem,4vw,2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-sub { font-size: 0.95rem; color: var(--text-muted); max-width: 520px; line-height: 1.7; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; max-width: 600px; }
.section-head.center .section-sub { margin: 0 auto; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--primary { background: var(--green); color: #111; }
.btn--primary:hover { background: #9dd94a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(138,197,71,0.3); }
.btn--outline { border: 1px solid var(--border); color: var(--text); background: transparent; }
.btn--outline:hover { border-color: var(--green); color: var(--green-deep); transform: translateY(-2px); }
.hero .btn--outline, .cta .btn--outline { border-color: var(--dark-border); color: var(--dark-text); }
.hero .btn--outline:hover, .cta .btn--outline:hover { border-color: var(--green); color: var(--green); }
.btn--full { width: 100%; justify-content: center; }

/* ─── NAV ────────────────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  z-index: 100; transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled { background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); border-bottom-color: var(--border); box-shadow: 0 2px 20px rgba(0,0,0,0.04); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }

.nav__logo { display: flex; align-items: center; }
.nav__logo-img { height: 64px; width: auto; }
.nav__logo-text { font-size: 0.95rem; letter-spacing: 0.06em; gap: 6px; align-items: center; }
.nav__logo-text strong { color: var(--green); }

.nav__links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav__link {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted); transition: color 0.2s; position: relative;
}
.nav__link::after { content:''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1.5px; background: var(--green); transition: width 0.25s var(--ease); }
.nav__link:hover, .nav__link.active { color: var(--text); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link--cta { background: var(--green); color: #111; padding: 8px 18px; border-radius: var(--r); }
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: #9dd94a; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; z-index: 101; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; transform-origin: center; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero { min-height: 100vh; display: flex; flex-direction: column; position: relative; background: var(--dark-bg); color: var(--dark-text); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.hero__glow--1 { width: 500px; height: 500px; background: rgba(138,197,71,0.1); top: -80px; right: -80px; }
.hero__glow--2 { width: 350px; height: 350px; background: rgba(138,197,71,0.06); bottom: 20%; left: -60px; }

.hero__content { position: relative; z-index: 2; text-align: center; padding-top: calc(var(--nav-h) + 48px); }
.hero__label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.hero__title { font-size: clamp(2rem,5vw,3.4rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 18px; }
.hero__title span { color: var(--green); }
.hero__sub { font-size: clamp(0.9rem,1.5vw,1.05rem); color: var(--dark-text-muted); max-width: 560px; margin: 0 auto 28px; line-height: 1.7; }
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; padding-bottom: 64px; }

/* Hero car with hotspots */
.hero__car { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; padding: 32px 0; }
.hero__car-wrap { position: relative; width: 100%; max-width: 820px; margin: 0 auto; aspect-ratio: 16/7; overflow: visible; }
.hero__car-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; }

.hotspot { position: absolute; z-index: 3; }
.hotspot__dot {
  display: block; width: 14px; height: 14px; border-radius: 50%;
  background: var(--green); border: 2px solid rgba(255,255,255,0.8);
  cursor: pointer; position: relative; z-index: 1;
  animation: hotspotPulse 2.5s ease-in-out infinite;
}
.hotspot__dot::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 1.5px solid rgba(138,197,71,0.4); animation: hotspotRing 2.5s ease-in-out infinite;
}
@keyframes hotspotPulse { 0%,100%{ transform: scale(1); } 50%{ transform: scale(1.15); } }
@keyframes hotspotRing { 0%,100%{ transform: scale(1); opacity:1; } 50%{ transform: scale(1.6); opacity:0; } }

.hotspot__label {
  position: absolute; white-space: nowrap;
  background: rgba(20,20,20,0.92); border: 1px solid var(--green-border);
  backdrop-filter: blur(8px); padding: 6px 12px; border-radius: var(--r);
  font-size: 0.72rem; font-weight: 600; color: var(--green);
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.hotspot__label--right { left: calc(100% + 10px); top: 50%; transform: translateY(-50%); }
.hotspot__label--top { bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%); }
.hotspot__label--left { right: calc(100% + 10px); top: 50%; transform: translateY(-50%); }
.hotspot__label--bottom { top: calc(100% + 10px); left: 50%; transform: translateX(-50%); }
.hotspot:hover .hotspot__label { opacity: 1; }

.hotspot__label--multi {
  white-space: normal; text-align: center; display: flex; flex-direction: column; gap: 2px;
  min-width: 150px; padding: 8px 14px;
}
.hotspot__label--multi strong { color: var(--green); font-size: 0.74rem; font-weight: 700; }
.hotspot__label--multi span { color: var(--text-muted); font-size: 0.65rem; font-weight: 500; }

/* Stats */
.hero__stats { position: relative; z-index: 2; border-top: 1px solid var(--dark-border); background: var(--dark-bg-2); backdrop-filter: blur(10px); }
.hero__stats-inner { display: flex; align-items: center; justify-content: center; padding: 20px 0; gap: 40px; }
.hero__stat { flex: 0 0 auto; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.hero__stat-sep { width: 1px; height: 40px; background: var(--dark-border); flex-shrink: 0; }
.hero__stat-value { display: flex; align-items: baseline; }
.hero__stat-num { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; color: var(--green); line-height: 1; display: inline; }
.hero__stat-plus { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; color: var(--green); line-height: 1; }
.hero__stat-label { font-size: 0.72rem; color: var(--dark-text-muted); }
.hero__stat-city { font-size: 0.72rem; color: var(--dark-text-muted); }
.hero__stat-state { font-size: 0.88rem; font-weight: 700; color: var(--dark-text); }

/* ─── SOBRE ──────────────────────────────────────────────────── */
.sobre__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.sobre__img-wrap { aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; background: linear-gradient(135deg,#e8ede2,#dfe4d8); }
.sobre__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.sobre__text-col p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.sobre__text-col p strong { color: var(--text); font-weight: 600; }

.sobre__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.badge {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); font-size: 0.78rem; color: var(--text-muted);
  transition: border-color 0.2s;
}
.badge:hover { border-color: var(--green-border); }
.badge svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* Ambient glow - sobre */
.sobre::before { content:''; position:absolute; width:480px; height:480px; border-radius:50%; filter:blur(90px); background:radial-gradient(circle,rgba(138,197,71,0.14) 0%,transparent 70%); top:-80px; right:-80px; z-index:0; pointer-events:none; }
.sobre > * { position:relative; z-index:1; }

/* ─── CARDS (Blindagem) ──────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; border-radius: var(--r-lg); overflow: hidden; }
.card {
  padding: 36px 28px; background: var(--bg-card); position: relative;
  transition: background 0.25s;
}
.card:hover { background: var(--bg-card-hover); }
.card::after { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:var(--green); transform:scaleX(0); transform-origin:left; transition: transform 0.3s var(--ease); }
.card:hover::after { transform:scaleX(1); }
.card__num { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 16px; display: block; }
.card__icon { width: 40px; height: 40px; color: var(--green); margin-bottom: 16px; }
.card__icon svg, .card__icon img { width: 40px; height: 40px; }
.card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* Ambient glow - blindagem */
.blindagem::before { content:''; position:absolute; width:400px; height:400px; border-radius:50%; filter:blur(90px); background:radial-gradient(circle,rgba(138,197,71,0.12) 0%,transparent 70%); bottom:-40px; left:-60px; z-index:0; pointer-events:none; }
.blindagem > * { position:relative; z-index:1; }

/* ─── PROCESSO (Swiper) ──────────────────────────────────────── */
.processo__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; gap: 20px; }
.processo__nav { display: flex; gap: 8px; }
.swiper-btn {
  width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.swiper-btn svg { width: 16px; height: 16px; }
.swiper-btn:hover { border-color: var(--green); color: var(--green); }

.processo__swiper .swiper-slide { height: auto; }
.proc-slide { display: flex; flex-direction: column; height: 100%; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--bg-card); }
.proc-slide__img { position: relative; aspect-ratio: 16/9; background: linear-gradient(135deg,#e8ede2,#dfe4d8); overflow: hidden; flex-shrink: 0; }
.proc-slide__img img { width:100%; height:100%; object-fit:cover; }
.proc-slide__num { position:absolute; bottom:12px; right:16px; font-size:3rem; font-weight:800; color: var(--green); line-height:1; }
.proc-slide h3 { padding: 20px 24px 8px; font-size: 1rem; font-weight: 700; }
.proc-slide p { padding: 0 24px 24px; font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

#procPag { margin-top: 20px; text-align: center; }
#procPag .swiper-pagination-bullet { width: 24px; height: 3px; border-radius: 2px; background: var(--border); opacity: 1; }
#procPag .swiper-pagination-bullet-active { background: var(--green); width: 40px; }

/* ─── MANUTENÇÃO ─────────────────────────────────────────────── */
.manut__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: center; }
.manut__text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.manut__list { display: flex; flex-direction: column; gap: 2px; }
.manut__item {
  padding: 24px 28px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); transition: border-color 0.2s, transform 0.2s var(--ease);
}
.manut__item:hover { border-color: var(--green-border); transform: translateX(4px); }
.manut__item h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.manut__item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* Ambient glow - manutenção */
.manutencao::before { content:''; position:absolute; width:400px; height:400px; border-radius:50%; filter:blur(90px); background:radial-gradient(circle,rgba(138,197,71,0.12) 0%,transparent 70%); top:0; right:-60px; z-index:0; pointer-events:none; }
.manutencao > * { position:relative; z-index:1; }

/* ─── SERVIÇOS ADICIONAIS ────────────────────────────────────── */
.servicos__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; border-radius: var(--r-lg); overflow: hidden; }
.servico-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px 28px; background: var(--bg-card);
  transition: background 0.25s;
}
.servico-card:hover { background: var(--bg-card-hover); }
.servico-card__icon { width: 38px; height: 38px; color: var(--green); flex-shrink: 0; }
.servico-card__icon svg { width: 38px; height: 38px; }
.servico-card h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 6px; }
.servico-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }
.servicos__cta { text-align: center; margin-top: 36px; }

/* Ambient glow - servicos */
.servicos::before { content:''; position:absolute; width:400px; height:400px; border-radius:50%; filter:blur(90px); background:radial-gradient(circle,rgba(138,197,71,0.12) 0%,transparent 70%); top:0; right:-60px; z-index:0; pointer-events:none; }
.servicos > * { position:relative; z-index:1; }

/* Text on image-bg sections must stay light */
.has-bg .title { color: var(--dark-text); }
.has-bg .section-sub { color: var(--dark-text-muted); }
/* Service cards on dark bg: translucent dark card so they read on the image */
.has-bg .servico-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(4px); }
.has-bg .servico-card:hover { background: rgba(255,255,255,0.09); }
.has-bg .servico-card h3 { color: var(--dark-text); }
.has-bg .servico-card p { color: var(--dark-text-muted); }
.has-bg .servicos__grid { border: 1px solid var(--dark-border); background: var(--dark-border); }
.has-bg .servico-card { box-shadow: none; }

/* Light-overlay variant (Serviços): text/cards return to light-theme dark-on-light */
.has-bg--light .title { color: var(--text); }
.has-bg--light .section-sub { color: var(--text-muted); }
.has-bg--light .servico-card { background: rgba(255,255,255,0.72); backdrop-filter: blur(4px); }
.has-bg--light .servico-card:hover { background: rgba(255,255,255,0.90); }
.has-bg--light .servico-card h3 { color: var(--text); }
.has-bg--light .servico-card p { color: var(--text-muted); }
.has-bg--light .servicos__grid { border: 1px solid var(--border); background: var(--border); }

/* ─── PORTFOLIO (Carrossel) ──────────────────────────────────── */
.portfolio__carousel-wrap { position: relative; overflow: hidden; margin-top: 8px; }
.portfolio__swiper { padding: 0 clamp(20px,5vw,60px); overflow: visible; }
.portfolio__item {
  width: auto; aspect-ratio: 4/3.6; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(135deg,#e8ede2,#dfe4d8); cursor: pointer;
}
.portfolio__item img { width:100%; height:100%; object-fit:cover; transition: transform 0.4s var(--ease); }
.portfolio__item:hover img { transform: scale(1.06); }

.portfolio__nav-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; }
.portfolio__nav-btn--prev { left: clamp(8px,2vw,24px); }
.portfolio__nav-btn--next { right: clamp(8px,2vw,24px); }

#portfolioPag { margin-top: 80px; text-align: center; }
#portfolioPag .swiper-pagination-bullet { width: 24px; height: 3px; border-radius: 2px; background: var(--border); opacity: 1; }
#portfolioPag .swiper-pagination-bullet-active { background: var(--green); width: 40px; }

.portfolio__fade {
  position: absolute; top: 0; bottom: 0; width: clamp(40px,8vw,140px);
  z-index: 2; pointer-events: none;
}
.portfolio__fade--left { left: 0; background: linear-gradient(to right, var(--bg) 0%, transparent 100%); }
.portfolio__fade--right { right: 0; background: linear-gradient(to left, var(--bg) 0%, transparent 100%); }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq__item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: border-color 0.2s; }
.faq__item.is-open { border-color: var(--green-border); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 20px 24px; text-align: left;
  font-size: 0.88rem; font-weight: 600; color: var(--text-muted);
  transition: color 0.2s;
}
.faq__q:hover, .faq__item.is-open .faq__q { color: var(--green); }
.faq__q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s var(--ease); }
.faq__item.is-open .faq__q svg { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq__item.is-open .faq__a { max-height: 200px; }
.faq__a p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; padding: 0 24px 20px; }

/* Ambient glow - faq */
.faq::before { content:''; position:absolute; width:500px; height:360px; border-radius:50%; filter:blur(90px); background:radial-gradient(ellipse,rgba(138,197,71,0.11) 0%,transparent 65%); top:50%; left:50%; transform:translate(-50%,-50%); z-index:0; pointer-events:none; }
.faq > * { position:relative; z-index:1; }

/* ─── CTA ────────────────────────────────────────────────────── */
.cta { padding: 80px 0; background: var(--dark-bg); color: var(--dark-text); border-top: 1px solid var(--dark-border); border-bottom: 1px solid var(--dark-border); position: relative; overflow: hidden; }
.cta::before { content:''; position:absolute; top:-50%; left:-10%; width:400px; height:400px; background:radial-gradient(circle,rgba(138,197,71,0.08) 0%,transparent 60%); pointer-events:none; }
.cta__inner { text-align: center; position: relative; z-index: 1; }
.cta h2 { font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 800; margin-bottom: 10px; }
.cta h2 span { color: var(--green); font-style: italic; }
.cta p { font-size: 0.95rem; color: var(--dark-text-muted); margin-bottom: 28px; }
.cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── CONTATO ────────────────────────────────────────────────── */
.contato__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contato__items { display: flex; flex-direction: column; gap: 2px; margin-top: 32px; }
.contato__item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; border: 1px solid var(--border); border-radius: var(--r);
  background: var(--bg-card); transition: border-color 0.2s;
}
.contato__item:hover { border-color: var(--green-border); }
.contato__item svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.contato__item strong { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-bottom: 2px; }
.contato__item span { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* Form */
.contato__form-col { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(24px,4vw,40px); box-shadow: 0 10px 40px rgba(20,25,15,0.06); }
.form__group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
input, textarea {
  width: 100%; background: #ffffff; border: 1px solid var(--border); border-radius: var(--r);
  padding: 11px 14px; font-family: var(--font); font-size: 0.88rem; color: var(--text);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; resize: vertical;
}
input::placeholder, textarea::placeholder { color: var(--text-dim); }
input:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(138,197,71,0.1); }
.form__msg { margin-top: 10px; font-size: 0.82rem; text-align: center; min-height: 18px; }
.form__msg.success { color: var(--green); }
.form__msg.error { color: #e05555; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--dark-bg); color: var(--dark-text); border-top: 1px solid var(--dark-border); padding: 56px 0 28px; }
.footer__top { display: flex; gap: 48px; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--dark-border); }
.footer__brand { flex: 0 0 220px; }
.footer__brand .nav__logo { margin-bottom: 14px; }
.footer__brand p { font-size: 0.82rem; color: var(--dark-text-muted); line-height: 1.6; }
.footer__nav { display: flex; gap: 40px; flex: 1; }
.footer__col { display: flex; flex-direction: column; gap: 7px; }
.footer__col strong { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; color: var(--dark-text); }
.footer__col a, .footer__col span { font-size: 0.82rem; color: var(--dark-text-muted); line-height: 1.4; }
.footer__col a:hover { color: var(--green); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 0.75rem; color: #6a6a6a; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { color: var(--dark-text-muted); transition: color 0.2s; }
.footer__social a:hover { color: var(--green); }
.footer__social svg { width: 18px; height: 18px; }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox__close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1.2rem; display: flex;
  align-items: center; justify-content: center; cursor: pointer;
}

/* ─── WPP FLOAT ──────────────────────────────────────────────── */
.wpp {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 52px; height: 52px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.wpp svg { width: 24px; height: 24px; }
.wpp:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }

/* ─── SECTION BG IMAGE + OVERLAY ─────────────────────────────── */
.has-bg { position: relative; isolation: isolate; }
.section-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--dark-bg); }
.has-bg--light .section-bg { background: var(--bg); }
.section-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.section-bg__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,18,18,0.90) 0%, rgba(18,18,18,0.82) 50%, rgba(18,18,18,0.90) 100%);
}
.has-bg--light .section-bg__overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.86) 50%, rgba(255,255,255,0.92) 100%);
}
.has-bg > .container { position: relative; z-index: 2; }
.servicos.has-bg::before { z-index: 1; }

/* ─── LIGHT THEME POLISH ─────────────────────────────────────── */
.card, .servico-card { box-shadow: 0 1px 2px rgba(20,25,15,0.03); }
.card:hover, .servico-card:hover { box-shadow: 0 8px 24px rgba(20,25,15,0.07); }
.proc-slide { box-shadow: 0 4px 20px rgba(20,25,15,0.05); }
.badge { box-shadow: 0 1px 2px rgba(20,25,15,0.03); }
.manut__item:hover, .contato__item:hover { box-shadow: 0 6px 20px rgba(20,25,15,0.06); }
/* WhatsApp float subtle ring so it pops on white */
.wpp { box-shadow: 0 4px 18px rgba(37,211,102,0.35); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2,1fr); }
  .sobre__grid, .manut__grid, .contato__grid { gap: 48px; }
}

@media (max-width: 860px) {
  .sobre__grid, .manut__grid { grid-template-columns: 1fr; }
  .sobre__img-col { max-width: 480px; }
  .cta__btns { flex-direction: column; align-items: center; }
  .footer__top { flex-direction: column; gap: 28px; }
  .footer__brand { flex: auto; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav__logo-img { height: 48px; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; align-items: center;
    gap: 24px; background: rgba(255,255,255,0.98); backdrop-filter: blur(16px);
    z-index: 99; transform: translateX(100%); transition: transform 0.4s var(--ease);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__link { font-size: 1rem; }
  
@media (max-width: 768px) {
  .header .nav { justify-content: center; }
  .header .nav__toggle { position: absolute; right: clamp(20px,5vw,60px); }
  .header .nav__logo { position: absolute; left: 50%; transform: translateX(-50%); }
}

  .hero__car-wrap { aspect-ratio: 16/8; }
  .hotspot.active .hotspot__label,
  .hotspot:hover .hotspot__label { opacity: 1; }
  .hero__stat { flex: 1 1 40%; padding: 8px 12px; }
  .hero__stats-inner { flex-wrap: wrap; justify-content: flex-start; gap: 0; }
.hero__stat:nth-child(odd) { padding-left: 24px; }
.hero__stat:nth-child(even) { padding-right: 12px; }

  .cards { grid-template-columns: 1fr; gap: 10px; }
  .card { border-radius: var(--r); }
.portfolio__nav-btn { display: none; }
  .sobre__img-col--hide-mobile { display: none; }
  .servicos__grid { grid-template-columns: 1fr; gap: 10px; }
  .servico-card { border-radius: var(--r); }
  .servicos__grid { border-radius: 0; }

  .contato__grid { grid-template-columns: 1fr; gap: 40px; }
  .form__row { grid-template-columns: 1fr; }
  .portfolio__swiper { padding: 0 16px; }
  .portfolio__fade { width: 32px; }
  .hotspot__label--multi { min-width: 130px; padding: 6px 10px; }
.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.footer__nav .footer__col:last-child {
  grid-column: 1 / -1;
  text-align: center;
}
  .footer__bottom { flex-direction: column; text-align: center; }
  .processo__nav { display: none; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(1.7rem,8vw,2.6rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .contato__form-col { padding: 20px 16px; }
}
