/* ==========================================================================
   Abelha Whats — base.css (global: tokens, tipografia, componentes compartilhados)
   ========================================================================== */

:root {
  --brand-navy: #0b132b;
  --brand-deep: #0f172a;
  --brand-blue: #2563eb;
  --brand-sky: #3b82f6;
  --brand-gold: #f59e0b;
  --brand-amber: #eab308;
  --glass-bg: rgba(11, 19, 43, 0.72);
  --glass-bg-scrolled: rgba(11, 19, 43, 0.88);
  --orb-blue: rgba(37, 99, 235, 0.22);
  --orb-gold: rgba(245, 158, 11, 0.16);
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Tipografia */
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* Logo */
.site-logo {
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

/* Header e footer (fundo escuro) */
#site-header .site-logo,
#contato .site-logo {
  filter: brightness(0) invert(1);
}

.site-logo--sm {
  filter: brightness(1.05);
}

/* Gradiente de texto (não replicável só com Tailwind) */
.text-gradient-gold {
  background: linear-gradient(135deg, var(--brand-amber) 0%, var(--brand-gold) 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero pattern + orbes */
.hero-pattern {
  background-image: radial-gradient(rgba(59, 130, 246, 0.14) 1px, transparent 1px);
  background-size: 28px 28px;
}

.glow-orb-blue {
  background: radial-gradient(circle, var(--orb-blue) 0%, transparent 70%);
}

.glow-orb-gold {
  background: radial-gradient(circle, var(--orb-gold) 0%, transparent 70%);
}

/* Header glass */
.glass-header {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-header.scrolled {
  background: var(--glass-bg-scrolled);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* CTAs — hover lift */
.btn-cta {
  transition: all 0.3s var(--ease-out);
}

.btn-cta:hover {
  transform: translateY(-2px);
}

/* Feature / trust cards — interações compostas */
.feature-card {
  transition: all 0.35s var(--ease-out);
}

.feature-card:hover {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 20px 40px -12px rgba(37, 99, 235, 0.12), 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.feature-card.feature-gold:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 20px 40px -12px rgba(245, 158, 11, 0.12), 0 0 0 1px rgba(245, 158, 11, 0.1);
}

.feature-icon {
  transition: transform 0.35s var(--ease-out);
}

.feature-card:hover .feature-icon {
  transform: translateY(-6px);
}

.feature-list li {
  transition: transform 0.2s ease, color 0.2s ease;
}

.feature-card:hover .feature-list li {
  transform: translateX(3px);
}

.trust-card {
  transition: all 0.35s var(--ease-out);
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.1);
}

.trust-icon {
  transition: transform 0.4s var(--ease-spring), box-shadow 0.35s ease;
}

.trust-card:hover .trust-icon {
  transform: rotate(3deg) scale(1.1);
  box-shadow: 0 8px 20px -6px rgba(37, 99, 235, 0.25);
}

/* Bento cards */
.bento-card {
  transition: all 0.35s var(--ease-out);
  background-color: rgba(248, 250, 252, 0.65);
  border-color: rgba(226, 232, 240, 0.85);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), inset 0 0 0 1px rgba(241, 245, 249, 0.9);
}

.bento-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 24px 48px -16px rgba(37, 99, 235, 0.12);
  background-color: rgba(248, 250, 252, 0.95);
}

.bento-card:hover .bento-visual {
  transform: scale(1.02);
}

.bento-visual {
  transition: transform 0.4s ease;
}

.capability-pill {
  transition: all 0.25s ease;
}

.capability-pill:hover {
  border-color: rgba(37, 99, 235, 0.4);
  background: #eff6ff;
  transform: translateY(-2px);
}

/* Mockup interativo */
.mockup-card {
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.mockup-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.15);
}

.mockup-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 9;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.45), rgba(255, 255, 255, 0.12), rgba(59, 130, 246, 0.45), transparent);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.35);
  animation: mockup-scanline 6s ease-in-out infinite;
  pointer-events: none;
}

.mockup-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 10;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.04) 44%, rgba(59, 130, 246, 0.08) 50%, rgba(255, 255, 255, 0.04) 56%, transparent 62%);
  transform: translateX(-120%);
  animation: mockup-shimmer 5s ease-in-out infinite;
  pointer-events: none;
}

.chat-bubble {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.mockup-card:hover .chat-bubble {
  transform: translateX(2px);
}

.status-pulse {
  animation: status-ping 2s var(--ease-out) infinite;
}

.animate-float {
  animation: float 5s ease-in-out infinite;
}

.fade-up {
  animation: fade-up 0.7s ease-out forwards;
}

.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* Pills de filtro compartilhadas (abas index + soluções) */
.pill-filter {
  transition: all 0.3s var(--ease-out);
}

.pill-filter:not(.active) {
  border-color: #e2e8f0;
  background: #fff;
  color: #64748b;
}

.pill-filter:not(.active):hover {
  border-color: #94a3b8;
  color: #334155;
  background: #f8fafc;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px -4px rgba(15, 23, 42, 0.1);
}

.pill-filter.active {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-sky));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px -6px rgba(37, 99, 235, 0.45);
  transform: translateY(-1px);
}

/* Skip link — acessibilidade */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--brand-gold);
  color: var(--brand-navy);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0 0 0.5rem 0.5rem;
  text-decoration: none;
}

.skip-link:focus {
  left: 1rem;
  top: 0;
}

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

/* Hero home — sem scroll horizontal */
.hero-home {
  overflow: hidden;
  isolation: isolate;
}

.hero-home__orbs {
  z-index: 0;
}

.hero-home__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-home__orb-blue {
  top: -10rem;
  right: -4rem;
  width: min(32rem, 90vw);
  height: min(32rem, 90vw);
}

.hero-home__orb-gold {
  bottom: -5rem;
  left: -3rem;
  width: min(24rem, 75vw);
  height: min(24rem, 75vw);
}

/* Abelha orbitando visual do hero (index, planos) */
.hero-bee-orbit {
  z-index: 20;
}

.hero-bee-orbit__inner {
  position: absolute;
  inset: 0;
}

.hero-bee-orbit__path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.hero-bee-orbit__path-line {
  stroke: rgba(251, 191, 36, 0.45);
  stroke-width: 2;
  stroke-dasharray: 6 8;
  animation: hero-bee-path-dash 1.5s linear infinite;
}

@keyframes hero-bee-path-dash {
  to { stroke-dashoffset: -28; }
}

.hero-bee-orbit__flyer {
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  margin: -2.25rem 0 0 -2.25rem;
  animation: hero-bee-orbit-fly 11s ease-in-out infinite;
  filter: drop-shadow(0 10px 22px rgba(245, 158, 11, 0.55));
}

@supports (offset-path: path("M 0 0")) {
  .hero-bee-orbit__flyer {
    offset-path: path("M 40 200 Q 80 40 160 60 T 280 100 Q 240 220 160 200 T 40 200");
    offset-rotate: auto;
    offset-anchor: center;
    left: auto;
    top: auto;
    margin: 0;
    animation: hero-bee-orbit-offset 11s ease-in-out infinite;
  }
}

@keyframes hero-bee-orbit-offset {
  0% { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}

@keyframes hero-bee-orbit-fly {
  0% { left: 12%; top: 72%; transform: rotate(-12deg); }
  25% { left: 48%; top: 18%; transform: rotate(8deg); }
  50% { left: 82%; top: 38%; transform: rotate(14deg); }
  75% { left: 62%; top: 68%; transform: rotate(-6deg); }
  100% { left: 12%; top: 72%; transform: rotate(-12deg); }
}

.hero-bee-orbit__chip {
  position: absolute;
  border-radius: 9999px;
  padding: 0.3rem 0.6rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  animation: hero-bee-chip-glow 11s ease-in-out infinite;
}

.hero-bee-orbit__chip--1 {
  left: -2%;
  top: 62%;
  background: #dbeafe;
  color: #1d4ed8;
  animation-delay: 0s;
}

.hero-bee-orbit__chip--2 {
  left: 32%;
  top: 2%;
  background: #fef3c7;
  color: #b45309;
  animation-delay: -3.6s;
}

.hero-bee-orbit__chip--3 {
  right: -2%;
  top: 32%;
  background: #ede9fe;
  color: #6d28d9;
  animation-delay: -7.2s;
}

@keyframes hero-bee-chip-glow {
  0%, 32%, 100% { opacity: 0.5; transform: scale(0.94); }
  10%, 22% { opacity: 1; transform: scale(1.06); }
}

/* Faixa de setores / social proof */
.sector-pill {
  transition: border-color 0.25s ease, background 0.25s ease;
}

.sector-pill:hover {
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(239, 246, 255, 0.8);
}

/* FAQ claro (home) */
.faq-section-light .faq-item {
  border-color: rgba(226, 232, 240, 0.85);
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-section-light .faq-item summary {
  list-style: none;
  color: #0f172a;
}

.faq-section-light .faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-section-light .faq-item[open] {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 8px 24px -8px rgba(37, 99, 235, 0.12);
}

.faq-section-light .faq-item[open] summary {
  color: var(--brand-blue);
}

.faq-section-light .faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--brand-blue);
}

.faq-section-light .faq-chevron {
  background: #f1f5f9;
  color: #64748b;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

/* Menu mobile */
.mobile-nav-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out), opacity 0.3s ease;
  opacity: 0;
}

.mobile-nav-panel.is-open {
  max-height: 22rem;
  opacity: 1;
}

/* Depoimentos */
.testimonial-card {
  transition: all 0.35s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 16px 40px -12px rgba(37, 99, 235, 0.1);
}

/* Keyframes globais */
@keyframes mockup-scanline {
  0%, 100% { top: 18%; opacity: 0; }
  8% { opacity: 1; }
  50% { top: 78%; opacity: 1; }
  92% { opacity: 0; }
}

@keyframes mockup-shimmer {
  0%, 100% { transform: translateX(-120%); opacity: 0.6; }
  45%, 55% { transform: translateX(120%); opacity: 1; }
}

@keyframes status-ping {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Jornada da abelha — animação pelos chats (home + soluções)
   ========================================================================== */

.bee-journey__pattern {
  background-image: radial-gradient(rgba(16, 185, 129, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}

.bee-journey__stage {
  position: relative;
  min-height: 22rem;
  padding: 1rem 0 2rem;
}

@media (min-width: 640px) {
  .bee-journey__stage {
    min-height: 26rem;
  }
}

.bee-journey__path-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.bee-journey__path-line {
  stroke: rgba(16, 185, 129, 0.2);
  stroke-width: 2;
  stroke-dasharray: 8 10;
  animation: bee-path-dash 1.2s linear infinite;
}

@keyframes bee-path-dash {
  to { stroke-dashoffset: -36; }
}

.bee-journey__chats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 36rem;
  margin-inline: auto;
}

.bee-chat {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  max-width: 92%;
  animation: bee-chat-idle 16s ease-in-out infinite;
  animation-delay: calc(var(--chat-i, 0) * -2.4s);
}

.bee-chat--in {
  align-self: flex-start;
}

.bee-chat--out {
  align-self: flex-end;
  flex-direction: row;
}

.bee-chat--system {
  align-self: center;
  max-width: 94%;
}

.bee-chat__avatar {
  display: flex;
  height: 2rem;
  width: 2rem;
  shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #e2e8f0;
  color: #64748b;
}

.bee-chat__avatar--agent {
  background: #dbeafe;
  color: #2563eb;
}

.bee-chat__avatar--bee {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0b132b;
}

.bee-chat__bubble {
  position: relative;
  border-radius: 1rem;
  padding: 0.55rem 0.85rem;
  box-shadow: 0 4px 14px -6px rgba(15, 23, 42, 0.12);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.bee-chat--in .bee-chat__bubble {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-bottom-left-radius: 0.25rem;
}

.bee-chat--out .bee-chat__bubble {
  background: linear-gradient(135deg, #dcf8c6 0%, #d1f4bb 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-bottom-right-radius: 0.25rem;
}

.bee-chat__bubble--transfer {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: rgba(37, 99, 235, 0.2);
}

.bee-chat__bubble--rating {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.bee-chat__bubble--module {
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 1rem;
}

.bee-chat__bubble--ia {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  border-color: rgba(109, 40, 217, 0.2);
}

.bee-chat__bubble--broadcast {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-color: rgba(245, 158, 11, 0.25);
}

.bee-chat__module {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.35rem;
  border-radius: 9999px;
  padding: 0.15rem 0.5rem;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bee-chat__module--blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.bee-chat__module--violet {
  background: #ede9fe;
  color: #6d28d9;
}

.bee-chat__module--emerald {
  background: #d1fae5;
  color: #047857;
}

.bee-chat__module--amber {
  background: #fef3c7;
  color: #b45309;
}

.bee-chat__module--gold {
  background: #fde68a;
  color: #92400e;
}

.bee-chat__name {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #64748b;
}

.bee-chat--out .bee-chat__name {
  color: #166534;
}

.bee-chat__text {
  margin-top: 0.15rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #1e293b;
}

.bee-chat__time {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
  margin-top: 0.25rem;
  font-size: 0.625rem;
  color: #94a3b8;
}

.bee-chat__checks {
  display: inline;
  height: 0.75rem;
  width: 0.75rem;
  color: #34d399;
}

.bee-chat__stars {
  color: #f59e0b;
  letter-spacing: 0.05em;
}

.bee-chat__audio {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: #475569;
}

@keyframes bee-chat-idle {
  0%, 42%, 100% {
    box-shadow: none;
    filter: none;
  }
  6%, 12% {
    filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.35));
  }
}

.bee-chat--in .bee-chat__bubble,
.bee-chat--system .bee-chat__bubble {
  animation: bee-chat-glow-in 16s ease-in-out infinite;
  animation-delay: calc(var(--chat-i, 0) * -2.4s);
}

.bee-chat--out .bee-chat__bubble {
  animation: bee-chat-glow-out 16s ease-in-out infinite;
  animation-delay: calc(var(--chat-i, 0) * -2.4s);
}

@keyframes bee-chat-glow-in {
  0%, 38%, 100% { transform: scale(1); box-shadow: 0 4px 14px -6px rgba(15, 23, 42, 0.12); }
  5%, 10% { transform: scale(1.02); box-shadow: 0 8px 24px -4px rgba(16, 185, 129, 0.25); }
}

@keyframes bee-chat-glow-out {
  0%, 38%, 100% { transform: scale(1); }
  5%, 10% { transform: scale(1.02); box-shadow: 0 8px 24px -4px rgba(34, 197, 94, 0.3); }
}

.bee-journey__bee {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  width: 3.25rem;
  height: 3.25rem;
  margin-left: -1.625rem;
  margin-top: -1.625rem;
  animation: bee-fly-path 16s ease-in-out infinite;
  filter: drop-shadow(0 6px 12px rgba(245, 158, 11, 0.45));
}

@supports (offset-path: path("M 0 0")) {
  .bee-journey__bee {
    offset-path: path("M -2% 28% C 12% 10% 22% 48% 34% 26% S 54% 14% 66% 36% S 84% 58% 102% 24%");
    offset-rotate: auto;
    offset-anchor: center;
    animation: bee-fly-along 16s ease-in-out infinite;
    left: auto;
    top: auto;
    margin: 0;
  }
}

.bee-journey__bee-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.bee-journey__wing {
  transform-origin: center;
  animation: bee-wing-flap 0.12s ease-in-out infinite alternate;
}

.bee-journey__wing--r {
  animation-delay: 0.06s;
}

@keyframes bee-wing-flap {
  from { transform: scaleY(0.65); opacity: 0.7; }
  to { transform: scaleY(1); opacity: 1; }
}

.bee-journey__trail {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2rem;
  height: 2rem;
  margin: -1rem 0 0 -1rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.35) 0%, transparent 70%);
  animation: bee-trail-pulse 0.4s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes bee-trail-pulse {
  from { transform: scale(0.8); opacity: 0.5; }
  to { transform: scale(1.2); opacity: 0.9; }
}

@keyframes bee-fly-along {
  0% { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}

@keyframes bee-fly-path {
  0% { left: -4%; top: 26%; transform: rotate(-12deg); }
  14% { left: 18%; top: 10%; transform: rotate(6deg); }
  28% { left: 38%; top: 30%; transform: rotate(-8deg); }
  42% { left: 55%; top: 14%; transform: rotate(10deg); }
  58% { left: 72%; top: 38%; transform: rotate(-6deg); }
  74% { left: 88%; top: 20%; transform: rotate(8deg); }
  100% { left: 104%; top: 32%; transform: rotate(-10deg); }
}

.bee-journey.is-paused .bee-journey__bee,
.bee-journey.is-paused .bee-chat,
.bee-journey.is-paused .bee-chat__bubble,
.bee-journey.is-paused .bee-journey__path-line {
  animation-play-state: paused;
}

/* Acessibilidade: reduzir movimento */
@media (prefers-reduced-motion: reduce) {
  .animate-float,
  .status-pulse,
  .fade-up,
  .mockup-card::after,
  .mockup-scanline {
    animation: none;
    opacity: 1;
  }

  .btn-cta:hover,
  .feature-card:hover,
  .trust-card:hover,
  .bento-card:hover,
  .capability-pill:hover,
  .trust-card:hover .trust-icon,
  .testimonial-card:hover,
  .pill-filter:not(.active):hover {
    transform: none;
  }

  .bee-journey__bee {
    offset-path: none;
    left: 50% !important;
    top: 42% !important;
    margin: -1.625rem 0 0 -1.625rem !important;
    transform: rotate(-5deg) !important;
    animation: none !important;
  }

  .bee-journey__wing {
    animation: none;
  }

  .bee-journey__trail,
  .bee-journey__path-line {
    animation: none;
  }

  .bee-chat,
  .bee-chat__bubble {
    animation: none;
  }

  .hero-bee-orbit__flyer {
    animation: none;
    left: 50% !important;
    top: 18% !important;
    transform: translate(-50%, -50%) !important;
    offset-path: none;
  }

  .hero-bee-orbit__path-line,
  .hero-bee-orbit__chip {
    animation: none;
  }

  .hero-bee-orbit__chip {
    opacity: 1;
  }
}
