/* ==========================================================================
   FLORINY CALÇADOS — design tokens
   Cores oficiais da marca (fixadas a partir da logo):
     --blush   #FADCE6  fundo/base
     --rose    #E65082  destaque / CTAs
     --rose-mid#D89CAE  ícone/acento secundário
     --ink     #1A1414  texto
   + 1 neutro de apoio (--cream) para superfícies de card, não faz parte
     da paleta oficial de marca, só evita telas 100% saturadas de rosa.
   ========================================================================== */

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

:root {
  --blush: #FADCE6;
  --blush-deep: #F3C4D4;
  --rose: #E65082;
  --rose-mid: #D89CAE;
  --ink: #1A1414;
  --cream: #FFF8F5;

  --gold: #D6B65A;
  --nude: #E8C4A2;

  --font-display: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Albert Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, "SFMono-Regular", monospace;

  --container: 1180px;
  --radius: 22px;
  --radius-sm: 12px;

  --ease: cubic-bezier(.22,.9,.32,1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 .4em; line-height: 1.1; font-weight: 600; }
p { margin: 0 0 1em; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--blush); padding: 12px 18px; border-radius: 0 0 8px 0; z-index: 1000;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
  margin: 0 0 .9em;
}
.eyebrow--light { color: var(--rose-mid); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  text-decoration: none;
  border-radius: 999px;
  padding: .95em 1.6em;
  font-family: var(--font-body);
  font-size: 1.1875rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--cta {
  background: var(--rose);
  color: #fff;
}
.btn--cta:hover { background: #C43D6E; }

.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
  font-size: 1.0625rem;
}
.btn--ghost:hover { background: var(--ink); color: var(--blush); }

/* ---------- Seletor de idiomas (bandeiras) ---------- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: none;
  padding: 3px;
  background: rgba(250, 220, 230, .55);
  border-radius: 999px;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px;
  border: 0;
  border-radius: 999px;
  background: none;
  cursor: pointer;
  line-height: 1;
  color: #7A6167;
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.lang-btn svg {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  display: block;
  box-shadow: 0 0 0 1px rgba(26, 20, 20, .12);
  opacity: .55;
  transition: opacity .18s var(--ease);
}
.lang-btn:hover { background: rgba(255, 255, 255, .7); }
.lang-btn:hover svg { opacity: .85; }
.lang-btn.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(26, 20, 20, .12);
}
.lang-btn.is-active svg { opacity: 1; }
/* A sigla existe para leitores de tela; na tela bastam as bandeiras. */
.lang-btn span {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* No celular sobra pouco espaco: fica so a bandeira, sem a sigla */
@media (max-width: 899px) {
  .lang-switch { margin-right: 4px; }
  .lang-btn svg { width: 22px; height: 15px; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--blush-deep);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 248, 245, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
}
.brand__mark { height: 58px; width: auto; }

@media (min-width: 900px) {
  .brand__mark { height: 68px; }
}

.nav {
  position: fixed;
  inset: 0;
  top: 80px;
  background: var(--blush);
  padding: 32px 24px calc(32px + env(safe-area-inset-bottom)) 24px;
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow-y: auto;
}
.nav[data-open="true"] { transform: translateX(0); }

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav__link {
  display: block;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  padding: .3em 0;
  color: var(--ink);
}
.nav__cta { align-self: flex-start; }

.nav__toggle {
  position: relative;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform .25s var(--ease), opacity .2s;
}
.nav__toggle span:nth-child(1) { transform: translateY(-6px); }
.nav__toggle span:nth-child(3) { transform: translateY(6px); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

@media (min-width: 900px) {
  .nav__toggle { display: none; }
  .nav {
    position: static;
    transform: none;
    background: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    overflow: visible;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .nav__list { flex-direction: row; align-items: center; gap: 13px; flex-wrap: wrap; row-gap: 6px; }
  .nav__link { font-family: var(--font-body); font-size: .86rem; font-weight: 600; white-space: nowrap; }
  .nav__cta { font-size: .86rem; padding: .6em 1.05em; white-space: nowrap; }
}

/* O seletor de idiomas divide a barra com o menu: os espacamentos abrem
   conforme a tela cresce, para o botao do WhatsApp nao cair de linha. */
@media (min-width: 1100px) {
  .nav { gap: 18px; }
  .nav__list { gap: 17px; }
  .nav__link { font-size: .92rem; }
  .nav__cta { font-size: .94rem; padding: .65em 1.2em; }
}

@media (min-width: 1280px) {
  .nav { gap: 24px; }
  .nav__list { gap: 22px; }
  .nav__link { font-size: .96rem; }
  .nav__cta { font-size: 1rem; padding: .7em 1.3em; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background:
    linear-gradient(to right, #E2B2BA 42%, rgba(226, 178, 186, 0) 78%),
    url("../../banner/banner2.png") bottom right / cover no-repeat,
    var(--blush);
  overflow: hidden;
  padding-block: 64px;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero__grid { position: relative; width: 100%; }

.hero__title {
  font-size: clamp(2.1rem, 7vw, 3.6rem);
  max-width: 14ch;
  letter-spacing: -.01em;
}
.hero__lead {
  max-width: 46ch;
  font-size: 1.08rem;
  color: #3a2a2f;
  font-family: var(--font-display);
  font-weight: 500;
}
/* Duas versões do subtítulo: a curta só aparece no celular. */
.hero__lead--mob { display: none; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

/* No celular a caixa do hero fica em pé, e a foto deitada do desktop viraria
   um close muito ampliado. Aqui entra a versão em retrato: texto em cima,
   sobre o rosa chapado, e a sandália aparecendo embaixo. */
@media (max-width: 699px) {
  .hero {
    align-items: flex-start;
    min-height: min(700px, 82vh);
    background:
      url("../../banner/hero-mobile.jpg") bottom center / cover no-repeat,
      var(--blush);
  }

  .hero__lead--desk { display: none; }
  .hero__lead--mob { display: block; }
  .hero__lead { font-size: .92rem; }
  .hero__actions { gap: 10px; }
  .hero__actions .btn { font-size: .98rem; padding: .8em 1.3em; }
  .hero__actions .btn--ghost { display: none; }
}

@media (min-width: 900px) {
  .hero { min-height: 620px; padding-block: 90px; }
  .hero__content { max-width: 620px; }
}

/* Scallop divider (recorte de pétala entre seções) */
.scallop {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 26px;
  -webkit-mask-image: radial-gradient(circle at 13px 0, transparent 13px, black 13.5px);
  mask-image: radial-gradient(circle at 13px 0, transparent 13px, black 13.5px);
  -webkit-mask-size: 26px 26px;
  mask-size: 26px 26px;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
}
.scallop--to-cream { background: var(--cream); }
.scallop--to-blush { background: var(--blush); }

/* ==========================================================================
   SECTIONS (generic)
   ========================================================================== */
.section { padding-block: 72px; position: relative; }
.section--cream { background: var(--cream); }
.section--blush { background: var(--blush); }
.section--tight { padding-block: 48px; }
.section--dark { background: var(--ink); color: var(--blush); }

.section__title { font-size: clamp(1.7rem, 4.4vw, 2.5rem); }
.section__title--sm { font-size: clamp(1.3rem, 3vw, 1.7rem); }
.section__title--light { color: var(--blush); }
.section__text { max-width: 58ch; color: #453538; font-family: var(--font-display); font-weight: 500; }
.section--dark .section__text { color: var(--rose-mid); }

.section__intro--center { max-width: 62ch; margin-inline: auto; text-align: center; }
.section__intro--center .section__text { margin-inline: auto; }

.section__grid { display: grid; gap: 40px; }
.section__cta { margin-top: 40px; display: flex; justify-content: center; }

@media (min-width: 900px) {
  .section { padding-block: 108px; }
  .section__grid { grid-template-columns: .9fr 1.1fr; align-items: start; gap: 70px; }
}

/* ---------- Foto da fábrica (Sobre) ---------- */
.about-photo { margin: 0; }
.about-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(26, 20, 20, .14);
}
.about-photo figcaption {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rose);
}

/* ==========================================================================
   CATÁLOGO
   ========================================================================== */
.catalog-group { margin-top: 48px; }
.catalog-group__title {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.catalog-group__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--blush-deep);
}

.catalog-row {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  overflow-x: auto;
  /* "proximity" em vez de "mandatory": o navegador sugere o encaixe em vez de
     obrigar. Com "mandatory" ele re-encaixa a cada quadro e trava o arraste. */
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--rose-mid) transparent;
}
.model-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 210px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.model-card__photo {
  aspect-ratio: 4/3;
  border-radius: 10px;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #FFFFFF 0%, var(--blush) 120%);
  overflow: hidden;
}
.model-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}
.model-card__body { padding: 0 14px 16px; }
.model-card__body h4 { font-size: 1.05rem; margin-bottom: .3em; }
.chip {
  display: inline-block;
  font-size: .72rem;
  padding: .25em .6em;
  border-radius: 20px;
  background: var(--blush);
  color: #7a3f52;
}
.chip--mono { font-family: var(--font-mono); }
.color-dots { display: flex; gap: 6px; margin-top: 10px; }
.dot { width: 16px; height: 16px; border-radius: 50%; background: var(--c); border: 1px solid rgba(26,20,20,.15); }

.catalog-note {
  margin-top: 32px;
  font-size: .84rem;
  color: #7a3f52;
  text-align: center;
}

@media (min-width: 700px) {
  .catalog-row { overflow: visible; flex-wrap: wrap; }
  .model-card { width: calc(33.333% - 11px); }
}

/* ==========================================================================
   COMO COMPRAR — info grid
   ========================================================================== */
.info-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
.info-card {
  background: var(--blush);
  border-radius: var(--radius-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.info-card h3 { font-size: 1.05rem; margin-bottom: .5em; }
.info-card p { margin: 0; font-size: .94rem; color: #453538; }
.info-card .info-card__value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--rose);
  margin-bottom: .6em;
  padding-bottom: .6em;
  border-bottom: 1px solid var(--blush-deep);
}

@media (min-width: 700px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .info-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   SEJA REVENDEDORA — form
   ========================================================================== */
.section__grid--form { align-items: start; }
.lead-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lead-form__field { display: flex; flex-direction: column; gap: 6px; }
.lead-form__field label { font-size: .84rem; font-weight: 700; }
.lead-form__field input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .85em 1em;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--blush-deep);
  background: #fff;
  color: var(--ink);
}
.lead-form__field input:focus { border-color: var(--rose); outline: none; }
.lead-form__field input:invalid:not(:placeholder-shown) { border-color: var(--rose); }
.lead-form__submit { margin-top: 6px; }
.lead-form__hint { font-size: .8rem; color: #7a3f52; margin: 0; }

/* ==========================================================================
   DEPOIMENTOS — carrossel de logos parceiras
   ========================================================================== */
.clients-carousel {
  margin-top: 44px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  padding: 4px 0;
  animation: clients-scroll 20s linear infinite;
}
.clients-carousel:hover .clients-track { animation-play-state: paused; }

.client-tile {
  flex: 0 0 auto;
  height: 76px;
  width: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 0 var(--blush-deep);
  padding: 14px 20px;
}
.client-tile img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes clients-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (min-width: 700px) {
  .client-tile { height: 92px; width: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; }
}

/* ==========================================================================
   INSTAGRAM
   ========================================================================== */
.instagram-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.instagram-embeds {
  margin-top: 8px;
}
.instagram-feed {
  max-width: 480px;
  margin-inline: auto;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(26, 20, 20, .12);
}
/* Altura acompanha a largura: o embed é um cabeçalho fixo + 2 linhas de
   miniaturas quadradas (cada uma com 1/3 da largura do quadro). */
.instagram-feed iframe {
  display: block;
  width: 100%;
  height: calc(128px + 67vw);
  border: 0;
}

@media (min-width: 520px) {
  .instagram-feed iframe { height: 480px; }
}
@media (min-width: 700px) {
  .instagram-block { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ==========================================================================
   CONTATO
   ========================================================================== */
.contact-list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.contact-list__label {
  display: block;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rose-mid);
  margin-bottom: .2em;
}
.contact-list a { text-decoration: none; font-size: 1.05rem; }
.contact-list a:hover { color: var(--rose-mid); }
.contact-list--center { align-items: center; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--blush-deep);
  margin-top: 40px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.15); }
.map-frame--wide { aspect-ratio: 16/8; }

@media (min-width: 900px) {
  .map-frame--wide { aspect-ratio: 21/7; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--ink);
  color: var(--rose-mid);
  padding-block: 48px 0;
  border-top: 3px solid var(--rose);
}

.footer__grid {
  display: grid;
  gap: 40px;
  padding-bottom: 44px;
}

.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer__mark-wrap {
  display: inline-flex;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 10px 18px;
}
.footer__mark { height: 46px; }
.footer__tagline { font-size: .88rem; max-width: 32ch; opacity: .85; margin: 0; }

.footer__social { display: flex; gap: 10px; }
.social-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(250,220,230,.08);
  color: var(--blush);
  text-decoration: none;
  transition: background .2s var(--ease);
}
.social-badge:hover { background: var(--rose); }
.social-badge svg { width: 18px; height: 18px; }

.footer__col h3 {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 1em;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { text-decoration: none; font-size: .92rem; }
.footer__col a:hover { color: var(--blush); }
.footer__col li { font-size: .92rem; }

.footer__bottom {
  border-top: 1px solid rgba(250,220,230,.15);
  padding-block: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__seo { max-width: 70ch; font-size: .78rem; opacity: .7; margin: 0; }
.footer__copy { font-size: .76rem; margin: 0; opacity: .55; }

@media (min-width: 700px) {
  .footer__grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ==========================================================================
   ENTRADA / SCROLL REVEAL
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transition: opacity 1.3s var(--ease), transform 1.3s var(--ease);
  }
  .reveal--up { transform: translateY(28px); }
  .reveal--left { transform: translateX(-36px); }
  .reveal--right { transform: translateX(36px); }
  .reveal.is-visible { opacity: 1; transform: none; }

  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
  }
  .reveal-stagger--right > * { transform: translateX(36px); }
  .reveal-stagger.is-visible > * { opacity: 1; transform: none; }

  /* Num carrossel com scroll-snap, deslocar os filhos move os pontos de
     encaixe a cada quadro: o navegador fica re-encaixando e o arraste
     engasga. Aqui os cards entram só com opacidade. */
  .catalog-row.reveal-stagger > * { transform: none; }
  .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
  .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .18s; }
  .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .36s; }
  .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .54s; }
  .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .72s; }
  .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .9s; }

  /* Hero: entra sozinha ao carregar a página, não depende de scroll */
  .hero__content { animation: hero-in-up 1.4s var(--ease) both; }
}

@keyframes hero-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ==========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================== */
.wa-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--rose);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px;
  box-shadow: 0 10px 28px -8px rgba(230,80,130,.55);
}
.wa-float svg { width: 26px; height: 26px; flex: none; }
.wa-float__label {
  font-weight: 700;
  font-size: .92rem;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width .3s var(--ease), padding .3s var(--ease);
}
@media (min-width: 700px) {
  .wa-float:hover .wa-float__label { max-width: 140px; padding-right: 4px; }
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,80,130,.45), 0 10px 28px -8px rgba(230,80,130,.55); }
  50% { box-shadow: 0 0 0 12px rgba(230,80,130,0), 0 10px 28px -8px rgba(230,80,130,.55); }
}
.wa-float { animation: wa-pulse 3.2s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }
