:root {
  --bg: #06080a;
  --bg-soft: #0a0d11;
  --panel: #11151a;
  --panel-hover: #161b21;
  --glass: rgba(14, 18, 23, 0.82);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(154, 230, 0, 0.28);
  --text: #f2f4f7;
  --muted: #a3b0bc;
  --muted-soft: #6d7c8a;
  --green: #9ae600;
  --green-hover: #b8f42a;
  --green-dim: rgba(154, 230, 0, 0.09);
  --green-glow: rgba(154, 230, 0, 0.07);
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.42);
  --shadow-sm: 0 10px 36px rgba(0, 0, 0, 0.28);
  --shadow-green: 0 12px 40px rgba(154, 230, 0, 0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-pill: 999px;
  --font: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font);
  --announce-h: 36px;
  --header-h: 76px;
  --section-y: clamp(80px, 9vw, 120px);
  --container: min(1140px, calc(100% - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--announce-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.file-protocol-hint {
  position: fixed;
  bottom: 88px;
  left: 16px;
  right: 16px;
  z-index: 90;
  padding: 14px 18px;
  background: #1a1f26;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  font-size: 13px;
  color: #c5ced6;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.file-protocol-hint a { color: var(--green); font-weight: 600; text-decoration: underline; }

html.is-file-protocol .file-protocol-hint[hidden] { display: block; }
html:not(.is-file-protocol) .file-protocol-hint { display: none !important; }

a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

img { max-width: 100%; height: auto; }

picture {
  display: block;
  max-width: 100%;
}

.projeto-card__media picture,
.service-feature__media picture,
.equipment-visual picture,
.hero-visual__frame picture {
  width: 100%;
  height: 100%;
  display: block;
}

.projeto-card__media picture img,
.service-feature__media picture img,
.equipment-visual picture img,
.hero-visual__frame picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SVG decorativos — Safari/iOS expande sem width/height explícitos */
.card-icon svg,
.card-icon--premium svg,
.equipment-chip__icon svg,
.coming-card .card-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  flex-shrink: 0;
}

.equipment-chip__icon svg {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
}

.projeto-card__zoom {
  display: block;
  flex-shrink: 0;
  max-width: 28px;
  max-height: 28px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 200;
  background: var(--green);
  color: #0a1206;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
}

.skip-link:focus { top: 16px; }

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: var(--section-y) 0;
}

.section-alt {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.section-divider {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h4 {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-block;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.9;
}

.section-head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 560px;
}

.section-head h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 16px;
}

.section-head p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  font-weight: 400;
}

.lead,
.hero-lead {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 400;
  max-width: 34rem;
}

.hero-lead { margin: 0 0 36px; }

.lead strong,
.hero-lead strong,
.section-head p strong,
.faq-item p strong,
.about-copy p strong {
  color: var(--text);
  font-weight: 500;
}

.about-copy h2 {
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  max-width: 22ch;
}

.about-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 20px;
  max-width: 36rem;
}

.specs-note {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-soft);
}

/* Announce + header */
.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 20px;
  background: rgba(8, 10, 13, 0.95);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted-soft);
  letter-spacing: 0.04em;
  transition: color 0.2s var(--ease);
}

.announce-bar:hover { color: var(--text); }
.announce-bar strong { color: var(--text); font-weight: 600; }
.announce-bar__text--short { display: none; }
.announce-link { color: var(--green); font-weight: 600; text-decoration: none; }
.announce-link:hover { text-decoration: underline; text-underline-offset: 3px; }

.topbar {
  position: fixed;
  top: var(--announce-h);
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 clamp(20px, 4vw, 40px);
  background: rgba(8, 10, 13, 0.72);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.topbar.scrolled {
  background: rgba(8, 10, 13, 0.92);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Lockup de marca — logo + slogan na mesma caixa */
.logo-box-brand {
  display: inline-flex;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.brand:hover .logo-box-brand,
.hero-logo-link:hover .logo-box-brand {
  border-color: var(--line-strong);
  box-shadow: 0 8px 32px rgba(154, 230, 0, 0.08);
}

.brand-lockup--logo-only .brand-lockup__logo {
  padding: 8px 14px;
}

.brand-lockup--logo-only {
  border-radius: var(--radius);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  width: 100%;
}

.brand-lockup__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px 8px;
  line-height: 0;
}

.brand-lockup__slogan {
  display: block;
  margin: 0;
  padding: 10px 16px 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  line-height: 1.3;
}

.brand-lockup--hero .brand-lockup__slogan {
  font-size: clamp(10px, 1.3vw, 11px);
  padding: 12px 20px 14px;
  letter-spacing: 0.22em;
}

.brand-lockup--footer {
  width: 100%;
}

.brand-lockup--footer .brand-lockup__logo {
  padding: 12px 14px 8px;
}

.brand-lockup--footer .brand-lockup__slogan {
  font-size: 10px;
  padding: 10px 12px 12px;
}

.logo-official {
  display: block;
  object-fit: contain;
}

.brand-logo {
  height: 42px;
  width: auto;
  min-width: 130px;
  max-width: 200px;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.desktop-nav .nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.desktop-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--green);
  background: var(--green-dim);
  font-weight: 600;
}

.menu-btn {
  display: none;
  margin-left: auto;
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 46px;
  height: 46px;
  padding: 0;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--announce-h) + var(--header-h) + 8px);
  left: 20px;
  right: 20px;
  z-index: 55;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow);
}

.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
}
.mobile-menu a:hover { background: var(--panel-hover); }

/* Buttons */
.btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font);
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.25s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.primary,
.nav-cta {
  background: var(--green);
  color: #0a1206;
  box-shadow: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
}

.primary:hover,
.nav-cta:hover {
  background: var(--green-hover);
  box-shadow: 0 4px 20px rgba(154, 230, 0, 0.25);
}

.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line);
  border-radius: var(--radius-pill);
}

.secondary:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

/* Sticky WhatsApp */
.wa-sticky {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #0a1206;
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 13px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), opacity 0.2s;
}

.wa-sticky:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.wa-sticky svg { flex-shrink: 0; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--announce-h) + var(--header-h) + 56px) 0 88px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 80% 15%, rgba(154, 230, 0, 0.06), transparent 60%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 85%);
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(480px, 50vw);
  height: auto;
  opacity: 0.03;
  pointer-events: none;
  filter: grayscale(1);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 42%, transparent 100%);
  pointer-events: none;
}

.hero-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  width: 100%;
}

.hero-logo-link {
  display: block;
  line-height: 0;
  width: 100%;
  max-width: min(520px, 100%);
  margin-inline: auto;
}

.brand-lockup--hero {
  width: 100%;
  min-width: 0;
  margin-inline: auto;
}

.brand-lockup--hero .brand-lockup__logo {
  padding: clamp(14px, 2.5vw, 20px) clamp(16px, 3vw, 28px) clamp(10px, 2vw, 14px);
}

.brand-lockup--hero .brand-lockup__slogan {
  width: 100%;
}

.hero-logo {
  width: 100%;
  height: auto;
  min-width: 0;
  max-width: none;
  max-height: clamp(56px, 12vw, 88px);
  object-fit: contain;
  object-position: center;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 640px;
  margin-inline: auto;
  align-items: start;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-grid--split {
  max-width: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero--premium {
  min-height: min(100svh, 920px);
}

/* Hero — foto do hub (tela cheia) */
.hero--hub {
  width: 100%;
  min-height: max(640px, 100svh);
  padding: calc(var(--announce-h) + var(--header-h) + 48px) 0 72px;
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
}

.hero--hub .hero-bg {
  background: var(--bg);
}

.hero--hub .hero-bg::after {
  display: none;
}

.hero--hub .hero-bg__picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero--hub .hero-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 42%;
  transform: scale(1.08);
  animation: heroBgZoom 1.4s var(--ease-out) forwards;
  will-change: transform;
}

.hero--hub .hero-bg__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(6, 8, 10, 0.88) 0%,
      rgba(6, 8, 10, 0.62) 42%,
      rgba(6, 8, 10, 0.5) 100%
    );
  pointer-events: none;
}

.hero--hub .hero-bg__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 12% 88%, rgba(154, 230, 0, 0.14), transparent 65%),
    radial-gradient(ellipse 35% 30% at 72% 22%, rgba(154, 230, 0, 0.06), transparent 70%);
  pointer-events: none;
  animation: heroGlowPulse 6s ease-in-out infinite;
}

.hero-hub__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 24px);
}

.hero-hub__copy {
  max-width: 620px;
}

.hero-hub__eyebrow {
  margin: 0 0 10px;
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--green);
  opacity: 0;
  animation: heroIn 0.85s var(--ease-out) 0.1s forwards;
}

.hero-hub__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 76px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
  opacity: 0;
  animation: heroIn 0.9s var(--ease-out) 0.1s forwards;
}

.hero-hub__lead {
  margin: 0 0 28px;
  max-width: 52ch;
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.65;
  color: rgba(242, 244, 247, 0.92);
  opacity: 0;
  animation: heroIn 0.9s var(--ease-out) 0.24s forwards;
}

.hero-hub__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: none;
  margin-bottom: 22px;
  opacity: 0;
  animation: heroIn 0.9s var(--ease-out) 0.4s forwards;
}

.hero-hub__actions .btn {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  font-size: 14px;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.btn--hero-main {
  box-shadow: var(--shadow-green);
}

.btn--hero-outline {
  background: rgba(6, 8, 10, 0.45);
  border-color: rgba(154, 230, 0, 0.35);
  color: var(--text);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn--hero-outline:hover {
  background: rgba(154, 230, 0, 0.12);
  border-color: var(--green);
  color: var(--text);
}

.hero-hub__hint {
  margin: 0;
  font-size: 14px;
  opacity: 0;
  animation: heroIn 0.9s var(--ease-out) 0.48s forwards;
}

.hero-hub__hint a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-hub__hint a:hover {
  color: var(--green-hover);
}

@keyframes heroBgZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.72; }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 40%, #000 20%, transparent 75%);
  opacity: 0.35;
}

.hero-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.btn--hero {
  padding: 16px 28px;
  font-size: 15px;
  box-shadow: var(--shadow-green);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-trust li {
  flex: 1 1 100px;
  min-width: 88px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
}

.hero-trust strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.hero-trust span {
  font-size: 11px;
  color: var(--muted-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual__frame {
  position: relative;
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  box-shadow: var(--shadow);
  aspect-ratio: 5/4;
}

.hero-visual__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-visual__glow {
  position: absolute;
  inset: auto 10% 0;
  height: 40%;
  background: linear-gradient(to top, rgba(154, 230, 0, 0.15), transparent);
  pointer-events: none;
}

.hero-visual__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(6, 8, 10, 0.85);
  border: 1px solid var(--line-strong);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  backdrop-filter: blur(12px);
}

.hero-enter--delay {
  animation-delay: 0.15s;
  opacity: 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-dc {
  background: var(--green-dim);
  color: var(--green);
  border: none;
}

.badge-loc {
  background: rgba(255, 255, 255, 0.04);
  border: none;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(34px, 4.8vw, 52px);
  margin: 0 0 16px;
  max-width: 22ch;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--green), #d8ff80);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-slogan {
  margin: 0 0 24px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.04em;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 28px;
  border-top: none;
}

.hero-meta > div {
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-meta div small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-soft);
  margin-bottom: 6px;
}

.hero-meta div strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Trust */
.trust-bar {
  border-bottom: none;
  background: transparent;
  padding: 8px 0 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust-item {
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
}

.trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.trust-item span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }

.premium-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 0;
  transition:
    border-color 0.35s var(--ease),
    background 0.35s var(--ease),
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease);
}

.premium-card:hover {
  border-color: var(--line-strong);
  background: linear-gradient(165deg, rgba(154, 230, 0, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.why-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 220px;
  padding: 28px 26px;
}

.card-icon--premium {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--green-dim), transparent);
  border: 1px solid rgba(154, 230, 0, 0.15);
}

.card-icon--premium svg {
  width: 24px;
  height: 24px;
}

.card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--green-dim);
  color: var(--green);
  margin-bottom: 18px;
  overflow: hidden;
  flex-shrink: 0;
}

.card-icon svg { width: 22px; height: 22px; }

.premium-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.premium-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex-grow: 1;
}

.premium-card.featured {
  border-color: var(--line-strong);
  background: linear-gradient(160deg, rgba(154, 230, 0, 0.06) 0%, rgba(255, 255, 255, 0.02) 55%);
}

/* Why choose */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Equipment */
.equipment-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.equipment-specs {
  display: grid;
  gap: 14px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.spec-row small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.spec-row strong { font-size: 16px; font-weight: 600; }

.equipment-lead {
  margin-bottom: 28px;
  max-width: 36rem;
}

.equipment-visual {
  position: relative;
  margin: 0;
  aspect-ratio: 1402 / 1122;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.equipment-visual__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.equipment-visual__label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(6, 8, 10, 0.88);
  border: 1px solid var(--line-strong);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.equipment-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.equipment-chip {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.equipment-chip:hover {
  border-color: var(--line-strong);
  background: rgba(154, 230, 0, 0.04);
}

.equipment-chip--accent {
  border-color: var(--line-strong);
  background: linear-gradient(145deg, var(--green-dim), transparent);
}

.equipment-chip__icon {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--green-dim);
  color: var(--green);
  overflow: hidden;
  flex-shrink: 0;
}

.equipment-chip__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-soft);
}

.equipment-chip strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.equipment-bolt-mask {
  position: absolute;
  left: 40.2%;
  top: 50.8%;
  width: 5.8%;
  height: 7.2%;
  border-radius: 3px;
  background: #1b1d1b;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

/* Pillars - services highlight */
.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.pillar {
  text-align: center;
  padding: 28px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s;
}

.pillar:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.pillar .card-icon { margin: 0 auto 14px; }
.pillar h3 { margin: 0 0 8px; font-size: 14px; }
.pillar p { margin: 0; font-size: 12px; color: var(--muted); line-height: 1.45; }

/* Benefits */
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.benefit-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 20px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.benefit-list li:hover { border-color: var(--line-strong); }

.benefit-list .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-dim);
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
}

/* Location */
.location-highlight {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.location-points {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.location-point {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  color: #d0d8df;
}

.location-point::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 6px;
  flex-shrink: 0;
}

.map-embed {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-sm);
  background: var(--panel);
}

.map-embed::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, var(--green-dim) 0%, transparent 55%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.02) 10px,
      rgba(255, 255, 255, 0.02) 20px
    );
  opacity: 1;
  transition: opacity 0.35s var(--ease);
}

.map-embed.is-loaded::before {
  opacity: 0;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
  display: block;
  background: var(--bg-soft);
}

/* Legacy compat */
.about-grid,
.split,
.location-grid {
  display: grid;
  gap: 40px;
}

.about-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
.split, .location-grid { grid-template-columns: 1fr 1fr; align-items: center; }

.about-copy h2 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 20px; }
.about-copy p { color: var(--muted); font-size: 17px; line-height: 1.7; }
.about-copy p + p { margin-top: 16px; }

.about-copy a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-copy a:hover { opacity: 0.9; }

.about-values { display: grid; gap: 16px; }
.about-values article {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.about-values h3 { margin: 0 0 8px; font-size: 16px; color: var(--green); }
.about-values p { margin: 0; font-size: 14px; color: var(--muted); }

.about-quote {
  grid-column: 1 / -1;
  width: 100%;
  margin: 48px 0 0;
  padding: 32px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.about-quote__label {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green);
}

.about-quote__text {
  margin: 0 auto;
  max-width: 52rem;
  font-family: var(--font-display);
  font-size: clamp(19px, 2.5vw, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: var(--text);
}

.about-quote__mark {
  color: var(--green);
  font-weight: 700;
  opacity: 0.55;
}

.about-quote__mark--end {
  margin-left: 0.05em;
}

.about-quote__cite {
  margin: 20px 0 0;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.specs-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.spec-item {
  padding: 20px 16px;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.spec-item small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 6px;
}

.spec-item strong { font-size: 15px; font-weight: 700; }
.specs-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted-soft);
  margin: 0 auto 40px;
  max-width: 560px;
}

.quick-grid,
.coming-grid,
.services-grid {
  display: grid;
  gap: 20px;
}

.quick-grid { grid-template-columns: repeat(4, 1fr); }
.coming-grid { grid-template-columns: repeat(3, 1fr); }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.services-after-pillars { margin-top: 48px; }

.benefit-list li div strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.benefit-list li div p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.cta-centered {
  margin-top: 48px;
  max-width: 640px;
  margin-inline: auto;
}

@media (min-width: 769px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

.quick-card,
.coming-card,
.service,
.map-card,
.cta-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.quick-card:hover,
.coming-card:hover,
.service:hover,
.map-card:hover,
.cta-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.service h3,
.quick-card h3,
.coming-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.service p,
.quick-card p,
.coming-card p { margin: 0; font-size: 14px; color: var(--muted); }

.service h3 {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}

.card-icon-sm {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}

/* Serviços premium */
.services-showcase {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 72px);
}

.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.service-feature--reverse .service-feature__media {
  order: 2;
}

.service-feature--reverse .service-feature__body {
  order: 1;
}

.service-feature__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.service-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.service-feature:hover .service-feature__media img {
  transform: scale(1.03);
}

.service-feature__tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}

.service-feature__body h3 {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.5vw, 28px);
  letter-spacing: -0.03em;
}

.service-feature__body p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 36rem;
}

.service-feature__benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-feature__benefits li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--muted);
}

.service-feature__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green-glow);
}

.services-extra {
  margin-top: 56px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.services-extra__title {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

.services-extra__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-extra__list li {
  font-size: 14px;
  color: var(--muted);
}

.coming-soon-banner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 32px 28px;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.coming-soon-banner__lead {
  margin: 0 0 22px;
  font-size: 16px;
  color: var(--muted);
}

.coming-soon-banner > strong {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.coming-soon-banner > p:not(.coming-soon-banner__lead) {
  color: var(--muted);
  margin: 0 0 28px;
}

.gallery-block { margin-top: 56px; }
.gallery-title { text-align: center; font-size: 22px; margin: 0 0 8px; }
.gallery-intro { text-align: center; color: var(--muted); margin: 0 auto 32px; max-width: 520px; font-size: 14px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  cursor: zoom-in;
  transition: border-color 0.25s, transform 0.25s;
}
.gallery-trigger:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.gallery-trigger img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.gallery-item figcaption { margin-top: 10px; font-size: 13px; font-weight: 500; color: #c5ced6; }
.gallery-note { text-align: center; margin-top: 24px; font-size: 13px; color: var(--muted); }

/* Projeto M3VOLT — galeria premium */
.projeto-section {
  position: relative;
  overflow: hidden;
}

.projeto-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, var(--green-glow), transparent 70%);
  pointer-events: none;
}

.projeto-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.projeto-head {
  text-align: left;
  margin: 0;
  max-width: none;
}

.projeto-head p {
  margin: 0;
  max-width: 36rem;
}

.projeto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.projeto-stat {
  padding: 18px 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.projeto-stat strong {
  display: block;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}

.projeto-stat span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.projeto-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.projeto-card {
  min-width: 0;
}

.projeto-card__trigger {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: zoom-in;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.projeto-card__trigger:hover,
.projeto-card__trigger:focus-visible {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-sm);
}

.projeto-card__trigger:active {
  opacity: 0.95;
}

.projeto-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-soft);
}

.projeto-card__media img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.projeto-card__trigger:hover .projeto-card__media img,
.projeto-card__trigger:focus-visible .projeto-card__media img {
  transform: scale(1.03);
}

.projeto-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(8, 10, 13, 0.45);
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.projeto-card__trigger:hover .projeto-card__overlay,
.projeto-card__trigger:focus-visible .projeto-card__overlay {
  opacity: 1;
}

.projeto-card__zoom {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.projeto-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px 22px;
}

.projeto-card__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--green-dim);
  border: none;
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.projeto-card__title {
  display: block;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.projeto-card__desc {
  display: block;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.projeto-card--wide {
  grid-column: span 12;
}

.projeto-card--wide .projeto-card__media {
  aspect-ratio: 16 / 9;
}

.projeto-card--wide .projeto-card__media img {
  object-position: 48% 42%;
}

.projeto-card--hero {
  grid-column: span 6;
}

.projeto-card--hero .projeto-card__media {
  aspect-ratio: 16/10;
}

.projeto-card:not(.projeto-card--hero) {
  grid-column: span 3;
}

.projeto-note {
  margin: 40px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted-soft);
}

.projeto-note code {
  font-size: 12px;
  color: var(--muted);
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.partner-badge {
  flex: 1 1 220px;
  max-width: 300px;
  padding: 28px 24px;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 248px;
  height: 136px;
  min-height: 136px;
  margin: 0 auto 14px;
  padding: 8px 12px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-sizing: border-box;
}

.partner-logo-wrap picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.partner-logo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.partner-badge--recarga .partner-name,
.partner-badge--omo .partner-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.partner-name { display: block; font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.partner-desc { font-size: 12px; color: var(--muted); }

.timeline { display: grid; gap: 12px; }
.timeline div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.timeline strong { color: var(--green); font-weight: 800; font-size: 14px; }
.timeline span { font-size: 14px; color: #d5dde4; }

.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-list { display: grid; gap: 12px; }

.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item[open] { border-color: var(--line-strong); }

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--green); font-size: 22px; font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0; padding: 0 24px 20px; font-size: 15px; color: var(--muted); line-height: 1.65; }

.contact-block {
  display: grid;
  gap: 18px;
  margin: 28px 0;
  padding: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-block small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-block a { color: var(--green); font-weight: 600; font-size: 16px; }
.contact-block span { font-size: 15px; color: #d0d8df; }

.legal-wrap { max-width: 720px; margin: 0 auto; }
.legal-wrap h2 { font-size: clamp(26px, 3vw, 36px); margin: 0 0 16px; }
.legal-wrap p { color: var(--muted); font-size: 15px; margin-bottom: 14px; }

/* Footer */
.footer {
  padding: 52px 0 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: 40px 48px;
  padding-bottom: 40px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand__logo {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

.footer-brand__logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

.footer-brand__name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

.footer-brand__slogan {
  margin: 4px 0 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.footer-brand__tagline {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 28ch;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}

.cta-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  margin: 0 auto 16px;
  display: block;
  padding: 8px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-centered .cta-logo {
  margin-left: auto;
  margin-right: auto;
}
.footer-legal {
  margin: 0;
  font-size: 12px;
  color: var(--muted-soft);
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-soft);
  font-weight: 600;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--green); }

.footer-col__address {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted-soft);
}

.footer-bottom {
  padding: 20px 0 100px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 20px;
  align-items: center;
}

.footer-bottom small {
  color: var(--muted-soft);
  font-size: 12px;
}

.footer-tags {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted-soft);
  text-transform: uppercase;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 6, 8, 0.92);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 32px);
  animation: lightboxIn 0.28s var(--ease-out);
}

@keyframes lightboxIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox[hidden] { display: none; }

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(960px, 100%);
  max-height: calc(100vh - 48px);
  gap: 20px;
}

.lightbox img {
  width: 100%;
  max-height: min(70vh, 640px);
  object-fit: contain;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.lightbox-meta {
  width: 100%;
  max-width: 720px;
  text-align: center;
  padding: 0 8px;
}

.lightbox-title {
  margin: 0 0 8px;
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.lightbox-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.lightbox-counter {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(19, 23, 28, 0.92);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: border-color 0.2s, background 0.2s;
}

.lightbox-nav:hover {
  border-color: var(--line-strong);
  background: var(--panel);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
  z-index: 1;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.hero-enter {
  animation: heroIn 0.9s var(--ease-out) forwards;
}

.hero-enter--delay {
  animation: heroIn 0.9s var(--ease-out) 0.12s forwards;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* Mobile nav */
.bottom-nav { display: none; }

.bottom-nav-wa { color: var(--green) !important; font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-enter,
  .hero-hub__eyebrow,
  .hero-hub__title,
  .hero-hub__lead,
  .hero-hub__actions,
  .hero-hub__hint {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero--hub .hero-bg__img {
    animation: none !important;
    transform: none !important;
  }
  .hero--hub .hero-bg__glow {
    animation: none !important;
  }
  .premium-card:hover,
  .quick-card:hover,
  .projeto-card__trigger:hover { transform: none; }
  .projeto-card__media img { transition: none; }
}

/* Tablet */
@media (max-width: 1024px) {
  .hero--hub .hero-bg__img {
    object-position: 42% 44%;
  }

  .hero-hub__copy {
    max-width: 540px;
  }

  .service-feature,
  .service-feature--reverse {
    grid-template-columns: 1fr;
  }

  .service-feature--reverse .service-feature__media,
  .service-feature--reverse .service-feature__body {
    order: unset;
  }

  .equipment-showcase,
  .benefits-layout,
  .location-highlight,
  .why-grid,
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .projeto-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .projeto-gallery { grid-template-columns: repeat(2, 1fr); }
  .projeto-card--wide { grid-column: span 2; }
  .projeto-card--hero,
  .projeto-card:not(.projeto-card--hero):not(.projeto-card--wide) { grid-column: span 1; }
  .projeto-card--hero .projeto-card__media { aspect-ratio: 4/3; }
  .card-grid-4,
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand__tagline {
    max-width: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-y: 56px;
    --container: min(1140px, calc(100% - 32px));
    --announce-h: 46px;
    --header-h: 64px;
    --bottom-nav-h: 64px;
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
  }

  .announce-bar {
    height: auto;
    min-height: var(--announce-h);
    padding: 8px 12px;
    padding-top: calc(8px + var(--safe-top));
    font-size: 10px;
    line-height: 1.35;
    text-align: center;
  }

  .announce-bar__text--long { display: none; }
  .announce-bar__text--short { display: inline; }

  .topbar {
    top: var(--announce-h);
    height: var(--header-h);
    gap: 12px;
    padding: 0 12px;
    padding-left: calc(12px + env(safe-area-inset-left, 0px));
    padding-right: calc(12px + env(safe-area-inset-right, 0px));
  }

  .brand-lockup--logo-only .brand-lockup__logo {
    padding: 6px 10px;
  }

  .brand-logo {
    height: 32px;
    min-width: 96px;
    max-width: 140px;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }

  .mobile-menu {
    left: 12px;
    right: 12px;
    top: calc(var(--announce-h) + var(--header-h) + 6px);
    max-height: min(70vh, calc(100dvh - var(--announce-h) - var(--header-h) - 24px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }

  html {
    scroll-padding-top: calc(var(--header-h) + var(--announce-h) + var(--safe-top) + 12px);
  }

  .desktop-nav,
  .nav-cta { display: none; }

  .projeto-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--announce-h) + var(--header-h) + 32px);
    padding-bottom: 48px;
  }

  /* Mobile: imagem do hub em destaque no topo + texto em painel sólido */
  .hero--hub {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 0;
    padding-top: calc(var(--announce-h) + var(--header-h));
    padding-bottom: calc(24px + var(--safe-bottom));
    align-items: stretch;
    overflow: visible;
  }

  .hero--hub .hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(220px, 42vw, 340px);
    flex-shrink: 0;
    order: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .hero--hub .hero-bg__picture {
    position: absolute;
    inset: 0;
  }

  .hero--hub .hero-bg__img {
    object-position: 48% 38%;
    animation-duration: 1.8s;
  }

  .hero--hub .hero-bg__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(6, 8, 10, 0.08) 0%,
        rgba(6, 8, 10, 0.18) 55%,
        rgba(6, 8, 10, 0.72) 88%,
        var(--bg) 100%
      );
  }

  .hero--hub .hero-bg__glow {
    background:
      radial-gradient(ellipse 80% 50% at 50% 100%, rgba(154, 230, 0, 0.12), transparent 70%);
  }

  .hero-hub__content {
    position: relative;
    order: 1;
    margin-top: -18px;
    padding: 26px 16px 8px;
    background: var(--bg);
    border-radius: 22px 22px 0 0;
    border-top: 1px solid var(--line-strong);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
  }

  .hero-hub__title {
    font-size: clamp(36px, 10vw, 52px);
    margin-bottom: 12px;
    text-shadow: none;
  }

  .hero-hub__lead {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 20px;
    max-width: none;
  }

  .hero-hub__actions {
    grid-template-columns: 1fr;
    max-width: none;
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-hub__actions .btn {
    min-height: 50px;
  }

  .hero-hub__hint {
    font-size: 13px;
  }

  .equipment-chips {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 6px;
    margin-inline: -4px;
    padding-inline: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .equipment-chips::-webkit-scrollbar {
    display: none;
  }

  .equipment-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: 132px;
  }

  .partners-row {
    flex-direction: column;
    align-items: stretch;
  }

  .partner-badge {
    max-width: none;
  }

  .projeto-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .projeto-stat {
    padding: 12px 8px;
  }

  .projeto-stat strong {
    font-size: 18px;
  }

  .projeto-stat span {
    font-size: 10px;
  }

  .hero-grid--split,
  .hero-grid,
  .about-grid,
  .service-feature,
  .equipment-chips,
  .split,
  .location-grid,
  .equipment-showcase,
  .benefits-layout,
  .location-highlight,
  .why-grid,
  .card-grid-3,
  .card-grid-4,
  .quick-grid,
  .coming-grid,
  .services-grid,
  .gallery-grid,
  .projeto-gallery,
  .specs-bar,
  .trust-grid,
  .footer-grid,
  .pillars {
    grid-template-columns: 1fr;
  }

  .projeto-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .projeto-card--wide,
  .projeto-card--hero,
  .projeto-card:not(.projeto-card--hero):not(.projeto-card--wide) {
    grid-column: span 1;
  }

  .projeto-card--wide .projeto-card__media,
  .projeto-card--hero .projeto-card__media {
    aspect-ratio: 4/3;
  }

  .projeto-card__overlay {
    display: none !important;
  }

  .lightbox-inner {
    max-height: calc(100vh - 32px);
  }

  .lightbox img {
    max-height: min(55vh, 480px);
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  .hero-brand {
    justify-content: center;
    margin-bottom: 24px;
    padding-inline: 4px;
  }

  .hero-logo-link {
    width: 100%;
    max-width: min(360px, calc(100% - 8px));
  }

  .brand-lockup--hero {
    width: 100%;
  }

  .brand-lockup--hero .brand-lockup__logo {
    padding: 14px 20px 10px;
  }

  .brand-lockup--hero .brand-lockup__slogan {
    font-size: 9px;
    letter-spacing: 0.14em;
    padding: 10px 16px 11px;
  }

  .hero-logo {
    width: auto;
    max-width: 100%;
    max-height: 58px;
    margin-inline: auto;
  }

  .brand-lockup--logo-only .brand-lockup__logo {
    padding: 6px 10px;
  }

  .brand-logo {
    height: 38px;
    min-width: 120px;
  }

  .hero-watermark {
    display: none !important;
  }

  .hero-visual__frame {
    max-height: min(72vw, 420px);
  }

  .hero-visual__img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
  }

  .equipment-visual {
    max-width: 100%;
    overflow: hidden;
  }

  .equipment-visual__img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    object-position: center;
  }

  .projeto-card__media img {
    width: 100%;
    height: auto;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .service-feature__media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }

  .footer-brand {
    padding-bottom: 4px;
    border-bottom: 1px solid var(--line);
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
  }

  .footer-col--contact {
    padding-top: 4px;
    border-top: 1px solid var(--line);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
  }

  .footer-tags {
    font-size: 10px;
    letter-spacing: 0.05em;
  }

  .hero h1 { max-width: none; font-size: 34px; }
  .hero-actions,
  .coming-soon-banner .btn,
  .cta-card .btn {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .coming-soon-banner .btn,
  .cta-card .btn {
    width: 100%;
    min-height: 48px;
  }

  .trust-grid { gap: 10px; }

  .wa-sticky {
    display: none;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .bottom-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + var(--safe-bottom));
    z-index: 75;
    background: rgba(8, 10, 13, 0.94);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xl);
    padding: 6px 4px;
    box-shadow: var(--shadow);
  }

  .bottom-nav a {
    display: grid;
    place-items: center;
    gap: 2px;
    min-height: 48px;
    font-size: 10px;
    font-weight: 500;
    padding: 6px 2px;
    color: var(--muted);
    border-radius: var(--radius);
    transition: color 0.2s var(--ease), background 0.2s var(--ease);
  }

  .bottom-nav a.active,
  .bottom-nav a.bottom-nav-wa {
    color: var(--green);
    background: var(--green-dim);
  }

  .bottom-nav a.bottom-nav-wa {
    font-weight: 700;
  }

  body {
    padding-bottom: calc(var(--bottom-nav-h) + 20px + var(--safe-bottom));
  }

  .footer-bottom {
    padding-bottom: calc(100px + var(--safe-bottom));
  }

  .section-head {
    text-align: left;
    margin-bottom: 32px;
  }

  .section-head h2 {
    font-size: clamp(24px, 6.5vw, 32px);
  }

  .map-embed {
    aspect-ratio: 4/3;
    min-height: 220px;
  }

  .location-highlight {
    gap: 24px;
  }
}

@media (max-width: 380px) {
  .hero-hub__title {
    font-size: 34px;
  }

  .bottom-nav a span {
    font-size: 9px;
  }
}

@media (min-width: 1400px) {
  :root { --container: min(1320px, calc(100% - 80px)); }
}

/* Safari iOS (iPhone) — ícones e imagens não podem estourar o layout */
@supports (-webkit-touch-callout: none) {
  .hero-grid,
  .hero-grid--split,
  .equipment-showcase,
  .equipment-copy,
  .projeto-gallery,
  .projeto-card,
  .service-feature {
    min-width: 0;
  }

  .card-icon svg,
  .card-icon--premium svg,
  .equipment-chip__icon svg,
  .coming-card .card-icon svg,
  .projeto-card__zoom {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
  }

  .equipment-chip__icon svg {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
  }

  .projeto-card__zoom {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
  }

  .menu-btn svg,
  .wa-sticky > svg {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
  }

  .hero-watermark {
    display: none !important;
    visibility: hidden !important;
    max-width: 0 !important;
    max-height: 0 !important;
  }

  .hero-logo {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 58px !important;
  }

  .projeto-card__trigger {
    -webkit-appearance: none;
    appearance: none;
  }
}

@media (max-width: 768px) and (-webkit-touch-callout: none) {
  .projeto-card__overlay {
    display: none !important;
  }

  .projeto-card__zoom {
    display: none !important;
  }
}
