/* ============================================
   GRUPO GARMA — Sistema de diseño
   Paleta derivada del logo oficial (negro + champán)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Color — paleta oficial de marca Grupo Garma */
  --ink: #04070A;
  --ink-soft: #070B10;
  --charcoal: #0C141C;
  --charcoal-2: #131E29;
  --charcoal-3: #1C2A38;
  --line: rgba(134, 232, 253, 0.14);
  --line-strong: rgba(134, 232, 253, 0.30);

  --gold: #0080E4;          /* azul de marca (antes dorado) */
  --gold-bright: #2EA0FF;
  --champagne: #86E8FD;     /* cian de marca (antes champán) */
  --champagne-dim: rgba(134, 232, 253, 0.7);
  --navy: #072743;

  --paper: #FFFFFF;
  --paper-2: #EEF2F5;
  --ink-on-paper: #072743;
  --paper-line: #D6E2EA;

  --white: #FBFCFE;
  --mist: #94A7B8;
  --mist-dim: #62758A;

  /* Tipografía */
  --font-display: 'Rajdhani', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Espaciado */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 132px;

  --radius-sm: 2px;
  --radius-md: 4px;

  --container-w: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--sp-7); }
}

/* ============ Tipografía ============ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: block;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 1.08;
}
h1, .h1 { font-size: clamp(38px, 6vw, 72px); font-weight: 700; letter-spacing: 0; }
h2, .h2 { font-size: clamp(30px, 4.2vw, 48px); }
h3, .h3 { font-size: clamp(22px, 2.6vw, 28px); }
h4, .h4 { font-size: 18px; letter-spacing: 0.04em; }

.lede {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: var(--mist);
  max-width: 56ch;
}
p.body-text { color: var(--mist); max-width: 62ch; }
.on-paper h2, .on-paper h3, .on-paper h4 { color: var(--ink-on-paper); }
.on-paper p { color: #3E5568; }

.text-gold { color: var(--gold); }
.text-champagne { color: var(--champagne); }

/* ============ Botones ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-ghost-dark {
  background: transparent;
  border-color: rgba(20,20,15,0.28);
  color: var(--ink-on-paper);
}
.btn-ghost-dark:hover { border-color: var(--ink-on-paper); }

/* ============ Navbar ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 9, 15, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-4);
  padding-bottom: var(--sp-4);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.nav-logo img { height: 46px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--champagne-dim);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-6);
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
  transition: color 0.2s var(--ease);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--gold);
}
.nav-cta { display: none; }
.nav-toggle {
  display: flex;
  background: none;
  border: 1px solid var(--line-strong);
  padding: 10px 12px;
  color: var(--white);
  border-radius: var(--radius-sm);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-5) var(--sp-6);
  border-top: 1px solid var(--line);
  background: var(--ink-soft);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mist);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--line);
}
.nav-mobile a.active { color: var(--gold); }
.nav-mobile .btn { margin-top: var(--sp-3); width: 100%; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,9,15,0.35) 0%, rgba(6,9,15,0.55) 55%, var(--ink) 100%),
    linear-gradient(90deg, rgba(6,9,15,0.85) 0%, rgba(6,9,15,0.15) 55%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--sp-9) 0 var(--sp-8);
  width: 100%;
}
.hero h1 { max-width: 16ch; margin-bottom: var(--sp-5); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-7);
}
@media (max-width: 640px) {
  .hero-content { padding-left: calc(var(--sp-5) + var(--sp-4)); padding-right: calc(var(--sp-5) + var(--sp-4)); }
  .hero-actions .btn { width: 100%; }
}

/* Page header (páginas internas) */
.page-header {
  position: relative;
  padding: calc(var(--sp-9) + 40px) 0 var(--sp-8);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-header-media { position: absolute; inset: 0; z-index: 0; }
.page-header-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.page-header-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,9,15,0.55) 0%, var(--ink) 100%);
}
.page-header-content { position: relative; z-index: 1; }
.page-header .lede { margin-top: var(--sp-4); }

/* ============ Credential / badge strip ============ */
.credential-strip {
  padding-top: var(--sp-7);
}
.credential-card {
  background: var(--charcoal-2);
  color: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: var(--sp-5) var(--sp-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
@media (min-width: 768px) {
  .credential-card { grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); align-items: center; }
}
.credential-item { border-left: none; padding-left: 0; }
@media (min-width: 768px) {
  .credential-item { border-left: 1px solid var(--line); padding-left: var(--sp-6); }
  .credential-item:first-child { border-left: none; padding-left: 0; }
}
.credential-seal-row { display: flex; align-items: center; gap: var(--sp-4); }
.credential-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 6px;
}
.credential-value {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
}
.seal {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.seal img { width: 100%; height: 100%; object-fit: contain; }
.seal-lg { width: 88px; height: 88px; }
.cc-icon-2, .cc-icon-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .cc-icon-2 { grid-template-columns: auto 1fr; align-items: center; }
  .cc-icon-3 { grid-template-columns: auto 1fr 1fr; align-items: center; }
}

/* ============ Secciones ============ */
.section { padding: var(--sp-9) 0; }
.section-sm { padding: var(--sp-8) 0; }
.section-alt { background: var(--charcoal); }
.section-paper { background: var(--paper); color: var(--ink-on-paper); }
.section-head { max-width: 640px; margin-bottom: var(--sp-8); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============ Grids & tarjetas ============ */
.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.card:hover { border-color: var(--line-strong); transform: translateY(-4px); }

/* Tarjetas de servicio */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 900px) {
  .service-grid { grid-template-columns: 1.5fr 1fr; grid-template-rows: auto auto; }
  .service-featured { grid-row: 1 / 3; }
}
.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover img { transform: scale(1.05); }
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,9,15,0.1) 0%, rgba(6,9,15,0.94) 88%);
}
.service-card-body { position: relative; z-index: 1; padding: var(--sp-6); }
.service-featured .service-card-body { padding: var(--sp-7); }
.service-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: var(--sp-3);
  display: block;
}
.service-sublist {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.service-sublist span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  border: 1px solid var(--line-strong);
  color: var(--champagne);
  padding: 5px 10px;
  border-radius: 100px;
}

/* Icon rows (diferenciadores) */
.icon-row {
  display: flex;
  gap: var(--sp-5);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--line);
}
.icon-row:last-child { border-bottom: none; }
.icon-row .icon-badge {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.icon-row h4 { margin-bottom: var(--sp-2); }
.icon-row p { color: var(--mist); font-size: 15px; }

/* Stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
@media (min-width: 720px) { .stat-strip { grid-template-columns: repeat(4, 1fr); } }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  color: var(--gold);
  font-weight: 600;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: var(--sp-2);
}

/* Process steps (filtros de contratación) */
.process-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  counter-reset: step;
}
@media (min-width: 860px) { .process-strip { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  position: relative;
  padding: var(--sp-5);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--charcoal-2);
}
.process-step .process-index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--champagne);
  border: 1px solid var(--line-strong);
  width: 30px; height: 30px;
  border-radius: 100%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
}
.process-step h4 { margin-bottom: var(--sp-2); font-size: 16px; }
.process-step p { color: var(--mist); font-size: 14px; }
.process-connector {
  display: none;
}
@media (min-width: 860px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px; right: calc(var(--sp-5) * -1);
    width: var(--sp-5);
    height: 1px;
    background: var(--line-strong);
  }
}

/* Team / contact cards con monograma */
.people-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); }
.people-grid-lead { margin-bottom: var(--sp-5); }
@media (min-width: 640px) {
  .people-grid { grid-template-columns: 1fr 1fr; }
  .people-grid-lead .person-card {
    max-width: calc(50% - (var(--sp-5) / 2));
    margin: 0 auto;
  }
}
.person-card {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--charcoal-2);
}
.monogram {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 100%;
  background: var(--ink);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 17px;
  display: flex; align-items: center; justify-content: center;
}
.person-name { font-family: var(--font-display); font-size: 16px; letter-spacing: 0.02em; text-transform: uppercase; }
.person-role { font-family: var(--font-mono); font-size: 11px; color: var(--champagne); text-transform: uppercase; letter-spacing: 0.06em; margin: 4px 0 var(--sp-3); }
.person-card a { font-size: 13.5px; color: var(--mist); display: block; margin-top: 2px; }
.person-card a:hover { color: var(--white); }

/* Trust roster */
.roster {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3) var(--sp-6);
}
.roster span {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--champagne);
  text-transform: uppercase;
}

/* Image frame con borde champán */
.frame {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Divider */
.rule { height: 1px; background: var(--line); border: none; margin: 0; }

/* CTA banda final */
.cta-band {
  position: relative;
  padding: var(--sp-9) 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band h2 { max-width: 20ch; margin: 0 auto var(--sp-6); }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-4); }

/* ============ Footer ============ */
.footer { background: var(--ink-soft); padding: var(--sp-8) 0 var(--sp-6); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-logo { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.footer-logo img { height: 42px; }
.footer-col h4 { font-size: 13px; color: var(--champagne); margin-bottom: var(--sp-4); letter-spacing: 0.08em; }
.footer-col ul li { margin-bottom: var(--sp-3); }
.footer-col a, .footer-col p { color: var(--mist); font-size: 14.5px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: var(--sp-6);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mist-dim);
}
@media (min-width: 720px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ============ Formulario de contacto ============ */
.form-group { margin-bottom: var(--sp-5); }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: var(--sp-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--charcoal-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--white);
  font-size: 15px;
  transition: border-color 0.2s var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); }
@media (min-width: 620px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* ============ Marquee de clientes ============ */
.marquee-section {
  background: linear-gradient(180deg, var(--charcoal-3) 0%, var(--charcoal-2) 100%);
  padding: var(--sp-8) 0 var(--sp-7);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.marquee-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-6);
}
.marquee-track-wrap { overflow: hidden; width: 100%; }
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track .marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  margin: 0 var(--sp-5);
}
.marquee-track img {
  height: 100%;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; overflow-x: auto; }
}
@media (max-width: 640px) {
  .marquee-track .marquee-item { height: 58px; margin: 0 var(--sp-2); }
}
/* ============ Reveal on scroll ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ Utilidades ============ */
.mt-0 { margin-top: 0; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }

/* ============ Botón flotante de WhatsApp ============ */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 60px;
  min-width: 60px;
  max-width: 60px;
  border-radius: 999px;
  background: #25D366;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  overflow: hidden;
  padding: 0;
  transition: max-width 0.35s var(--ease, ease), box-shadow 0.2s ease, transform 0.2s ease;
}
.wa-float:hover,
.wa-float:focus-visible {
  max-width: 250px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  transform: translateY(-2px);
}
.wa-float-text {
  display: flex;
  align-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.015em;
  white-space: nowrap;
  opacity: 0;
  padding-left: 28px;
  margin-right: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.25s ease, max-width 0.35s var(--ease, ease), margin-right 0.35s ease;
}
.wa-float:hover .wa-float-text,
.wa-float:focus-visible .wa-float-text {
  opacity: 1;
  max-width: 170px;
  margin-right: 12px;
}
.wa-float-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-float-icon img { width: 34px; height: 34px; display: block; }
@media (max-width: 640px) {
  .wa-float { right: 14px; bottom: 14px; height: 54px; min-width: 54px; max-width: 54px; }
  .wa-float-text { font-size: 17px; padding-left: 22px; }
  .wa-float-icon { width: 54px; height: 54px; }
  .wa-float-icon img { width: 30px; height: 30px; }
  .wa-float:hover, .wa-float:focus-visible { max-width: 225px; }
}
