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

:root {
  --green: #00ff66;
  --green-dim: #00cc52;
  --green-glow: rgba(0, 255, 102, 0.25);
  --green-glow-strong: rgba(0, 255, 102, 0.45);
  --bg: #0a0a0a;
  --surface: #111111;
  --surface-2: #181818;
  --border: rgba(0, 255, 102, 0.12);
  --border-hover: rgba(0, 255, 102, 0.4);
  --text: #ffffff;
  --text-muted: #888888;
  --text-soft: #bbbbbb;
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Background com imagem e overlay ───────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('../assets/icons/background-fundo.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.18;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.72) 0%,
    rgba(10,10,10,0.55) 40%,
    rgba(10,10,10,0.82) 80%,
    rgba(10,10,10,0.97) 100%
  );
  z-index: 0;
  pointer-events: none;
}

/* ── Background Canvas ──────────────────────────────────────── */
#bgCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}

/* ── Orbs ───────────────────────────────────────────────────── */
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,255,102,0.15) 0%, transparent 70%);
  top: -100px;
  right: -80px;
  animation-delay: 0s;
}

.orb-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0,255,102,0.1) 0%, transparent 70%);
  bottom: 100px;
  left: -80px;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0 auto;
  padding: 40px 20px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── Profile / Header ───────────────────────────────────────── */
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.logo-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.logo-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-glow-strong) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

.logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 28px rgba(0, 255, 102, 0.5));
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes logoEntrance {
  from { opacity: 0; transform: scale(0.5) rotate(-10deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.brand-name {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  animation: slideUp 0.6s 0.2s both;
}

.brand-name .green {
  color: var(--green);
  text-shadow: 0 0 30px var(--green-glow-strong);
}

.tagline {
  font-size: 15px;
  color: var(--text-soft);
  font-weight: 400;
  letter-spacing: 0.3px;
  animation: slideUp 0.6s 0.3s both;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  animation: slideUp 0.6s 0.4s both;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(0, 255, 102, 0.07);
  border: 1px solid var(--border);
  color: var(--green);
  letter-spacing: 0.3px;
}

.badge svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  flex-shrink: 0;
}

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

/* ── Links Section ──────────────────────────────────────────── */
.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: slideUp 0.6s 0.5s both;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.link-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
}

.link-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 32px rgba(0, 255, 102, 0.15);
}

.link-card:hover::before { opacity: 1; }

.link-card:active {
  transform: translateY(0) scale(0.98);
}

/* Primary CTA */
.link-card.primary {
  background: linear-gradient(135deg, #0d2b1a 0%, #0a1f14 100%);
  border-color: rgba(0, 255, 102, 0.3);
  font-family: var(--font);
  font-weight: 400;
  font-size: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
}

.link-card.primary:hover {
  border-color: var(--green);
  box-shadow: 0 8px 40px rgba(0, 255, 102, 0.25);
}

/* Link Icon */
.link-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 255, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  position: relative;
  z-index: 1;
}

.link-icon svg { width: 20px; height: 20px; }

.link-icon.instagram {
  background: linear-gradient(135deg, rgba(193,53,132,0.2), rgba(253,29,29,0.15), rgba(252,176,69,0.15));
  color: #f77737;
}

.link-icon.tiktok {
  background: rgba(255,255,255,0.06);
  color: #ffffff;
}

.link-icon.youtube {
  background: rgba(255, 0, 0, 0.12);
  color: #ff3d3d;
}

.link-icon.email {
  background: rgba(100, 149, 255, 0.12);
  color: #6495ff;
}

.link-icon.catalogo-icon {
  background: rgba(0, 255, 102, 0.08);
  color: var(--green);
}

/* Link Text */
.link-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
  text-align: center;
  align-items: center;
}

.link-label {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}

.link-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.link-arrow {
  font-size: 16px;
  color: var(--green);
  opacity: 0.6;
  transition: all 0.2s;
  position: relative;
  z-index: 1;
}

.link-card:hover .link-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ── Specialties ────────────────────────────────────────────── */
.specialties {
  animation: slideUp 0.6s 0.6s both;
}

.section-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 16px;
}

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

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.2s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.spec-item::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(0,255,102,0.1) 50%,
    rgba(255,255,255,0.05) 55%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
  transition: none;
}

.spec-item:hover::before {
  left: 160%;
  transition: left 0.5s ease;
}

.spec-item:hover {
  border-color: rgba(0,255,102,0.45);
  background: var(--surface-2);
  box-shadow: 0 4px 24px rgba(0,255,102,0.1), inset 0 0 20px rgba(0,255,102,0.04);
}

.spec-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--green);
  opacity: 0.75;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s;
  position: relative;
  z-index: 2;
}

.spec-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

.spec-item:hover .spec-icon {
  transform: translateY(-4px) scale(1.15);
  opacity: 1;
}

.spec-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
  transition: color 0.2s;
  position: relative;
  z-index: 2;
}

.spec-item:hover .spec-label {
  color: var(--green);
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: slideUp 0.6s 0.7s both;
}

.footer-text {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-sub {
  font-size: 11px;
  color: #444;
}

/* ── Modal Catálogo ─────────────────────────────────────────── */
.cat-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cat-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cat-modal {
  background: #0e0e16;
  border: 1px solid rgba(0,255,102,0.15);
  border-bottom: none;
  border-radius: 24px 24px 0 0;
  width: 100%;
  max-width: 480px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 -20px 60px rgba(0,255,102,0.06);
  overflow: hidden;
}

.cat-overlay.open .cat-modal {
  transform: translateY(0);
}

.cat-modal::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  margin: 14px auto 0;
  flex-shrink: 0;
}

.cat-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 20px 12px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cat-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.cat-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Filtros */
.cat-filters {
  display: flex;
  gap: 8px;
  padding: 12px 20px;
  overflow-x: auto;
  flex-shrink: 0;
  scrollbar-width: none;
}

.cat-filters::-webkit-scrollbar { display: none; }

.cat-filter-btn {
  white-space: nowrap;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.cat-filter-btn:hover,
.cat-filter-btn.active {
  background: rgba(0,255,102,0.1);
  border-color: rgba(0,255,102,0.4);
  color: var(--green);
}

/* Grid */
.cat-grid {
  flex: 1;
  overflow-y: auto;
  padding: 4px 16px 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-content: start;
}

.cat-grid::-webkit-scrollbar { width: 3px; }
.cat-grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.cat-item {
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: zoom-in;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}

.cat-item:hover {
  border-color: rgba(0,255,102,0.45);
  box-shadow: 0 6px 28px rgba(0,255,102,0.15);
  transform: scale(1.03);
}

.cat-item:active { transform: scale(0.97); }

.cat-item-img-wrap {
  overflow: hidden;
  width: 100%;
  background: #0a0a0a;
}

.cat-item-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.cat-item:hover .cat-item-img {
  transform: scale(1.08);
}

.cat-item-info {
  padding: 8px 10px;
}

.cat-item-nome {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cat-item-cat {
  font-size: 10px;
  color: var(--green);
  margin-top: 2px;
  opacity: 0.8;
}

/* Empty state */
.cat-empty {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  gap: 10px;
}

.cat-empty-icon { font-size: 36px; opacity: 0.4; }

.cat-empty p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.cat-empty code {
  background: rgba(0,255,102,0.08);
  color: var(--green);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 11px;
}

/* Footer CTA */
.cat-footer {
  display: flex;
  gap: 8px;
  padding: 12px 16px 28px;
  flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cat-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 10px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 600;
  font-family: var(--font);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  overflow: hidden;
}

.cat-cta-btn.drive {
  background: rgba(66,133,244,0.1);
  border: 1px solid rgba(66,133,244,0.3);
  color: #6ba3f5;
}

.cat-cta-btn.drive:hover {
  background: rgba(66,133,244,0.18);
  border-color: #6ba3f5;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(66,133,244,0.2);
}

.cat-cta-btn.wpp {
  background: rgba(0,255,102,0.08);
  border: 1px solid rgba(0,255,102,0.3);
  color: var(--green);
  animation: btnGlowPulse 2.5s ease-in-out infinite;
}

.cat-cta-btn.wpp:hover {
  background: rgba(0,255,102,0.16);
  border-color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,255,102,0.25);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.4);
  border-radius: 50%;
  color: #ef4444;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.lightbox-close:hover, .lightbox-close:active {
  background: rgba(239,68,68,0.28);
  border-color: #ef4444;
  transform: scale(1.1);
}

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  max-width: 90vw;
  max-height: 90vh;
}

#lightboxImg {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 12px;
  object-fit: contain;
  border: 1px solid rgba(0,255,102,0.2);
  box-shadow: 0 0 40px rgba(0,255,102,0.1);
}

.lightbox-caption {
  font-size: 14px;
  color: var(--text-soft);
  text-align: center;
}

/* ── Modal WhatsApp ─────────────────────────────────────────── */
.wpp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 12px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.wpp-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.wpp-modal {
  background: #111117;
  border: 1px solid rgba(0,255,102,0.18);
  border-bottom: none;
  border-radius: 24px 24px 0 0;
  width: 100%;
  max-width: 480px;
  padding: 28px 20px 40px;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 -20px 60px rgba(0,255,102,0.08);
}

.wpp-overlay.open .wpp-modal {
  transform: translateY(0);
}

.wpp-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ef4444;
  transition: all 0.2s;
}

.wpp-close:hover, .wpp-close:active {
  background: rgba(239,68,68,0.25);
  border-color: #ef4444;
  transform: scale(1.1);
}
.wpp-close svg { width: 14px; height: 14px; }

/* Handle bar */
.wpp-modal::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  margin: 0 auto 20px;
}

.wpp-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  text-align: center;
}

.wpp-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,255,102,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 4px;
}

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

.wpp-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.wpp-subtitle {
  font-size: 13px;
  color: var(--text-muted);
}

/* Cards dos atendentes */
.wpp-atendentes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.atendente-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.atendente-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,255,102,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
}

.atendente-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 6px 28px rgba(0,255,102,0.12);
  transform: translateY(-1px);
}

.atendente-card:hover::before { opacity: 1; }
.atendente-card:active { transform: scale(0.98); }

/* Foto do atendente */
.atendente-foto-wrap {
  position: relative;
  flex-shrink: 0;
}

.atendente-foto {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,255,102,0.3);
  display: block;
}

.atendente-inicial {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d2b1a, #1a3a28);
  border: 2px solid rgba(0,255,102,0.3);
  color: var(--green);
  font-size: 22px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}

.online-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid #111117;
  box-shadow: 0 0 6px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 4px var(--green); }
  50% { box-shadow: 0 0 10px var(--green), 0 0 20px rgba(0,255,102,0.3); }
}

.atendente-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  z-index: 1;
}

.atendente-nome {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.atendente-cargo {
  font-size: 12px;
  color: var(--text-muted);
}

.atendente-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,255,102,0.08);
  border: 1px solid rgba(0,255,102,0.35);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  animation: btnGlowPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
}

.atendente-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(0,255,102,0.25) 50%,
    rgba(255,255,255,0.1) 55%,
    transparent 75%
  );
  animation: btnShimmer 2.5s ease-in-out infinite;
}

@keyframes btnGlowPulse {
  0%, 100% {
    box-shadow: 0 0 6px rgba(0,255,102,0.2), 0 0 0px rgba(0,255,102,0);
    border-color: rgba(0,255,102,0.35);
  }
  50% {
    box-shadow: 0 0 14px rgba(0,255,102,0.45), 0 0 28px rgba(0,255,102,0.15);
    border-color: rgba(0,255,102,0.7);
  }
}

@keyframes btnShimmer {
  0%   { left: -80%; }
  60%  { left: 140%; }
  100% { left: 140%; }
}

.atendente-card:hover .atendente-btn {
  transform: scale(1.06);
  box-shadow: 0 0 20px rgba(0,255,102,0.5), 0 0 40px rgba(0,255,102,0.2);
}

/* Shimmer reutilizado */
.atendente-card .shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(0,255,102,0.1) 50%, rgba(255,255,255,0.05) 55%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.atendente-card:hover .shimmer {
  left: 160%;
  transition: left 0.55s ease;
}

/* ── Touch-action (evita conflito scroll vs efeitos) ────────── */
.link-card, .spec-item, .atendente-card, .cat-item, .cat-cta-btn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* ── Touch / Mobile :active states ─────────────────────────── */
.link-card:active {
  transform: scale(0.97) !important;
  border-color: rgba(0,255,102,0.5) !important;
  box-shadow: 0 0 20px rgba(0,255,102,0.15) !important;
  transition: transform 0.1s ease, border-color 0.1s, box-shadow 0.1s !important;
}

.link-card:active .shimmer {
  left: 160%;
  transition: left 0.4s ease !important;
}

.link-card:active .link-arrow {
  transform: translateX(4px);
  opacity: 1;
}

.spec-item:active {
  transform: scale(0.93) !important;
  border-color: rgba(0,255,102,0.5) !important;
  box-shadow: 0 0 16px rgba(0,255,102,0.12) !important;
  transition: transform 0.1s ease !important;
}

.spec-item:active .spec-icon {
  transform: translateY(-4px) scale(1.18) !important;
}

.spec-item:active .spec-label {
  color: var(--green) !important;
}

.spec-item:active::before {
  left: 160% !important;
  transition: left 0.4s ease !important;
}

.atendente-card:active {
  transform: scale(0.97) !important;
  border-color: rgba(0,255,102,0.5) !important;
  transition: transform 0.1s ease !important;
}

.cat-item:active {
  transform: scale(0.95) !important;
  border-color: rgba(0,255,102,0.4) !important;
  transition: transform 0.1s ease !important;
}

.cat-cta-btn:active {
  transform: scale(0.96) !important;
  transition: transform 0.1s ease !important;
}

/* Garante que :hover funciona como :active no touch */
@media (hover: none) {
  .link-card:hover { transform: none; box-shadow: none; border-color: var(--border); }
  .spec-item:hover { transform: none; box-shadow: none; border-color: var(--border); }
  .atendente-card:hover { transform: none; box-shadow: none; border-color: var(--border); }
}

/* ── Mobile tweaks ──────────────────────────────────────────── */
@media (max-width: 380px) {
  .container { padding: 32px 16px 40px; }
  .brand-name { font-size: 32px; }
  .spec-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 480px) {
  .container { padding: 60px 24px 60px; }
}
