/* ===== TOKENS ===== */
:root {
  --bg:        #0a0d14;
  --bg2:       #0f1520;
  --bg3:       #162030;
  --border:    #1e3048;
  --accent:    #00c47a;
  --accent2:   #00e890;
  --accent-blue: #1a4fff;
  --text:      #eef2f8;
  --text-muted:#6b86a8;
  --white:     #ffffff;
  --green-wa:  #25D366;
  --radius:    8px;
  --header-h:  64px;
  --font:      'Inter', sans-serif;
  --shadow:    0 4px 24px rgba(0,0,0,.55);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea, button { font-family: var(--font); }

/* ===== UTILITÁRIOS ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.accent { color: var(--accent); }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(17,18,20,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  height: 100%; padding: 0 1.25rem;
  display: flex; align-items: center; gap: 2rem;
}
.logo { display: flex; align-items: baseline; gap: .35rem; flex-shrink: 0; }
.logo-neo { font-size: 1.5rem; font-weight: 900; color: var(--accent); letter-spacing: -.5px; }
.logo-maq { font-size: 1.5rem; font-weight: 900; background: linear-gradient(90deg, var(--white) 0%, #a0c8ff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -.5px; }
.logo-tagline { font-size: .68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-left: .25rem; }

.nav-top { display: flex; gap: 1.5rem; margin-left: auto; }
.nav-top a { font-size: .875rem; font-weight: 500; color: var(--text-muted); transition: color .2s; }
.nav-top a:hover, .nav-top a.active { color: var(--white); }

.btn-whatsapp-header {
  display: flex; align-items: center; gap: .4rem;
  background: var(--green-wa); color: #fff;
  padding: .45rem 1rem; border-radius: var(--radius);
  font-size: .82rem; font-weight: 600; flex-shrink: 0;
  transition: opacity .2s;
}
.btn-whatsapp-header:hover { opacity: .88; }
.btn-whatsapp-header svg { width: 16px; height: 16px; }

/* ===== BOTÕES ===== */
.btn-primary {
  display: inline-block;
  background: var(--accent); color: #fff;
  padding: .65rem 1.5rem; border-radius: var(--radius);
  font-weight: 700; font-size: .9rem;
  transition: background .2s, transform .1s;
  cursor: pointer; border: none;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--border); color: var(--text);
  padding: .63rem 1.5rem; border-radius: var(--radius);
  font-weight: 600; font-size: .9rem;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(135deg, #060a12 0%, #0a1628 60%, #0a1f10 100%);
  overflow: hidden;
  padding: 5rem 1.25rem 0;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 40%, rgba(0,196,122,.07) 0%, rgba(26,79,255,.06) 60%, transparent 100%);
}
.hero-content { position: relative; max-width: 680px; margin: 0 auto; text-align: center; }
.hero-eyebrow { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: 1rem; }
.hero-title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.25rem; }
.hero-sub { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  position: relative;
  max-width: 1200px; margin: 3.5rem auto 0;
  display: flex; justify-content: center; gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 2rem; padding-bottom: 2rem;
}
.stat { text-align: center; padding: 0 3rem; }
.stat-n { display: block; font-size: 2rem; font-weight: 900; color: var(--accent); }
.stat-l { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.stat-div { width: 1px; background: var(--border); align-self: stretch; }

/* ===== SECTION GENÉRICA ===== */
.section-title {
  font-size: 1.6rem; font-weight: 800;
  margin-bottom: 1.75rem;
  text-align: center;
}
.section-title::after {
  content: '';
  display: block; width: 40px; height: 3px;
  background: var(--accent); margin: .5rem auto 0;
  border-radius: 2px;
}

/* ===== CATEGORIAS ===== */
.section-cats { padding: 4rem 0; background: var(--bg2); }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
}
.cat-card {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem .75rem;
  font-size: .82rem; font-weight: 600; color: var(--text-muted);
  transition: border-color .2s, color .2s, transform .15s;
  text-align: center;
}
.cat-card:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.cat-icon { font-size: 1.5rem; }
.cat-card--all { border-style: dashed; }

/* ===== GRID DE EQUIPAMENTOS ===== */
.section-destaques { padding: 4rem 0; }
.equip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}
.equip-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.equip-card:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--shadow); }
.equip-card__img {
  width: 100%; height: 200px; object-fit: cover;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 3rem;
}
.equip-card__img img { width: 100%; height: 100%; object-fit: cover; }
.equip-card__body { padding: 1rem; flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.equip-card__cat { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); font-weight: 700; }
.equip-card__nome { font-size: 1rem; font-weight: 700; color: var(--white); }
.equip-card__desc { font-size: .82rem; color: var(--text-muted); flex: 1; }
.equip-card__status { margin-top: .5rem; }
.badge { display: inline-block; padding: .2rem .6rem; border-radius: 20px; font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.badge--disponivel { background: rgba(34,197,94,.15); color: #4ade80; }
.badge--reservado  { background: rgba(234,179,8,.15);  color: #facc15; }
.badge--vendido    { background: rgba(239,68,68,.12);  color: #f87171; }
.equip-card__footer { padding: 0 1rem 1rem; display: flex; gap: .5rem; }
.equip-card__footer a { flex: 1; text-align: center; font-size: .8rem; font-weight: 600; padding: .5rem; border-radius: 6px; }
.equip-card__btn-det { background: var(--bg3); color: var(--text); border: 1px solid var(--border); transition: border-color .2s; }
.equip-card__btn-det:hover { border-color: var(--accent); color: var(--accent); }
.equip-card__btn-wa { background: var(--green-wa); color: #fff; }
.equip-card__btn-wa:hover { opacity: .88; }

.ver-mais-wrap { text-align: center; margin-top: 2.5rem; }

/* ===== COMO FUNCIONA ===== */
.section-como { padding: 4rem 0; background: var(--bg2); }
.como-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.como-item { text-align: center; }
.como-num { font-size: 2.5rem; font-weight: 900; color: var(--accent); opacity: .5; line-height: 1; margin-bottom: .75rem; }
.como-item h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.como-item p { color: var(--text-muted); font-size: .88rem; }

/* ===== CATÁLOGO LAYOUT ===== */
.catalogo-layout { display: flex; gap: 0; min-height: calc(100vh - var(--header-h)); }

.sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--bg2); border-right: 1px solid var(--border);
  padding: 1.5rem 1rem;
  position: sticky; top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.sidebar-title { font-weight: 800; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; color: var(--text-muted); }
.busca-input {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  padding: .5rem .75rem; font-size: .85rem; margin-bottom: 1rem;
  outline: none; transition: border-color .2s;
}
.busca-input:focus { border-color: var(--accent); }
.busca-input::placeholder { color: var(--text-muted); }

.cat-list { display: flex; flex-direction: column; gap: .25rem; }
.cat-btn {
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  padding: .45rem .75rem; border-radius: 6px;
  color: var(--text-muted); font-size: .85rem; font-weight: 500;
  transition: background .15s, color .15s;
}
.cat-btn:hover { background: var(--bg3); color: var(--text); }
.cat-btn.active { background: rgba(232,131,10,.15); color: var(--accent); font-weight: 700; }

.catalogo-main { flex: 1; padding: 2rem 1.5rem; }
.catalogo-header { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.5rem; }
.catalogo-titulo { font-size: 1.4rem; font-weight: 800; }
.catalogo-count { font-size: .82rem; color: var(--text-muted); }
.sem-resultado { padding: 3rem; text-align: center; color: var(--text-muted); }
.sem-resultado a { color: var(--accent); }

/* ===== DETALHE DO EQUIPAMENTO ===== */
.detalhe-layout { padding: 2rem 1.25rem; }
.back-link { display: inline-block; margin-bottom: 1.5rem; color: var(--text-muted); font-size: .85rem; }
.back-link:hover { color: var(--accent); }
.detalhe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.detalhe-galeria { display: flex; flex-direction: column; gap: .75rem; }
.detalhe-img-principal {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius);
  background: var(--bg2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; overflow: hidden;
}
.detalhe-img-principal img { width: 100%; height: 100%; object-fit: cover; }
.detalhe-info { display: flex; flex-direction: column; gap: 1.25rem; }
.detalhe-cat { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); font-weight: 700; }
.detalhe-nome { font-size: 1.8rem; font-weight: 900; color: var(--white); line-height: 1.15; }
.detalhe-desc { color: var(--text-muted); }
.detalhe-specs { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; }
.detalhe-specs h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .75rem; }
.spec-row { display: flex; justify-content: space-between; padding: .45rem 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.spec-row:last-child { border-bottom: none; }
.spec-row span:first-child { color: var(--text-muted); }
.spec-row span:last-child { font-weight: 600; }
.detalhe-acoes { display: flex; flex-direction: column; gap: .75rem; }
.detalhe-acoes a { text-align: center; padding: .75rem; border-radius: var(--radius); font-weight: 700; }
.detalhe-acoes .btn-wa-grande { background: var(--green-wa); color: #fff; font-size: 1rem; }
.detalhe-acoes .btn-wa-grande:hover { opacity: .88; }

/* ===== FOOTER ===== */
.footer { background: var(--bg2); border-top: 1px solid var(--border); margin-top: auto; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 2.5rem; padding: 3rem 0 2rem; }
.footer-brand .logo { font-size: 1.2rem; margin-bottom: .75rem; display: flex; }
.footer-brand p { color: var(--text-muted); font-size: .85rem; max-width: 280px; }
.footer-links, .footer-contato { display: flex; flex-direction: column; gap: .5rem; }
.footer-links strong, .footer-contato strong { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .25rem; }
.footer-links a { color: var(--text-muted); font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contato p { color: var(--text-muted); font-size: .85rem; }
.btn-whatsapp-footer {
  display: inline-block; margin-top: .5rem;
  background: var(--green-wa); color: #fff;
  padding: .45rem 1rem; border-radius: var(--radius);
  font-size: .82rem; font-weight: 600; width: fit-content;
}
.footer-copy { text-align: center; padding: 1.25rem; border-top: 1px solid var(--border); color: var(--text-muted); font-size: .78rem; }

/* ===== SOBRE ===== */
.sobre-hero { padding: 5rem 1.25rem 4rem; background: linear-gradient(135deg, #060a12 0%, #0a1628 100%); text-align: center; }
.sobre-hero h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: .75rem; }
.sobre-hero p { color: var(--text-muted); font-size: 1.05rem; }
.sobre-corpo { padding: 4rem 1.25rem; }
.sobre-texto h2 { font-size: 1.3rem; font-weight: 800; margin: 2rem 0 .75rem; color: var(--accent); }
.sobre-texto p { color: var(--text-muted); margin-bottom: .75rem; }
.sobre-lista { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1rem; }
.sobre-lista li { color: var(--text-muted); font-size: .9rem; }
.sobre-motivos { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.motivo { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.motivo strong { color: var(--white); display: block; margin-bottom: .4rem; }
.motivo p { color: var(--text-muted); font-size: .85rem; margin: 0; }
.sobre-cta { background: var(--bg2); border-top: 1px solid var(--border); padding: 4rem 1.25rem; }
.sobre-cta h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: .75rem; }
.sobre-cta p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ===== CONTATO ===== */
.contato-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.contato-bloco { margin-bottom: 1.75rem; }
.contato-bloco h3 { font-size: 1rem; font-weight: 700; margin-bottom: .35rem; }
.contato-bloco p { color: var(--text-muted); }
.contato-form-wrap { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.contato-form-wrap h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: .25rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.form-group input, .form-group textarea {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  padding: .65rem .9rem; font-size: .9rem; outline: none;
  transition: border-color .2s; resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .catalogo-layout { flex-direction: column; }
  .sidebar { width: 100%; height: auto; position: static; border-right: none; border-bottom: 1px solid var(--border); }
  .cat-list { flex-direction: row; flex-wrap: wrap; }
  .detalhe-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .sobre-lista { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-top { display: none; }
  .logo-tagline { display: none; }
  .hero-title { font-size: 1.8rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: center; }
  .stat-div { width: 60px; height: 1px; }
}

/* ===== GALERIA DE FOTOS ===== */
.galeria { display: flex; flex-direction: column; gap: .75rem; }

.galeria-principal {
  position: relative;
  width: 100%; aspect-ratio: 4/3;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  cursor: zoom-in;
}
.galeria-principal img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .25s;
}
.galeria-principal--vazia {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  cursor: default;
}

/* Setas de navegação */
.galeria-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.55); color: #fff;
  border: none; border-radius: 50%;
  width: 40px; height: 40px; font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, opacity .2s;
  z-index: 2; opacity: 0;
}
.galeria-principal:hover .galeria-nav { opacity: 1; }
.galeria-nav--prev { left: .75rem; }
.galeria-nav--next { right: .75rem; }
.galeria-nav:hover { background: var(--accent); }

/* Contador */
.galeria-contador {
  position: absolute; bottom: .6rem; right: .75rem;
  background: rgba(0,0,0,.6); color: #fff;
  font-size: .72rem; font-weight: 600;
  padding: .2rem .55rem; border-radius: 20px;
}

/* Miniaturas */
.galeria-thumbs {
  display: flex; gap: .5rem; overflow-x: auto;
  padding-bottom: .25rem; scroll-snap-type: x mandatory;
}
.galeria-thumbs::-webkit-scrollbar { height: 4px; }
.galeria-thumbs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.thumb {
  flex-shrink: 0; scroll-snap-align: start;
  width: 72px; height: 72px;
  border-radius: 6px; overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer; background: var(--bg3);
  transition: border-color .2s;
  padding: 0;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb--ativa { border-color: var(--accent); }
.thumb:hover { border-color: var(--accent2); }

/* Lightbox (clique na foto principal) */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-overlay img {
  max-width: 92vw; max-height: 88vh;
  border-radius: var(--radius); object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 1rem; right: 1.25rem;
  color: #fff; font-size: 2rem; cursor: pointer;
  background: none; border: none; line-height: 1;
}

/* ── Ícone de play na thumb de vídeo ── */
.thumb-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.45);
  font-size: 1.1rem; color: #fff;
  border-radius: 4px;
  pointer-events: none;
}

/* ── Iframe de vídeo na galeria ── */
.galeria-principal iframe {
  width: 100%; height: 100%;
  border: none; border-radius: var(--radius);
  display: block;
}

/* ===== BANNER DE DESTAQUE ===== */
.banner-destaque {
  background: linear-gradient(90deg, var(--accent-blue) 0%, #0f2a6e 100%);
  border-bottom: 1px solid rgba(0,196,122,.3);
  padding: .6rem 1.25rem;
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; position: relative;
}
.banner-destaque__inner {
  display: flex; align-items: center; gap: .75rem;
  flex-wrap: wrap; justify-content: center;
}
.banner-destaque__tag {
  background: var(--accent); color: #000;
  font-size: .72rem; font-weight: 800;
  padding: .2rem .6rem; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .06em;
  white-space: nowrap;
}
.banner-destaque__texto {
  font-size: .88rem; color: #e0eaff;
}
.banner-destaque__texto a {
  color: var(--accent); font-weight: 700;
  text-decoration: underline;
}
.banner-destaque__fechar {
  position: absolute; right: 1rem;
  background: none; border: none; color: rgba(255,255,255,.5);
  font-size: 1rem; cursor: pointer; line-height: 1;
  transition: color .2s;
}
.banner-destaque__fechar:hover { color: #fff; }

/* ===== FORMULÁRIO DE BUSCA ===== */
.section-busca {
  background: linear-gradient(135deg, var(--bg2) 0%, #0a1628 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.busca-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2.5rem; align-items: center;
}
.busca-form-texto h2 {
  font-size: 1.4rem; font-weight: 800;
  margin-bottom: .4rem; color: var(--white);
}
.busca-form-texto p { color: var(--text-muted); font-size: .9rem; }
.busca-form-campos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.busca-form-campos input,
.busca-form-campos textarea {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  padding: .65rem .9rem; font-size: .88rem;
  outline: none; transition: border-color .2s;
  font-family: var(--font);
}
.busca-form-campos input:focus,
.busca-form-campos textarea:focus { border-color: var(--accent); }
.busca-form-campos input::placeholder,
.busca-form-campos textarea::placeholder { color: var(--text-muted); }
.busca-form-campos textarea {
  grid-column: 1 / -1; resize: none;
}
.busca-form-campos .btn-primary {
  grid-column: 1 / -1; width: 100%;
  padding: .75rem; font-size: .95rem;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  display: flex; align-items: center; gap: .5rem;
  background: #25D366; color: #fff;
  padding: .7rem 1.1rem .7rem .85rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  font-weight: 700; font-size: .88rem;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-float__label { white-space: nowrap; }

/* ===== INSTAGRAM FOOTER ===== */
.btn-instagram-footer {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: .4rem;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  padding: .45rem 1rem; border-radius: var(--radius);
  font-size: .82rem; font-weight: 600; width: fit-content;
  transition: opacity .2s;
}
.btn-instagram-footer:hover { opacity: .88; }

/* ===== RESPONSIVE NOVAS SEÇÕES ===== */
@media (max-width: 768px) {
  .busca-form-wrap { grid-template-columns: 1fr; gap: 1.25rem; }
  .busca-form-campos { grid-template-columns: 1fr; }
  .busca-form-campos textarea,
  .busca-form-campos .btn-primary { grid-column: 1; }
  .wa-float__label { display: none; }
  .wa-float { padding: .8rem; border-radius: 50%; }
  .banner-destaque__tag { display: none; }
}
