/* Akabamentus -- Home v1 (fonte de verdade: Home.dc.html original)
   Consome os tokens de tokens.css (cores, fontes, containers, [data-reveal], [data-zoom], keyframes akb2-dot/akb2-kb).
   Nao redeclarar tokens aqui -- so var(--token).
   Excecoes hardcoded (nao existem em tokens.css, mesmas usadas no handoff original): bordas #EDEBE7,
   cinza de texto #84888D e #A3A7AC -- marcadas com comentario em cada ocorrencia. */

/* ---------- reset minimo + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 600; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; background: none; border: none; padding: 0; margin: 0; color: inherit; cursor: pointer; }
blockquote { margin: 0; }
address { font-style: normal; }
cite { font-style: normal; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.akb1-container {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--container-pad-x);
}

/* ---------- eyebrow / links / botoes ---------- */
.akb1-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.akb1-eyebrow--light { color: rgba(255, 255, 255, .85); }

.akb1-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color .25s var(--ease-standard);
}
.akb1-link:hover { color: var(--accent); }

.akb1-btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: 1em 2em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: background-color .3s var(--ease-standard), color .3s var(--ease-standard), border-color .3s var(--ease-standard), transform .3s var(--ease-standard);
}
.akb1-btn--fill { background: var(--accent); color: var(--white); }
.akb1-btn--fill:hover { background: var(--accent-dark); }
.akb1-btn--outline { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .55); }
.akb1-btn--outline:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.akb1-btn__arrow {
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
  flex: none;
}

.akb1-note-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  letter-spacing: .02em;
}

/* ================= HEADER ================= */
.akb1-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding-block: 26px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .4s var(--ease-standard), padding .4s var(--ease-standard), border-color .4s var(--ease-standard), box-shadow .4s var(--ease-standard), backdrop-filter .4s var(--ease-standard);
}
.akb1-header.is-scrolled {
  padding-block: 16px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom-color: var(--border-2);
  box-shadow: var(--shadow-header-scrolled);
}
.akb1-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.akb1-header__logo {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--white);
  transition: color .4s var(--ease-standard);
}
.akb1-header.is-scrolled .akb1-header__logo { color: var(--ink); }
.akb1-header__logo strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: .16em;
}
.akb1-header__logo span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .42em;
  opacity: .62;
}
.akb1-header__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  color: var(--white);
  transition: color .4s var(--ease-standard);
}
.akb1-header.is-scrolled .akb1-header__nav { color: var(--ink); }
.akb1-header__nav a {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: .02em;
  opacity: .92;
  transition: color .3s var(--ease-standard), opacity .3s var(--ease-standard);
}
.akb1-header__nav a:hover { opacity: 1; color: var(--accent); }

/* ================= HERO / SLIDER ================= */
.akb1-hero {
  position: relative;
  height: 100svh;
  min-height: 520px;
  background: var(--ink);
  overflow: hidden;
}
.akb1-hero__slides { position: absolute; inset: 0; }

.akb1-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 1100ms var(--ease-standard);
}
.akb1-slide.is-active {
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}

.akb1-slide__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--bg-placeholder-2);
}
.akb1-slide__media--placeholder {
  background-color: var(--bg-placeholder-2);
  background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, .04) 0 2px, transparent 2px 30px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.akb1-slide__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  will-change: transform;
}
.akb1-slide__ph-note {
  position: relative;
  z-index: 1;
  padding: 0 var(--container-pad-x) 28px 0;
  color: rgba(255, 255, 255, .4);
}
.akb1-slide__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18, 19, 22, .55) 0%, rgba(18, 19, 22, .15) 38%, rgba(18, 19, 22, .25) 60%, rgba(18, 19, 22, .8) 100%);
}
.akb1-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(150px, 17vw, 220px);
  max-width: 760px;
  color: var(--white);
  /* .akb1-container centraliza a caixa inteira (margin-inline:auto) -- aqui a caixa
     precisa ficar encostada na mesma borda esquerda do logo/nav, so a LARGURA do texto
     e limitada a 760px (linha de leitura), nao a posicao. Sem isso o texto do hero fica
     centralizado numa caixa estreita em vez de alinhado a esquerda como no design original. */
  margin-inline: 0;
}
.akb1-slide__eyebrow,
.akb1-slide__title,
.akb1-slide__text,
.akb1-slide__cta {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-standard), transform .9s var(--ease-standard);
}
.akb1-slide.is-active .akb1-slide__eyebrow { transition-delay: 0s; }
.akb1-slide.is-active .akb1-slide__title { transition-delay: .1s; }
.akb1-slide.is-active .akb1-slide__text { transition-delay: .2s; }
.akb1-slide.is-active .akb1-slide__cta { transition-delay: .3s; }
.akb1-slide.is-active .akb1-slide__eyebrow,
.akb1-slide.is-active .akb1-slide__title,
.akb1-slide.is-active .akb1-slide__text,
.akb1-slide.is-active .akb1-slide__cta {
  opacity: 1;
  transform: none;
}

.akb1-slide__eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 20px;
}
.akb1-slide__title {
  font-size: clamp(40px, 6.4vw, 86px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 600;
  max-width: 14ch;
  margin-bottom: 22px;
}
.akb1-slide__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
  max-width: 520px;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 34px;
}
.akb1-slide__cta { display: flex; flex-wrap: wrap; gap: 14px; }

@media (prefers-reduced-motion: reduce) {
  .akb1-slide { transition: none; }
  .akb1-slide__eyebrow, .akb1-slide__title, .akb1-slide__text, .akb1-slide__cta { transition: none; }
}

.akb1-slide__img.akb1-kb-run { animation: akb2-kb 9400ms cubic-bezier(.33, .1, .36, 1) forwards; }

/* ---- controles: dots / contador / setas ---- */
.akb1-hero__controls {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp(28px, 4vw, 48px);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--white);
}
.akb1-hero__dots { display: flex; gap: clamp(20px, 3vw, 40px); }
.akb1-dot { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; min-width: 76px; }
.akb1-dot__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .5);
  transition: color .3s var(--ease-standard);
}
.akb1-dot.is-active .akb1-dot__label { color: var(--white); }
.akb1-dot__bar { width: 100%; height: 2px; background: rgba(255, 255, 255, .25); overflow: hidden; }
.akb1-dot__bar-fill { display: block; height: 100%; width: 0%; background: var(--white); }

.akb1-hero__nav { display: flex; align-items: center; gap: 18px; }
.akb1-hero__counter {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .7);
}
.akb1-arrow {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: background-color .3s var(--ease-standard), border-color .3s var(--ease-standard);
}
.akb1-arrow:hover { background: rgba(255, 255, 255, .12); border-color: var(--white); }
.akb1-arrow__chevron { width: 8px; height: 8px; border-top: 2px solid var(--white); border-right: 2px solid var(--white); }
.akb1-arrow--prev .akb1-arrow__chevron { transform: rotate(-135deg); margin-left: 3px; }
.akb1-arrow--next .akb1-arrow__chevron { transform: rotate(45deg); margin-right: -3px; }

/* ================= BARRA DE CONFIANCA ================= */
.akb1-trust { background: var(--white); border-bottom: 1px solid var(--border-2); }
.akb1-trust__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-block: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted-1);
}
.akb1-trust__item { display: inline-flex; align-items: center; gap: 10px; }
.akb1-trust__dot { width: 7px; height: 7px; border-radius: var(--radius-pill); background: var(--accent); flex: none; }
.akb1-trust__phone { transition: color .25s var(--ease-standard); }
.akb1-trust__phone:hover { color: var(--accent); }

/* ================= SECTION HEAD (novidades / depoimentos / loja) ================= */
.akb1-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.akb1-section-head h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.025em;
}
.akb1-section-head p {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--text-muted-1);
  max-width: 52ch;
  margin-top: 14px;
}
.akb1-section-head--center { flex-direction: column; align-items: center; text-align: center; max-width: 640px; margin-inline: auto; }

/* ================= NOVIDADES ================= */
.akb1-novidades { padding-block: var(--pad-section-lg); }
.akb1-prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
}
.akb1-prod-card {
  display: block;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-card);
  padding: 14px 14px 20px;
  transition: box-shadow .3s var(--ease-standard), border-color .3s var(--ease-standard);
}
.akb1-prod-card:hover { box-shadow: var(--shadow-card-hover); border-color: var(--border-2); }
.akb1-prod-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
}
.akb1-prod-card__media img { width: 100%; height: 100%; object-fit: cover; }
.akb1-prod-card__badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 1;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 2px;
}
.akb1-prod-card__cat {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted-3);
  margin-bottom: 8px;
}
.akb1-prod-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.32;
  letter-spacing: -.01em;
  min-height: 44px;
  margin-bottom: 10px;
  color: var(--ink);
}
.akb1-prod-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.akb1-prod-card__price { font-family: var(--font-body); font-size: 13.5px; color: var(--text-muted-2); }
.akb1-prod-card__arrow {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: background-color .3s var(--ease-standard), border-color .3s var(--ease-standard);
}
.akb1-prod-card__arrow::after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
  transform: rotate(45deg);
  margin-left: -2px;
  transition: border-color .3s var(--ease-standard);
}
.akb1-prod-card:hover .akb1-prod-card__arrow { background: var(--ink); border-color: var(--ink); }
.akb1-prod-card:hover .akb1-prod-card__arrow::after { border-color: var(--white); }

/* ================= HISTORIA ================= */
.akb1-historia { background: var(--bg-soft); padding-block: var(--pad-section-lg); }
.akb1-historia__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(56px, 6vw, 100px);
  align-items: start;
}
.akb1-historia__col--text h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin-bottom: 22px;
}
.akb1-historia__col--text p {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--text-muted-1);
  margin-bottom: 18px;
}
.akb1-historia__diffs {
  margin-top: clamp(32px, 4vw, 48px);
  display: grid;
  gap: 22px;
}
.akb1-historia__diffs li { display: grid; gap: 6px; }
.akb1-historia__diffs strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.01em;
  color: var(--ink);
}
.akb1-historia__diffs span {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: #84888D; /* nao existe token equivalente em tokens.css */
}

.akb1-historia__col--media { position: relative; margin-top: 6px; }
.akb1-historia__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  background-color: var(--bg-placeholder);
  background-image: repeating-linear-gradient(135deg, rgba(18, 19, 22, .06) 0 2px, transparent 2px 26px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.akb1-historia__photo-note {
  color: var(--text-placeholder-label);
  text-align: center;
  padding: 0 24px;
}
.akb1-historia__card {
  position: absolute;
  bottom: -26px;
  left: -26px;
  max-width: 280px;
  background: var(--white);
  border: 1px solid #EDEBE7; /* nao existe token equivalente em tokens.css */
  border-radius: var(--radius-card);
  padding: 24px 28px;
  box-shadow: var(--shadow-float-card);
}
.akb1-historia__card-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.akb1-historia__card-address {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted-4);
}

/* ================= DEPOIMENTOS ================= */
.akb1-depoimentos { padding-block: var(--pad-section-sm); }
.akb1-depo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.4vw, 28px);
}
.akb1-depo-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid #EDEBE7; /* nao existe token equivalente em tokens.css */
  border-radius: var(--radius-card);
  padding: 34px 32px;
}
.akb1-depo-card--dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.akb1-depo-card__quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  color: var(--accent);
}
.akb1-depo-card p { font-family: var(--font-body); font-size: 16.5px; line-height: 1.68; }
.akb1-depo-card footer { display: grid; gap: 2px; }
.akb1-depo-card cite { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; }
.akb1-depo-card footer span { font-family: var(--font-body); font-size: 13px; color: var(--text-placeholder-label); }
.akb1-depo-card--dark footer span { color: rgba(255, 255, 255, .6); }

.akb1-depoimentos__note {
  margin-top: clamp(28px, 3vw, 40px);
  color: #A3A7AC; /* nao existe token equivalente em tokens.css */
  text-align: center;
}

/* ================= LOJA ================= */
.akb1-loja {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding-block: var(--pad-section-lg);
  overflow: hidden;
}
.akb1-loja__glow {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 18, 31, .28) 0%, rgba(193, 18, 31, 0) 70%);
  pointer-events: none;
}
.akb1-loja > .akb1-container { position: relative; z-index: 1; }
.akb1-loja .akb1-section-head h2 {
  font-size: clamp(32px, 5vw, 68px);
  line-height: 1.0;
  letter-spacing: -.03em;
  max-width: 16ch;
}
.akb1-loja .akb1-section-head p { font-size: 17px; line-height: 1.7; color: rgba(255, 255, 255, .75); max-width: 54ch; }

.akb1-loja__tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  margin-bottom: clamp(36px, 4vw, 56px);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.akb1-loja__tile {
  background: var(--ink);
  padding: clamp(28px, 3vw, 40px) clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background-color .3s var(--ease-standard);
}
.akb1-loja__tile:hover { background: #1c1d21; }
.akb1-loja__tile-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .22em;
  color: rgba(255, 255, 255, .45);
}
.akb1-loja__tile-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -.01em;
}
.akb1-loja__cta { display: flex; flex-wrap: wrap; gap: 16px; }

/* ================= SHOWROOM ================= */
.akb1-showroom { padding-block: var(--pad-section-lg); }
.akb1-showroom__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 5vw, 80px);
}
.akb1-showroom__col h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}
.akb1-showroom__col > p {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--text-muted-1);
  max-width: 44ch;
  margin-bottom: 22px;
}
.akb1-showroom__block + .akb1-showroom__block { margin-top: 28px; }
.akb1-showroom__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #A3A7AC; /* nao existe token equivalente em tokens.css */
  margin-bottom: 10px;
}
.akb1-showroom__block p { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--ink); }

/* ================= FOOTER ================= */
.akb1-footer { background: var(--bg-soft); padding-top: var(--pad-section-sm); }
.akb1-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: clamp(28px, 4vw, 40px);
}
.akb1-footer__logo { display: inline-flex; align-items: baseline; gap: 8px; }
.akb1-footer__logo strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .16em;
  color: var(--ink);
}
.akb1-footer__logo span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .42em;
  color: var(--text-muted-3);
}
.akb1-footer__nav { display: flex; align-items: center; flex-wrap: wrap; }
.akb1-footer__nav a {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-muted-4);
  padding-inline: 16px;
  border-left: 1px solid var(--border-1);
  transition: color .25s var(--ease-standard);
}
.akb1-footer__nav a:first-child { padding-left: 0; border-left: none; }
.akb1-footer__nav a:hover { color: var(--accent); }

.akb1-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 22px;
  border-top: 1px solid var(--border-2);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted-3);
}
.akb1-footer__tmc { display: inline-flex; align-items: center; gap: 8px; }
.akb1-footer__tmc a:first-child { transition: color .25s var(--ease-standard); }
.akb1-footer__tmc a:first-child:hover { color: var(--ink); }

/* ================= WHATSAPP FAB ================= */
.akb-wa-fab{position:fixed;right:20px;bottom:20px;width:60px;height:60px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 25px -5px rgba(45,62,79,.35);z-index:9999999;text-decoration:none;transition:transform .25s ease,background-color .25s ease}
.akb-wa-fab:hover{background:#1DA851;transform:translateY(-3px)}
.akb-wa-fab__icon{width:30px;height:30px;color:#fff;display:flex}
.akb-wa-fab__icon svg{width:100%;height:100%}
.akb-wa-fab__dot{position:absolute;top:-2px;right:-2px;width:14px;height:14px;border-radius:50%;background:#fff;box-shadow:0 0 0 2px #25D366}
.akb-wa-fab__dot::after{content:'';position:absolute;inset:3px;border-radius:50%;background:#25D366;animation:akb2-dot 2.6s ease-out infinite}
@media only screen and (max-width:480px){.akb-wa-fab{right:12px;bottom:12px;width:54px;height:54px}}
