/* =========================================================
   Innovare Imagens Aéreas — Design System
   Tema escuro | verdes #01ae67/#31d588 | laranjas #fdae20/#f9981e
   ========================================================= */

:root {
  /* Cores da marca */
  --bg:          #171d27;
  --bg-soft:     #1c232f;
  --surface:     #212a38;
  --surface-2:   #2a3444;
  --border:      rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --green-1: #01ae67;
  --green-2: #31d588;
  --orange-1: #fdae20;
  --orange-2: #f9981e;

  --text:      #f4f7fb;
  --text-soft: #c3ccda;
  --text-mut:  #8b97a9;

  --grad-green:  linear-gradient(135deg, #01ae67 0%, #31d588 100%);
  --grad-orange: linear-gradient(135deg, #fdae20 0%, #f9981e 100%);
  --grad-brand:  linear-gradient(120deg, #01ae67 0%, #31d588 42%, #fdae20 100%);

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45);

  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 26px;

  --maxw: 1180px;
  --gutter: clamp(18px, 5vw, 48px);

  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --header-h: 88px;
}

/* Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Utilidades de cor/gradiente --------------------------- */
.text-grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-green { color: var(--green-2); }
.text-orange { color: var(--orange-1); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-2);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--grad-green);
  border-radius: 2px;
}

.section { padding-block: clamp(64px, 9vw, 120px); }
.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin: 14px 0 16px;
}
.section-head p { color: var(--text-soft); font-size: 1.05rem; }

/* Botões ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad-green); color: #04231a; box-shadow: var(--shadow-sm); }
.btn-primary:hover { box-shadow: 0 10px 26px rgba(1, 174, 103, 0.4); }
.btn-orange { background: var(--grad-orange); color: #2c1a00; box-shadow: var(--shadow-sm); }
.btn-orange:hover { box-shadow: 0 10px 26px rgba(253, 174, 32, 0.4); }
.btn-ghost { background: rgba(255,255,255,0.05); color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-lg { padding: 14px 28px; font-size: 1.05rem; }

/* WhatsApp botão flutuante ------------------------------ */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }

/* Header ------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 29, 39, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-soft);
  padding: 9px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,0.06); }

/* Dropdown de serviços */
.has-drop { position: relative; }
.drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
}
.has-drop:hover .drop-menu,
.has-drop:focus-within .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text-soft);
  font-size: 0.92rem;
}
.drop-menu a:hover { background: rgba(1,174,103,0.14); color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 18px; font-size: 0.8rem; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); padding: 6px; }
.nav-toggle svg { width: 28px; height: 28px; }

/* Hero -------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,26,35,0.92) 0%, rgba(20,26,35,0.78) 34%, rgba(20,26,35,0.30) 66%, rgba(20,26,35,0.15) 100%),
    linear-gradient(180deg, rgba(23,29,39,0.20) 0%, rgba(23,29,39,0.35) 70%, var(--bg) 100%),
    radial-gradient(90% 80% at 8% 30%, rgba(1,174,103,0.20), transparent 55%);
}
/* placeholder de mídia até subir foto/vídeo */
.media-placeholder {
  width: 100%; height: 100%;
  background:
    radial-gradient(80% 120% at 70% 10%, rgba(49,213,136,0.18), transparent 60%),
    radial-gradient(80% 120% at 10% 90%, rgba(253,174,32,0.16), transparent 60%),
    var(--bg-soft);
  position: relative;
}
.media-placeholder[data-label]::before {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border: 1px dashed rgba(255,255,255,0.14);
}
.hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0; padding: 0; padding-block: 60px; text-align: left; }
.hero h1 {
  font-size: clamp(2.3rem, 6vw, 4rem);
  margin: 18px 0 20px;
}
.hero p { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--text-soft); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 22px; align-items: center;
  margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--border);
}
.hero-badges span { font-size: 0.82rem; color: var(--text-mut); font-family: var(--font-head); font-weight: 600; letter-spacing: 0.06em; }

/* Stats ------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: 2rem; }
.stat .lbl { color: var(--text-mut); font-size: 0.9rem; margin-top: 4px; }

/* Cards de serviço -------------------------------------- */
.grid-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.svc-thumb { aspect-ratio: 16/10; position: relative; overflow: hidden; }
/* Qualquer <img> colocada nesses slots preenche o quadro sem distorcer */
.svc-thumb img, .pf-item img, .split-media img, .video-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pf-item img { transition: transform .4s ease; }
.pf-item:hover img { transform: scale(1.05); }
.svc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(1,174,103,0.14);
  display: grid; place-items: center;
  margin: -46px 0 4px; position: relative; z-index: 2;
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
}
.svc-ico svg { width: 24px; height: 24px; stroke: var(--green-2); }
.svc-card h3 { font-size: 1.2rem; }
.svc-card p { color: var(--text-soft); font-size: 0.96rem; }
.svc-link {
  margin-top: auto;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--orange-1);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap .2s;
}
.svc-card:hover .svc-link { gap: 12px; }

/* Faixa de diferenciais --------------------------------- */
.grid-feats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feat { padding: 26px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.feat .fico { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-green); display: grid; place-items: center; margin-bottom: 16px; }
.feat .fico svg { width: 22px; height: 22px; stroke: #04231a; }
.feat h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feat p { color: var(--text-soft); font-size: 0.93rem; }

/* Portfólio -------------------------------------------- */
.grid-portfolio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pf-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--border); }
.pf-item.tall { aspect-ratio: 4/5; }
.pf-item .media-placeholder { transition: transform .4s ease; }
.pf-item:hover .media-placeholder { transform: scale(1.05); }
.pf-tag { position: absolute; left: 14px; bottom: 14px; z-index: 2; background: rgba(23,29,39,0.75); backdrop-filter: blur(6px); border: 1px solid var(--border); padding: 6px 12px; border-radius: 999px; font-size: 0.78rem; font-family: var(--font-head); font-weight: 600; }

/* Processo --------------------------------------------- */
.grid-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-head); font-weight: 800; font-size: 2.4rem;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 10px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: 0.95rem; }

/* CTA faixa -------------------------------------------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(40px, 6vw, 70px);
  background:
    radial-gradient(90% 140% at 0% 0%, rgba(1,174,103,0.35), transparent 55%),
    radial-gradient(90% 140% at 100% 100%, rgba(253,174,32,0.30), transparent 55%),
    var(--surface);
  border: 1px solid var(--border-strong);
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 14px; }
.cta-band p { color: var(--text-soft); max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Selos ------------------------------------------------ */
.certs { display: flex; flex-wrap: wrap; gap: 18px 40px; align-items: center; justify-content: center; }
.cert { display: flex; align-items: center; gap: 10px; color: var(--text-mut); font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; }
.cert .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--grad-green); }

/* Avaliações Google ------------------------------------ */
.google-badge { display: inline-flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 10px 20px; margin-bottom: 18px; }
.google-badge .g-logo { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.google-badge .g-logo b:nth-child(1){color:#4285F4}.google-badge .g-logo b:nth-child(2){color:#EA4335}.google-badge .g-logo b:nth-child(3){color:#FBBC05}.google-badge .g-logo b:nth-child(4){color:#4285F4}.google-badge .g-logo b:nth-child(5){color:#34A853}.google-badge .g-logo b:nth-child(6){color:#EA4335}
.google-badge .g-rating { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; }
.google-badge .g-stars { color: #fdae20; letter-spacing: 1px; }
.grid-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 12px; }
.review-card .review-stars { color: #fdae20; letter-spacing: 2px; font-size: 1.05rem; }
.review-card p { color: var(--text-soft); font-size: 0.96rem; flex: 1; }
/* Selo Google — branco em fundo escuro (padrão) */
.google-badge .g-rating { color: var(--text); }

/* Avaliações em seção clara: cards e selo claros */
.section-light .google-badge { background:#fff; border-color:rgba(20,30,50,.10); box-shadow:0 6px 18px rgba(20,30,50,.06); }
.section-light .google-badge .g-rating { color:#131a25; }
.section-light .review-card { background:#fff; border-color:rgba(20,30,50,.08); box-shadow:0 8px 24px rgba(20,30,50,.07); }
.section-light .review-card p { color:#4a586c; }
.section-light .review-card .ra-name { color:#131a25; }
.section-light .review-card .ra-meta { color:#8a97a8; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 6px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: #04231a; }
.review-author .ra-name { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; }
.review-author .ra-meta { color: var(--text-mut); font-size: 0.8rem; }

/* Footer ----------------------------------------------- */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--border); padding-block: 56px 30px; margin-top: 20px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; }
.foot-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-mut); margin-bottom: 16px; }
.foot-col a, .foot-col p { color: var(--text-soft); font-size: 0.95rem; display: block; margin-bottom: 10px; }
.foot-col a:hover { color: var(--green-2); }
.foot-brand img { height: 40px; margin-bottom: 16px; }
.foot-brand p { color: var(--text-mut); font-size: 0.92rem; max-width: 300px; }
.foot-social { display: flex; gap: 10px; margin-top: 8px; }
.foot-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); display: grid; place-items: center; }
.foot-social a:hover { background: rgba(1,174,103,0.16); }
.foot-social svg { width: 18px; height: 18px; }
.foot-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--text-mut); font-size: 0.85rem; }

/* Sub-hero (páginas internas) -------------------------- */
.page-hero { position: relative; padding-block: clamp(36px, 5vw, 56px) clamp(24px, 3.5vw, 40px); overflow: hidden; }.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(90% 120% at 100% 0%, rgba(1,174,103,0.2), transparent 55%), radial-gradient(90% 120% at 0% 100%, rgba(253,174,32,0.16), transparent 55%);
}
.page-hero + .section { padding-top: clamp(40px, 6vw, 64px) !important; }
.breadcrumb { font-size: 0.85rem; color: var(--text-mut); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--green-2); }
.page-hero h1 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); max-width: 720px; margin-bottom: 12px; }
.page-hero p { color: var(--text-soft); max-width: 620px; font-size: 1rem; }

/* Blocos de conteúdo de serviço ------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.split.rev > .split-media { order: 2; }
.split-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--border); }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 16px; }
.prose h3 { font-size: 1.2rem; margin: 22px 0 10px; }
.prose p { color: var(--text-soft); margin-bottom: 14px; }
.check-list { display: grid; gap: 12px; margin-top: 18px; }
.check-list li { display: flex; gap: 12px; color: var(--text-soft); }
.check-list li svg { flex: 0 0 auto; width: 22px; height: 22px; stroke: var(--green-2); margin-top: 2px; }

/* Vídeo embed provisionado ----------------------------- */
.video-wrap { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; border: 1px solid var(--border); }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 720px) { .video-grid { grid-template-columns: 1fr; } }

/* Formulário ------------------------------------------- */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.88rem; font-family: var(--font-head); font-weight: 500; margin-bottom: 7px; color: var(--text-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm);
  background: var(--bg-soft); border: 1px solid var(--border-strong); color: var(--text);
  font: inherit; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-2); }
.field textarea { min-height: 130px; resize: vertical; }
.info-list { display: grid; gap: 18px; }
.info-item { display: flex; gap: 14px; }
.info-item .ii-ico { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; background: rgba(1,174,103,0.14); border: 1px solid var(--border); display: grid; place-items: center; }
.info-item .ii-ico svg { width: 22px; height: 22px; stroke: var(--green-2); }
.info-item h4 { font-size: 1rem; margin-bottom: 3px; }
.info-item p, .info-item a { color: var(--text-soft); font-size: 0.95rem; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16/7; margin-top: 8px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg); }

/* Seção clara — "respiro" no design ------------------- */
.section-light { background: #eef2f7; color: #1a2230; }
.section-light .eyebrow { color: #018a53; }
.section-light .eyebrow::before { background: var(--grad-green); }
.section-light .section-head h2 { color: #131a25; }
.section-light .section-head p { color: #4a586c; }
.section-light .feat {
  background: #ffffff;
  border-color: rgba(20, 30, 50, 0.08);
  box-shadow: 0 8px 24px rgba(20, 30, 50, 0.07);
}
.section-light .feat h3 { color: #131a25; }
.section-light .feat p { color: #4a586c; }

/* Reveal on scroll ------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

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

/* Responsivo ------------------------------------------- */
@media (max-width: 980px) {
  .grid-services, .grid-portfolio, .grid-steps { grid-template-columns: repeat(2, 1fr); }
  .grid-feats, .grid-reviews { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.rev > .split-media { order: 0; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  /* Overlay mais forte no mobile para leitura sobre a foto */
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(20,26,35,0.60) 0%, rgba(20,26,35,0.78) 55%, rgba(20,26,35,0.94) 100%),
      linear-gradient(90deg, rgba(20,26,35,0.55) 0%, rgba(20,26,35,0.30) 100%);
  }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-panel {
    display: block; position: fixed; inset: var(--header-h) 0 auto 0; z-index: 49;
    background: var(--bg-soft); border-bottom: 1px solid var(--border);
    padding: 14px var(--gutter) 24px; transform: translateY(-120%); transition: transform .3s ease;
  }
  .mobile-panel.open { transform: translateY(0); }
  .mobile-panel a { display: block; padding: 13px 4px; border-bottom: 1px solid var(--border); font-family: var(--font-head); font-weight: 500; color: var(--text-soft); }
  .mobile-panel .btn { display: flex; margin-top: 18px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .grid-services, .grid-portfolio, .grid-feats, .grid-reviews, .stats, .grid-steps { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
}
/* botões abaixo do vídeo na home ------------------------------------------- */
.vid-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px; }
.vid-links .btn { padding: 10px 16px; font-size: 0.9rem; }
@media (max-width: 560px) {
  .vid-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .vid-links .btn { width: 100%; }
  .vid-links .btn:last-child { grid-column: 1 / -1; }  /* o 5º ocupa a linha toda, centralizado */
}
