/* ──────────────────────────────────────────────
   RENOVA ENGENHARIA — Identidade Visual
   Tema: Industrial Precision
   Fontes: Barlow Condensed (display) + DM Sans (body)
   ────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── TOKENS ── */
:root {
  --ink:        #0b0d10;
  --ink-2:      #141820;
  --steel:      #1c2330;
  --steel-2:    #242c3a;
  --muted:      #5a6478;
  --border:     rgba(255,255,255,0.08);
  --white:      #ffffff;
  --paper:      #f5f4f0;
  --paper-2:    #eeece8;
  --orange:     #e85c1a;
  --orange-lt:  #ff6c28;
  --amber:      #f4a622;
  --cyan:       #19c5c5;
  --r:          6px;
  --r-lg:       14px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,.18);
  --shadow:     0 12px 48px rgba(0,0,0,.32);
  --shadow-lg:  0 32px 80px rgba(0,0,0,.44);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --ease-out:   cubic-bezier(.22,.68,0,1.2);
  --ease-in:    cubic-bezier(.55,0,1,.45);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  transition: background .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom-color: rgba(0,0,0,.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand img {
  width: 104px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.08));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--r);
  color: rgba(11,13,16,.72);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(232,92,26,.09); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--r);
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .22s var(--ease-out), box-shadow .22s ease, background .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 8px 28px rgba(232,92,26,.35);
}
.btn-primary:hover {
  background: var(--orange-lt);
  border-color: var(--orange-lt);
  box-shadow: 0 14px 40px rgba(232,92,26,.45);
}
.btn-ghost {
  background: rgba(11,13,16,.06);
  color: rgba(11,13,16,.82);
  border-color: rgba(11,13,16,.12);
}
.btn-ghost:hover {
  background: rgba(232,92,26,.1);
  color: var(--ink);
  border-color: rgba(232,92,26,.25);
}
.hero .btn-ghost,
.cta-section .btn-ghost,
.mobile-nav .btn-ghost {
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.2);
}
.hero .btn-ghost:hover,
.cta-section .btn-ghost:hover,
.mobile-nav .btn-ghost:hover {
  background: rgba(255,255,255,.14);
  color: var(--white);
  border-color: rgba(255,255,255,.32);
}
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(0,0,0,.18);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-lg { min-height: 52px; padding: 0 28px; font-size: 0.95rem; border-radius: var(--r-lg); }
.btn-sm { min-height: 36px; padding: 0 14px; font-size: 0.82rem; }

/* WhatsApp icon */
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 130px 0 80px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 1.2s ease;
}

.hero-static-bg,
.hero-slideshow {
  position: absolute;
  inset: 0;
}
.hero-static-bg {
  background:
    radial-gradient(circle at 78% 18%, rgba(232, 92, 26, .22), transparent 28%),
    radial-gradient(circle at 24% 80%, rgba(245, 184, 71, .12), transparent 24%),
    linear-gradient(135deg, rgba(11, 13, 16, .96), rgba(26, 33, 42, .88)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 92px);
}

.hero-slideshow span,
.image-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: renovaFade 20s infinite;
}
.hero-slideshow span {
  background-size: cover;
  background-position: center;
  filter: saturate(.95) contrast(1.04);
  transform: scale(1.04);
}
.hero-main-slideshow span:nth-child(1) { background-image: url('/assets/img/showcase/1.png'); }
.hero-main-slideshow span:nth-child(2) { background-image: url('/assets/img/showcase/2.png'); animation-delay: 5s; }
.hero-main-slideshow span:nth-child(3) { background-image: url('/assets/img/showcase/3.png'); animation-delay: 10s; }
.hero-main-slideshow span:nth-child(4) { background-image: url('/assets/img/showcase/4.png'); animation-delay: 15s; }

@keyframes renovaFade {
  0% { opacity: 0; }
  8% { opacity: 1; }
  28% { opacity: 1; }
  38% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11,13,16,.94) 0%, rgba(11,13,16,.74) 42%, rgba(11,13,16,.28) 100%),
    linear-gradient(0deg, rgba(11,13,16,.85) 0%, transparent 45%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .6;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: end;
  gap: 60px;
}

/* Tagline badge */
.tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 6px 14px 6px 6px;
  border-radius: 100px;
  background: rgba(232,92,26,.12);
  border: 1px solid rgba(232,92,26,.3);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-lt);
}
.tagline-badge span.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,92,26,.3);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(232,92,26,.3); }
  50%      { box-shadow: 0 0 0 6px rgba(232,92,26,.12); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 900;
  line-height: .93;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
  display: block;
}

.hero-copy {
  max-width: 640px;
  margin: 28px 0 38px;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  font-weight: 400;
}

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

/* Metric panel */
.hero-metrics {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.metric {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.metric:last-child { border-bottom: none; }
.metric::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  opacity: 0;
  transition: opacity .3s;
}
.metric:hover::before { opacity: 1; }
.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}
.metric span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.5);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── SECTION BASE ── */
.section { padding: 100px 0; }
.section-dark { background: var(--ink-2); color: var(--white); }
.section-steel { background: var(--steel); color: var(--white); }
.section-white { background: var(--white); }
.section-paper { background: var(--paper); }
.section-rust {
  background: var(--orange);
  color: var(--white);
}

/* Section label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
}
.section-label::before {
  content: '';
  width: 28px; height: 2px;
  background: currentColor;
}

.section-dark .section-label,
.section-steel .section-label { color: var(--amber); }
.section-dark .section-label::before,
.section-steel .section-label::before { background: var(--amber); }

.section-head { max-width: 820px; margin-bottom: 64px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.section-head p {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
}
.section-dark .section-head p,
.section-steel .section-head p { color: rgba(255,255,255,.55); }

/* ── ABOUT SPLIT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.media-tile {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--steel);
  aspect-ratio: 4/3;
}
.media-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background: var(--steel);
}
.image-slideshow img:nth-child(2) { animation-delay: 5s; }
.image-slideshow img:nth-child(3) { animation-delay: 10s; }
.image-slideshow img:nth-child(4) { animation-delay: 15s; }
.media-tile-static {
  min-height: 100%;
  display: grid;
  place-items: center;
  gap: 22px;
  padding: 44px;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 22%, rgba(232, 92, 26, .28), transparent 28%),
    linear-gradient(135deg, var(--ink), var(--steel));
}
.media-tile-static img {
  width: min(320px, 86%);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.28));
}
.media-tile-static span {
  max-width: 420px;
  font-size: 1.04rem;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
}
.media-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}

/* Decoration accent lines on media */
.media-tile-wrap {
  position: relative;
}
.media-tile-wrap::before,
.media-tile-wrap::after {
  content: '';
  position: absolute;
  background: var(--orange);
  border-radius: 2px;
  z-index: -1;
}
.media-tile-wrap::before {
  width: 3px; top: 16px; bottom: -16px; right: -16px;
}
.media-tile-wrap::after {
  height: 3px; left: 16px; right: -16px; bottom: -16px;
}

.text-panel {}
.text-panel .accent-rule {
  width: 48px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 24px 0;
}
.text-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.text-panel p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 16px;
}
.text-panel p:last-child { margin-bottom: 0; }
.section-dark .text-panel p { color: rgba(255,255,255,.6); }

/* Highlight list */
.highlight-list {
  list-style: none;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.highlight-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 500;
}
.highlight-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── SERVICE CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-grid-wide { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s ease, border-color .3s ease;
}
.card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.section-dark .card, .section-steel .card {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
  color: var(--white);
}
.section-dark .card:hover, .section-steel .card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.15);
}

.card-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(232,92,26,.1);
  color: var(--orange);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-dark .card-tag, .section-steel .card-tag {
  background: rgba(244,166,34,.12);
  color: var(--amber);
}

.card-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
  color: var(--orange);
}
.section-dark .card-icon, .section-steel .card-icon { color: var(--amber); }

.card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
}
.card p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}
.section-dark .card p, .section-steel .card p { color: rgba(255,255,255,.55); }

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.step {
  padding: 0 28px 0 0;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(232,92,26,.15);
  display: block;
  margin-bottom: 16px;
  transition: color .3s;
}
.step:hover .step-num { color: rgba(232,92,26,.35); }
.section-dark .step-num { color: rgba(255,255,255,.08); }
.section-dark .step:hover .step-num { color: rgba(255,255,255,.18); }

.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step p {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--muted);
}
.section-dark .step p { color: rgba(255,255,255,.55); }

/* step connector circle */
.step-marker {
  width: 16px; height: 16px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid var(--ink-2);
  box-shadow: 0 0 0 4px rgba(232,92,26,.25);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  animation: markerBlink 1.8s ease-in-out infinite;
}

@keyframes markerBlink {
  0%, 100% {
    opacity: .55;
    box-shadow: 0 0 0 4px rgba(232,92,26,.18), 0 0 0 0 rgba(232,92,26,.22);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 0 4px rgba(232,92,26,.34), 0 0 0 10px rgba(232,92,26,0);
  }
}

/* ── VALUES / PROOF ── */
.values-row {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.section-dark .values-row { border-top-color: rgba(255,255,255,.08); }
.value-item { flex: 1; }
.value-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.value-item span {
  display: block;
  margin-top: 6px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-dark .value-item span { color: rgba(255,255,255,.5); }

/* ── VIDEO STRIP ── */
.video-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.video-strip video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--ink);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(232,92,26,.12), transparent);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.cta-inner h2 em {
  font-style: normal;
  color: var(--orange);
}
.cta-inner p {
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 28px;
}

.cta-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 240px;
}

/* Contact info list */
.contact-info {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
}
.contact-info li svg {
  width: 16px; height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-info a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  transition: color .2s ease;
}
.contact-info a:hover { color: var(--white); }

.map-card {
  width: min(360px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.06);
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 190px;
  border: 0;
  filter: saturate(.92) contrast(.95);
}
.map-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: rgba(255,255,255,.88);
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,.1);
}
.map-card a + a { border-top-color: rgba(255,255,255,.07); }
.map-card a:hover {
  color: var(--white);
  background: rgba(232,92,26,.16);
}

/* ── ATENDIMENTO BANNER ── */
.atendimento-banner {
  background: rgba(232,92,26,.08);
  border: 1px solid rgba(232,92,26,.2);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: block;
  margin-bottom: 28px;
}
.atendimento-banner h4 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--orange-lt);
}
.atendimento-banner p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin: 0;
  line-height: 1.55;
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.45);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  width: 72px; height: 40px;
  object-fit: contain;
  opacity: .7;
  filter: grayscale(1) brightness(1.5);
}
.footer-brand span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.5);
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: .83rem;
}
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: .78rem;
  text-align: right;
}

/* ── DIAGONAL DIVIDER ── */
.divider-diagonal {
  height: 60px;
  overflow: hidden;
  position: relative;
  margin-bottom: -2px;
}
.divider-diagonal svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── HAMBURGUER MOBILE ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r);
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); }
  .metric { border-bottom: none; border-right: 1px solid rgba(255,255,255,.07); }
  .metric:last-child { border-right: none; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse { direction: ltr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-wide { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-aside { align-items: flex-start; }
  .values-row { flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions {
    display: flex;
    margin-left: auto;
    gap: 8px;
  }
  .nav-actions .btn-ghost { display: none; }
  .nav-actions .btn-primary {
    min-height: 38px;
    padding: 0 14px;
    font-size: .8rem;
    max-width: 176px;
  }
  .nav-actions .btn-primary svg {
    width: 16px;
    height: 16px;
  }
  .nav-toggle { display: flex; }
  .hero-main-slideshow span {
    background-position: center center;
  }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-wide { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 34px; }
  .step { padding: 0; }
  .step-num { font-size: 4.1rem; margin-bottom: 10px; }
  .step-marker { margin-bottom: 14px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .metric { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .metric:last-child { border-bottom: none; }
  .video-strip { grid-template-columns: 1fr; }
  .video-strip video { height: 240px; }
  .media-tile-wrap::before, .media-tile-wrap::after { display: none; }
  .hero { padding: 100px 0 60px; }
  .section { padding: 72px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  z-index: 99;
  background: rgba(11,13,16,0.98);
  backdrop-filter: blur(20px);
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 16px;
  border-radius: var(--r);
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  font-weight: 500;
  transition: background .2s, color .2s;
}
.mobile-nav a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.mobile-nav .btn { margin-top: 16px; width: 100%; }

/* ── UTILITY ── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-orange { color: var(--orange); }
.text-amber { color: var(--amber); }
