/* ═══════════════════════════════════════════════════════════════
   PRIME BLINDAGEM — style.css
   Dark premium automotive armoring website
   Palette: #0a0a0a bg · #8bc541 green · #517c24 green-dark
═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --green:        #8bc541;
  --green-dark:   #517c24;
  --green-glow:   rgba(139, 197, 65, 0.18);
  --green-subtle: rgba(139, 197, 65, 0.08);

  --bg:           #090909;
  --bg-2:         #0f0f0f;
  --bg-3:         #141414;
  --bg-card:      #111111;
  --bg-card-hover:#161616;

  --border:       rgba(255,255,255,0.06);
  --border-green: rgba(139,197,65,0.25);

  --text:         #f0f0f0;
  --text-muted:   #7a7a7a;
  --text-dim:     #444;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  --nav-h: 72px;
  --section-pad: clamp(80px, 10vw, 140px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none) {
  body { cursor: auto; }
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: none; font-family: inherit; }
@media (hover: none) { button { cursor: pointer; } }
details summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }

/* ─── CUSTOM CURSOR ──────────────────────────────────────────── */
.cursor,
.cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.3s;
}
.cursor {
  width: 8px; height: 8px;
  background: var(--green);
  top: -4px; left: -4px;
  mix-blend-mode: normal;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid rgba(139,197,65,0.5);
  top: -16px; left: -16px;
  transition: transform 0.12s var(--ease-out), width 0.25s var(--ease-out), height 0.25s var(--ease-out), border-color 0.25s;
}
.cursor--hover .cursor-follower {
  width: 52px; height: 52px;
  border-color: var(--green);
  top: -26px; left: -26px;
}
@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
}

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 2px; }

/* ─── FOCUS ──────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

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

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  cursor: none;
  white-space: nowrap;
}
@media (hover: none) { .btn { cursor: pointer; } }

.btn--primary {
  background: var(--green);
  color: #0a0a0a;
}
.btn--primary:hover {
  background: #9dd94a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139,197,65,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn--sm { padding: 10px 20px; font-size: 0.8rem; }
.btn--lg { padding: 16px 34px; font-size: 0.9rem; }
.btn--full { width: 100%; justify-content: center; }

.btn-loading { display: none; }
.btn.loading .btn-text { display: none; }
.btn.loading .btn-loading { display: flex; }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── SECTION SHARED ─────────────────────────────────────────── */
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--bg-2); }

.section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
font-size: clamp(1.7rem, 3.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: var(--text);
  
  margin-bottom: 24px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
}

.section-header { max-width: 660px; }
.section-header.center { text-align: center; margin: 0 auto 64px; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(9,9,9,0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}
.logo-prime { color: var(--green); }
.logo-sep {
  display: inline-block;
  width: 1px; height: 14px;
  background: var(--border);
  margin: 0 10px;
}
.logo-blind { color: var(--text); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 0.82rem;
  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: 1px;
  background: var(--green);
  transition: width 0.25s var(--ease-out);
}
.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-subtle);
  border: 1px solid var(--border-green);
  color: var(--green);
  padding: 8px 18px;
  border-radius: var(--r-sm);
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--green); color: #0a0a0a; border-color: var(--green); }

.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-out), opacity 0.3s, width 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; width: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 90svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,197,65,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,197,65,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 600px; height: 600px;
  background: rgba(139,197,65,0.12);
  top: -100px; right: -100px;
  animation: glowPulse 6s ease-in-out infinite alternate;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  background: rgba(81,124,36,0.08);
  bottom: 10%; left: -80px;
  animation: glowPulse 8s ease-in-out infinite alternate-reverse;
}
@keyframes glowPulse {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.1); }
}

.hero__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f1a08 0%, #0a0a0a 60%);
}
.hero__img {
  position: absolute;
  inset: 0;
  object-position: center right;
  opacity: 0.35;
}
.hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(9,9,9,1) 0%,
    rgba(9,9,9,0.85) 40%,
    rgba(9,9,9,0.3) 70%,
    rgba(9,9,9,0.1) 100%
  );
}



.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  padding-bottom: 40px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 660px;
}
.hero__title em {
  font-style: italic;
  color: var(--text-muted);
}
.hero__title strong { color: var(--green); }

.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 28px clamp(20px, 5vw, 60px);
  border-top: 1px solid var(--border);
  background: rgba(9,9,9,0.7);
  backdrop-filter: blur(12px);
}

.hero__stat {
  flex: 1;
  min-width: 0;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stat:first-child { padding-left: 0; }

.hero__stat-value {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.stat-num-plus {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.stat-location-city {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.stat-location-state {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.hero__scroll {
  display: none;
}

/* ─── SOBRE ──────────────────────────────────────────────────── */
.sobre__grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre__img-wrap {
  position: relative;
  aspect-ratio: 4/5;
}

.sobre__img-placeholder {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #0f1a08, #111);
}

.sobre__img-frame {
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--border-green);
  border-radius: var(--r-lg);
  z-index: -1;
}

.sobre__cert {
  position: absolute;
  bottom: 32px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  padding: 14px 20px;
  border-radius: var(--r-md);
  backdrop-filter: blur(16px);
  animation: floatY 4s ease-in-out infinite alternate;
}
.sobre__cert svg { width: 28px; height: 28px; color: var(--green); flex-shrink: 0; }
.sobre__cert strong { display: block; font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; color: var(--text); }
.sobre__cert span { font-size: 0.72rem; color: var(--text-muted); }

@keyframes floatY {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}

.sobre__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.sobre__desc strong { color: var(--text); font-weight: 500; }

.sobre__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.pillar:hover { border-color: var(--border-green); color: var(--text); }
.pillar__icon { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }
.pillar__icon svg { width: 18px; height: 18px; }

/* ─── DIFERENCIAIS ───────────────────────────────────────────── */
.dif__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.dif__card {
  position: relative;
  padding: 40px 32px;
  background: var(--bg-card);
  transition: background 0.3s;
  overflow: hidden;
}
.dif__card + .dif__card { border-left: 1px solid var(--border); }
.dif__card:hover { background: var(--bg-card-hover); }

.dif__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.dif__card:hover::before { transform: scaleX(1); }

.dif__card-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.dif__icon {
  width: 44px; height: 44px;
  color: var(--green);
  margin-bottom: 20px;
}
.dif__icon svg { width: 44px; height: 44px; }

.dif__card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.dif__card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── BLINDAGEM ──────────────────────────────────────────────── */
.blind__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 64px;
}
.blind__sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding-top: 44px;
}

.blind__swiper-wrap { position: relative; }

.blind__swiper {
  border-radius: var(--r-lg);
  overflow: hidden;
}

.blind__slide {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.blind__slide-img {
  position: relative;
  background: linear-gradient(135deg, #0d1a06, #111);
  overflow: hidden;
}
.blind__slide-img.no-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f1a08 0%, #111 100%);
}
.blind__slide-img img { transition: transform 0.6s var(--ease-out); }
.swiper-slide-active .blind__slide-img img { transform: scale(1.04); }

.blind__slide-num {
  position: absolute;
  bottom: 20px; right: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(139,197,65,0.12);
  line-height: 1;
  pointer-events: none;
}

.blind__slide-info {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blind__slide-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.blind__slide-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.blind__pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.blind__pagination .swiper-pagination-bullet {
  width: 28px; height: 3px;
  border-radius: 2px;
  background: var(--border);
  opacity: 1;
  transition: background 0.3s, width 0.3s;
}
.blind__pagination .swiper-pagination-bullet-active {
  background: var(--green);
  width: 48px;
}

.blind__nav {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 12px;
}
.blind__btn {
  width: 44px; height: 44px;
  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, background 0.2s;
  cursor: none;
}
@media (hover: none) { .blind__btn { cursor: pointer; } }
.blind__btn svg { width: 16px; height: 16px; }
.blind__btn:hover { border-color: var(--green); color: var(--green); background: var(--green-subtle); }

.cert-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding: 28px 36px;
  background: var(--green-subtle);
  border: 1px solid var(--border-green);
  border-radius: var(--r-lg);
}
.cert-strip__icon { width: 48px; height: 48px; color: var(--green); flex-shrink: 0; }
.cert-strip__icon svg { width: 48px; height: 48px; }
.cert-strip__text { flex: 1; }
.cert-strip__text strong { display: block; font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.cert-strip__text span { font-size: 0.875rem; color: var(--text-muted); }

/* ─── MANUTENÇÃO ─────────────────────────────────────────────── */
.manut__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.manut__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.manut__services {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.manut__service {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease-out);
}
.manut__service:hover {
  border-color: var(--border-green);
  background: var(--bg-card-hover);
  transform: translateX(6px);
}

.manut__service-icon {
  width: 40px; height: 40px;
  color: var(--green);
  flex-shrink: 0;
  background: var(--green-subtle);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.manut__service-icon svg { width: 24px; height: 24px; }

.manut__service h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.manut__service p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq__list {
  max-width: 820px;
  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-md);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq__item.is-open { border-color: var(--border-green); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.faq__question:hover { color: var(--green); }

.faq__icon {
  width: 20px; height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), color 0.2s;
}
.faq__icon svg { width: 20px; height: 20px; }
.faq__item.is-open .faq__icon { transform: rotate(180deg); color: var(--green); }

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s var(--ease-out);
}
.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}
.faq__answer > div {
  overflow: hidden;
}
.faq__answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 0 28px 22px;
}

/* ─── CTA STRIP ──────────────────────────────────────────────── */
.cta-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a1505 0%, #0d0d0d 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -60%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,197,65,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-strip__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
}
.cta-strip__text h2 em { font-style: italic; color: var(--green); }
.cta-strip__text p { font-size: 0.95rem; color: var(--text-muted); }

.cta-strip__actions {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── CONTATO ────────────────────────────────────────────────── */
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contato__details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 40px;
}

.contato__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-card);
  transition: border-color 0.2s, background 0.2s;
}
.contato__item:hover { border-color: var(--border-green); background: var(--bg-card-hover); }

.contato__item-icon {
  width: 36px; height: 36px;
  background: var(--green-subtle);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  padding: 8px;
}
.contato__item-icon svg { width: 20px; height: 20px; }

.contato__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 2px;
}
.contato__item span { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }

/* ─── FORM ────────────────────────────────────────────────────── */
.contato__form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

input, textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  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(139,197,65,0.12);
}

.form-note {
  margin-top: 12px;
  font-size: 0.82rem;
  text-align: center;
  min-height: 20px;
  color: var(--text-muted);
}
.form-note.success { color: var(--green); }
.form-note.error   { color: #e05555; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer__top {
  display: flex;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer__brand {
  flex: 0 0 240px;
}
.footer__logo { margin-bottom: 16px; }
.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer__nav {
  display: flex;
  gap: 48px;
  flex: 1;
}

.footer__col strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col li, .footer__col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  transition: color 0.2s;
}
.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.78rem;
  color: var(--text-dim);
}

/* ─── WPP FLOAT ──────────────────────────────────────────────── */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  animation: wppBounce 3s ease-in-out 2s infinite;
}
.wpp-float svg { width: 26px; height: 26px; }
.wpp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}
@keyframes wppBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

.wpp-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 6px 12px;
  font-size: 0.78rem;
  font-family: var(--font-display);
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wpp-float:hover .wpp-tooltip { opacity: 1; }

/* ─── AOS OVERRIDE ───────────────────────────────────────────── */
[data-aos] { will-change: transform, opacity; }

/* ─── AMBIENT GREEN ORBS (sutil) ─────────────────────────────── */
.sobre::before,
.diferenciais::before,
.faq::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
}
.sobre { position: relative; }
.sobre::before {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,197,65,0.09) 0%, transparent 70%);
  top: -100px; right: -80px;
}
.diferenciais { position: relative; }
.diferenciais::before {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(139,197,65,0.07) 0%, transparent 70%);
  bottom: -60px; left: -60px;
}
.faq { position: relative; }
.faq::before {
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(139,197,65,0.06) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.sobre > *,
.diferenciais > *,
.faq > * { position: relative; z-index: 1; }

/* ─── RESPONSIVE — TABLET ────────────────────────────────────── */
@media (max-width: 1024px) {
  .dif__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dif__card + .dif__card { border-left: none; }
  .dif__card:nth-child(odd) { border-right: 1px solid var(--border); }
  .dif__card:nth-child(1),
  .dif__card:nth-child(2) { border-bottom: 1px solid var(--border); }

  .blind__slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .blind__slide-img { aspect-ratio: 16/7; }

  .blind__header {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .blind__sub { padding-top: 20px; }

  .sobre__cert {
    display: none !important;
  }
}

  .sobre__grid { gap: 48px; }
  .manut__grid { gap: 48px; }
  .contato__grid { grid-template-columns: 1fr; gap: 48px; }

  .footer__nav { gap: 32px; }
}

@media (max-width: 860px) {
  .sobre__grid {
    grid-template-columns: 1fr;
  }
  .sobre__visual { max-width: 480px; margin: 0 auto; }

  .manut__grid { grid-template-columns: 1fr; }

  .sobre__cert {
    display: none !important;
  }
}

  .cta-strip__inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-strip__actions { justify-content: center; }

  .footer__top { flex-direction: column; gap: 32px; }
  .footer__brand { flex: auto; }
}

/* ─── RESPONSIVE — MOBILE ────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

section#sobre .sobre__grid .sobre__visual .sobre__img-wrap div.sobre__cert {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

  div.hero__stats.aos-init.aos-animate {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px; 
  }
}

  /* Nav mobile */
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    background: rgba(9,9,9,0.97);
    backdrop-filter: blur(20px);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__link { font-size: 1.1rem; }
  .nav__link--cta { padding: 12px 28px; }

  /* Hero */
  .hero__stats {
    flex-wrap: wrap;
    gap: 80px;
    padding: 24px 20px;
  }
  .hero__stat { flex: 1 1 40%; padding: 0; }
  .hero__stat-divider { display: none; }
  

  /* Diferenciais */
  .dif__grid {
    grid-template-columns: 1fr;
    border: none;
    gap: 12px;
  }
  .dif__card + .dif__card { border-left: none; }
  .dif__card:nth-child(odd) { border-right: none; }
  .dif__card:nth-child(1), .dif__card:nth-child(2) { border-bottom: none; }
  .dif__card {
    border: 1px solid var(--border);
    border-radius: var(--r-md);
  }

  /* Blindagem */
  .blind__nav { display: none; }

  /* Cert strip */
  .cert-strip {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  .cert-strip .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer__nav { flex-direction: column; gap: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 4px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Contato */
  .contato__form-wrap { padding: 24px 20px; }

  /* Sobre pillars */


@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .sobre__cert {
    display: none !important;
  }
}

  .section-title { font-size: clamp(1.7rem, 7vw, 2.5rem); }

  .manut__service { padding: 20px 18px; }
  .blind__slide-info { padding: 28px 24px; }

  .wpp-float { display: none; }
  .wpp-float svg { display: none; }
}
