/* BagPoint: guarda-malas em Copacabana */

:root {
  --noite: #000;
  --grafite: #15130F;
  --grafite-2: #1D1A14;
  --linha: #2E2A22;
  --amarelo: #FEC131;
  --amarelo-claro: #FFD35E;
  --ambar: #E9A400;
  --calcada: #FBF7EF;
  --pedra: #A8A193;
  --tinta: #2A2108;
  --mar: #08131B;

  --font: "Archivo", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --hand: "Caveat Brush", "Comic Sans MS", cursive;

  --wrap: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --header: 72px;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

  --calcadao: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='80' viewBox='0 0 160 80'%3E%3Cg fill='none' stroke='%23FEC131' stroke-width='20'%3E%3Cpath d='M-80 -20q40 24 80 0t80 0 80 0 80 0'/%3E%3Cpath d='M-80 20q40 24 80 0t80 0 80 0 80 0'/%3E%3Cpath d='M-80 60q40 24 80 0t80 0 80 0 80 0'/%3E%3Cpath d='M-80 100q40 24 80 0t80 0 80 0 80 0'/%3E%3C/g%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--noite);
  color: var(--calcada);
  font-family: var(--font);
  font-size: 1.125rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

h1, h2, h3, p, figure { margin: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
address { font-style: normal; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.ico {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wrap {
  width: min(100% - 2 * var(--gutter), var(--wrap));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--amarelo);
  color: #000;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}
.skip:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--amarelo);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Tipografia de destaque */

.display {
  font-weight: 900;
  font-stretch: 68%;
  text-transform: uppercase;
  font-size: clamp(2.75rem, 6.4vw, 5.25rem);
  line-height: .9;
  letter-spacing: -.005em;
  text-wrap: balance;
}

/* Botões */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  min-height: 54px;
  padding: .75em 1.4em;
  border-radius: 12px;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .25s var(--ease-out), background-color .2s, color .2s, border-color .2s;
}
.btn .ico { width: 1.35em; height: 1.35em; }
.btn:active { transform: translateY(1px) scale(.98); }

.btn--yellow { background: var(--amarelo); color: #000; }
.btn--yellow:hover { background: var(--amarelo-claro); transform: translateY(-2px); }

.btn--ghost { border: 2px solid rgba(251, 247, 239, .35); color: var(--calcada); }
.btn--ghost:hover { border-color: var(--calcada); background: var(--calcada); color: #000; }

.btn--sm { min-height: 44px; padding: .5em 1em; font-size: .95rem; }

/* Cabeçalho */

.top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  transition: background-color .3s, box-shadow .3s;
}
html:not(.js) .top,
.top.is-scrolled {
  background: rgba(0, 0, 0, .86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--linha);
}
.top__inner { display: flex; align-items: center; gap: 24px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.brand__pin { width: 38px; height: 38px; }
.brand__word {
  font-weight: 800;
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: .01em;
}
.brand__word span:last-child { color: var(--amarelo); }

.top__nav { margin-left: auto; display: flex; gap: 28px; }
.top__nav a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--pedra);
  text-decoration: none;
  transition: color .2s;
}
.top__nav a:hover { color: var(--calcada); }
.top .btn { margin-left: 8px; }

@media (max-width: 880px) {
  .top__nav { display: none; }
  .top .btn { margin-left: auto; }
}

/* Hero */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(calc(100svh - 48px), 900px);
  padding: calc(var(--header) + 24px) 0 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.hero__title {
  font-weight: 900;
  font-stretch: 64%;
  text-transform: uppercase;
  font-size: clamp(3.25rem, 7.4vw, 7.25rem);
  line-height: .86;
  letter-spacing: -.01em;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .05em; }
.hero__title .line > span {
  display: block;
  transform: translateY(105%);
  animation: rise 1s var(--ease-out) .1s forwards;
}
.hero__title .line + .line > span { animation-delay: .22s; }
.line--yellow { color: var(--amarelo); }

@keyframes rise { to { transform: none; } }

.hero__lede {
  margin-top: 28px;
  max-width: 34ch;
  font-size: clamp(1.125rem, 1.5vw, 1.3125rem);
}
.hero__en { margin-top: 10px; color: var(--pedra); font-size: 1rem; }
.hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__facts {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  color: var(--pedra);
  font-size: 1rem;
}
.hero__facts li { display: flex; align-items: center; gap: 8px; }
.hero__facts .ico { width: 20px; height: 20px; color: var(--amarelo); }

.hero__lede, .hero__en, .hero__cta, .hero__facts {
  opacity: 0;
  animation: appear .9s var(--ease-out) .55s forwards;
}
@keyframes appear { to { opacity: 1; } }

.scene { width: 100%; height: auto; max-width: 600px; margin-inline: auto; overflow: visible; }

@media (max-width: 900px) {
  .hero { min-height: 0; }
  .hero__grid { grid-template-columns: 1fr; gap: 8px; }
  .hero__art { width: 100%; max-width: 480px; margin: 8px auto -24px; }
}

.scene .sun { animation: sunset 18s ease-in-out infinite alternate; }
@keyframes sunset { to { transform: translateY(26px); } }

.scene .shimmer rect {
  transform-box: fill-box;
  transform-origin: center;
  animation: shimmer 3.4s ease-in-out infinite;
}
.scene .shimmer rect:nth-child(2) { animation-delay: -.7s; }
.scene .shimmer rect:nth-child(3) { animation-delay: -1.4s; }
.scene .shimmer rect:nth-child(4) { animation-delay: -2.1s; }
.scene .shimmer rect:nth-child(5) { animation-delay: -2.8s; }
@keyframes shimmer {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(.66); opacity: .5; }
}

.scene .foam { stroke-dasharray: 5 13; animation: foam 3s linear infinite; }
@keyframes foam { to { stroke-dashoffset: -36; } }

/* Pino que cai (hero e mapa) */

.pin-drop, .pin-shadow, .ring {
  transform-box: fill-box;
  transform-origin: 50% 100%;
}
.pin-shadow, .ring { transform-origin: center; }
.ring { opacity: 0; }

.js [data-reveal]:not(.is-in) .pin-drop,
.js [data-reveal]:not(.is-in) .pin-shadow { opacity: 0; }

.is-in .pin-drop { animation: drop 1.3s both; }
.is-in .pin-shadow { animation: shadow-in 1.3s both, shadow-float 4.6s 1.8s ease-in-out infinite; }
.is-in .ring { animation: ring 2.6s 1s var(--ease-out) infinite; }
.is-in .ring:nth-child(2) { animation-delay: 1.85s; }
.is-in .ring:nth-child(3) { animation-delay: 2.7s; }
.is-in .pin-float { animation: float 4.6s 1.8s ease-in-out infinite; }

@keyframes drop {
  0% { transform: translateY(-560px); opacity: 0; animation-timing-function: cubic-bezier(.55, 0, 1, .45); }
  12% { opacity: 1; }
  52% { transform: translateY(0) scale(1, 1); animation-timing-function: ease-out; }
  60% { transform: translateY(0) scale(1.14, .84); animation-timing-function: ease-out; }
  74% { transform: translateY(-40px) scale(.95, 1.05); animation-timing-function: ease-in; }
  86% { transform: translateY(0) scale(1.05, .95); animation-timing-function: ease-out; }
  100% { transform: translateY(0) scale(1, 1); opacity: 1; }
}
@keyframes shadow-in {
  0% { transform: scale(.2); opacity: 0; }
  52% { transform: scale(1); opacity: .9; }
  60% { transform: scale(1.18); }
  74% { transform: scale(.75); opacity: .6; }
  100% { transform: scale(1); opacity: .9; }
}
@keyframes shadow-float { 50% { transform: scale(.84); opacity: .6; } }
@keyframes float { 50% { transform: translateY(-10px); } }
@keyframes ring {
  0% { transform: scale(.35); opacity: .9; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Calçadão de Copacabana */

.calcadao {
  height: clamp(64px, 9vw, 112px);
  background-color: var(--noite);
  background-image: var(--calcadao);
  background-size: 160px 80px;
  background-position: var(--shift, 0px) 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 70%);
  mask-image: linear-gradient(to bottom, transparent, #000 70%);
}
.calcadao--foot {
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 40%, #000 55%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 40%, #000 55%, transparent);
}

/* Seções */

.sec { position: relative; padding-block: clamp(80px, 11vw, 144px); }
.sec--yellow { background: var(--amarelo); color: #000; }
.sec--yellow :focus-visible { outline-color: #000; }
.sec--graphite { background: var(--grafite); }

.sec__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .75fr);
  gap: 24px 64px;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 88px);
}
.sec__lede { max-width: 40ch; font-size: 1.1875rem; color: var(--pedra); }
.split__copy .sec__lede, .contact__copy .sec__lede { margin-top: 24px; }
.sec--yellow .sec__lede { color: var(--tinta); }

@media (max-width: 880px) {
  .sec__head { grid-template-columns: 1fr; }
}

/* Como funciona: a rota */

.route { position: relative; }

.route__track {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  pointer-events: none;
}
.route[data-orient="h"] .route__track {
  height: 4px;
  margin-top: -2px;
  background: repeating-linear-gradient(90deg, rgba(0, 0, 0, .28) 0 10px, transparent 10px 18px);
}
.route[data-orient="v"] .route__track {
  width: 4px;
  margin-left: -2px;
  background: repeating-linear-gradient(180deg, rgba(0, 0, 0, .28) 0 10px, transparent 10px 18px);
}
.route__fill {
  position: absolute;
  inset: 0;
  background: #000;
  border-radius: 4px;
  transform-origin: 0 0;
}
.route[data-orient="h"] .route__fill { transform: scaleX(var(--p, 0)); }
.route[data-orient="v"] .route__fill { transform: scaleY(var(--p, 0)); }

.route__token {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #000;
  color: var(--amarelo);
  will-change: transform;
}
.route:not([data-orient]) .route__token { display: none; }

.route__stops {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}

.stop__mark {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 3px solid #000;
  border-radius: 50%;
  background: var(--amarelo);
  color: #000;
  transition: background-color .35s, color .35s, transform .45s var(--ease-spring);
}
.stop__mark .ico { width: 32px; height: 32px; }
.stop.is-reached .stop__mark { background: #000; color: var(--amarelo); transform: scale(1.08); }

.stop__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  font-weight: 900;
  font-stretch: 70%;
  text-transform: uppercase;
  font-size: clamp(2.125rem, 3.4vw, 2.875rem);
  line-height: 1;
}
.stop__n {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid #000;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  font-stretch: 100%;
}
.stop p { margin-top: 14px; max-width: 32ch; color: var(--tinta); }

@media (max-width: 760px) {
  .route__stops { grid-template-columns: 1fr; gap: 56px; }
  .stop { display: grid; grid-template-columns: 76px minmax(0, 1fr); column-gap: 20px; }
  .stop__mark { grid-row: span 2; }
  .stop__title { margin-top: 18px; }
  .stop p { margin-top: 10px; }
}

/* Segurança */

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.case { width: 100%; max-width: 480px; margin-inline: auto; overflow: visible; }
.case .stamp { transform-box: fill-box; transform-origin: center; animation: spin 60s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.case .tag { transform-box: view-box; transform-origin: 342px 158px; }
.js .case:not(.is-in) .tag { opacity: 0; }
.case.is-in .tag { animation: tag-in 1.8s var(--ease-out) both, sway 5s 1.8s ease-in-out infinite; }
@keyframes tag-in {
  0% { transform: rotate(-80deg); opacity: 0; }
  12% { opacity: 1; }
  34% { transform: rotate(24deg); }
  54% { transform: rotate(-13deg); }
  72% { transform: rotate(6deg); }
  87% { transform: rotate(-2.5deg); }
  100% { transform: rotate(0); opacity: 1; }
}
@keyframes sway {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(3deg); }
  75% { transform: rotate(-3deg); }
}
.case .click { transform-box: fill-box; transform-origin: center; opacity: 0; }
.case.is-in .click { animation: click .7s .25s ease-out both; }
@keyframes click {
  0% { transform: scale(.3); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.tag__num {
  font-family: var(--font);
  font-weight: 800;
  font-stretch: 72%;
  font-size: 21px;
  letter-spacing: 1px;
  fill: var(--calcada);
  font-variant-numeric: tabular-nums;
}
.tag__brand {
  font-family: var(--font);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  fill: var(--amarelo);
}

.assure {
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.assure li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--linha);
}
.assure .ico { width: 30px; height: 30px; color: var(--amarelo); }
.assure h3 { font-size: 1.1875rem; font-weight: 800; line-height: 1.25; }
.assure p { margin-top: 6px; font-size: 1rem; color: var(--pedra); }

@media (max-width: 920px) {
  .split { grid-template-columns: 1fr; }
  .case { max-width: 380px; }
}
@media (max-width: 560px) {
  .assure { grid-template-columns: 1fr; gap: 24px; }
}

/* Quando usar: painel de embarque */

.board {
  border: 1px solid var(--linha);
  border-radius: 18px;
  overflow: hidden;
  background: #0A0907;
}
.board__row {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.4fr) auto;
  gap: 16px 32px;
  align-items: center;
  padding: 24px clamp(18px, 3vw, 36px);
  border-top: 1px solid var(--linha);
}
.board__row--head {
  padding-block: 14px;
  border-top: 0;
  background: #120F0B;
  color: var(--pedra);
  font-size: .9375rem;
  font-weight: 600;
}
.board__row--head span:last-child { min-width: 196px; }
.board__sit { color: var(--pedra); font-size: 1.0625rem; }
.board__act {
  font-weight: 800;
  font-stretch: 74%;
  text-transform: uppercase;
  font-size: clamp(1.375rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: .01em;
}
.board__status { min-width: 196px; color: var(--amarelo); font-weight: 800; text-transform: uppercase; }

.tiles { display: flex; gap: 3px; }
.tile {
  position: relative;
  display: grid;
  place-items: center;
  width: 22px;
  height: 32px;
  border-radius: 4px;
  background: var(--grafite-2);
  color: var(--amarelo);
  font-weight: 800;
  font-stretch: 80%;
  font-size: 1.0625rem;
  line-height: 1;
}
.tile::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: #000;
}
.tile.flip { animation: flip .1s linear; }
@keyframes flip {
  0% { transform: perspective(80px) rotateX(0); }
  50% { transform: perspective(80px) rotateX(80deg); }
  100% { transform: perspective(80px) rotateX(0); }
}

@media (max-width: 760px) {
  .board__row--head { display: none; }
  .board__row { grid-template-columns: 1fr; gap: 8px; padding-block: 22px; }
  .board__row:nth-child(2) { border-top: 0; }
  .board__status { margin-top: 6px; }
}

/* Onde estamos */

.where {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.where__map {
  border: 1px solid var(--linha);
  border-radius: 24px;
  overflow: hidden;
  background: var(--mar);
}
.map { width: 100%; height: auto; }
.map text { font-family: var(--font); }
.map__hood {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  fill: #6E685B;
  paint-order: stroke;
  stroke: #100F0C;
  stroke-width: 6px;
  stroke-linejoin: round;
}
.map__sea { font-size: 12px; font-weight: 600; fill: #6F8C9E; }
.map__ocean { font-size: 20px; font-weight: 300; font-style: italic; letter-spacing: 6px; fill: #1E4058; }
.map__street { font-size: 11px; font-weight: 700; letter-spacing: .5px; fill: var(--amarelo); }
.map__label { font-size: 13px; font-weight: 700; fill: var(--calcada); paint-order: stroke; stroke: #100F0C; stroke-width: 5px; }
.map__m { font-size: 14px; font-weight: 900; fill: var(--calcada); }
.map__walktext { font-size: 12px; font-weight: 700; fill: var(--amarelo); }
.map__callout-t { font-size: 15px; font-weight: 800; fill: var(--amarelo); }
.map__callout-s { font-size: 12px; font-weight: 500; fill: var(--calcada); }
.map__walk { stroke-dasharray: 2 7; }
.map.is-in .map__walk { animation: march 1.1s linear infinite; }
@keyframes march { to { stroke-dashoffset: -18; } }

.js .map:not(.is-in) .map__callout { opacity: 0; }
.map .map__callout { transition: opacity .6s .9s; }

.where__addr { margin-top: 28px; font-size: 1.3125rem; line-height: 1.4; }
.where__facts {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  color: var(--pedra);
}
.where__facts li { display: flex; align-items: center; gap: 12px; }
.where__facts .ico { width: 22px; height: 22px; color: var(--amarelo); }
.where__facts strong { color: var(--calcada); font-weight: 700; }
.where__cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 920px) {
  .where { grid-template-columns: 1fr; }
  .where__info { order: -1; }
}
@media (max-width: 600px) {
  .map { width: 145%; max-width: none; margin-left: -26%; }
  .map__edge { display: none; }
}

/* Contato */

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.mascot { position: relative; max-width: 360px; margin-inline: auto; padding-top: 24px; }
.bagzinha { width: 100%; height: auto; overflow: visible; }
.mascot figcaption { margin-top: 12px; text-align: center; font-size: .875rem; color: var(--pedra); }

.bubble {
  position: absolute;
  z-index: 1;
  top: 0;
  right: -8%;
  padding: 14px 18px 12px;
  border-radius: 18px;
  background: var(--calcada);
  color: #000;
  font-family: var(--hand);
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  line-height: 1.05;
  transform: rotate(5deg);
  transform-origin: 20% 100%;
  transition: opacity .4s, transform .6s var(--ease-spring);
}
.bubble::after {
  content: "";
  position: absolute;
  left: 22%;
  bottom: -12px;
  border: 8px solid transparent;
  border-top: 12px solid var(--calcada);
  border-bottom: 0;
}
.js .mascot:not(.is-in) .bubble { opacity: 0; transform: rotate(5deg) scale(.5); }
.mascot.is-in .bubble { transition-delay: .5s; }

.bz-body { animation: bob 3.2s ease-in-out infinite; }
.bz-shadow { transform-box: fill-box; transform-origin: center; animation: bob-shadow 3.2s ease-in-out infinite; }
.bz-arm { transform-box: view-box; transform-origin: 66px 250px; animation: wave 1.6s ease-in-out infinite; }
.bz-eye { transform-box: fill-box; transform-origin: center; animation: blink 4.8s infinite; }
@keyframes bob { 50% { transform: translateY(-10px); } }
@keyframes bob-shadow { 50% { transform: scale(.86); opacity: .1; } }
@keyframes wave {
  0%, 100% { transform: rotate(0); }
  50% { transform: rotate(-14deg); }
}
@keyframes blink {
  0%, 92%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(.08); }
}

.wa-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 24px 28px;
  border-radius: 20px;
  background: var(--amarelo);
  color: #000;
  text-decoration: none;
  transition: transform .3s var(--ease-out), background-color .2s;
}
.wa-card:hover { background: var(--amarelo-claro); transform: translateY(-3px); }
.wa-card:hover .ico { animation: wiggle .5s ease-in-out; }
.wa-card .ico { width: 52px; height: 52px; stroke-width: 1.8; }
.wa-card small { display: block; font-size: 1rem; font-weight: 700; }
.wa-card strong {
  display: block;
  margin-top: 4px;
  font-weight: 900;
  font-stretch: 68%;
  font-size: clamp(2rem, 9.2vw, 3.75rem);
  line-height: .95;
  letter-spacing: .005em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
@keyframes wiggle {
  25% { transform: rotate(-12deg); }
  75% { transform: rotate(10deg); }
}

.contact__list { list-style: none; margin: 16px 0 0; padding: 0; }
.contact__list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--linha);
  font-size: 1.1875rem;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color .2s;
}
.contact__list a:hover { color: var(--amarelo); }
.contact__list .ico { color: var(--amarelo); }

@media (max-width: 560px) {
  .wa-card { gap: 14px; padding: 20px; }
  .wa-card .ico { width: 40px; height: 40px; }
}

@media (max-width: 880px) {
  .contact__grid { grid-template-columns: 1fr; }
  .mascot { max-width: 280px; }
  .bubble { right: -12%; }
}

/* Rodapé */

.foot { padding-bottom: 40px; }
.foot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 32px 56px;
  align-items: end;
  padding-top: 40px;
}
.brand--lg .brand__pin { width: 48px; height: 48px; }
.brand--lg .brand__word { font-size: 1.75rem; }
.foot__slogan {
  margin-top: 16px;
  font-weight: 900;
  font-stretch: 68%;
  text-transform: uppercase;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1;
  color: var(--amarelo);
}
.foot__addr, .foot__copy { font-size: .9375rem; color: var(--pedra); }

@media (max-width: 760px) {
  .foot__grid { grid-template-columns: 1fr; }
}

/* Botão flutuante */

.fab {
  position: fixed;
  z-index: 60;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--amarelo);
  color: #000;
  box-shadow: 0 0 0 4px #000, 0 12px 30px rgba(0, 0, 0, .5);
  transform: translateY(140%);
  transition: transform .5s var(--ease-spring);
}
.fab.is-on { transform: none; }
.fab:hover { background: var(--amarelo-claro); }
.fab .ico { width: 30px; height: 30px; }

/* Movimento reduzido */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
  .hero__title .line > span { transform: none; }
}
