/* ===== Cooper-Trans — sitio 2026. Paleta cobalto (alineada a la app). ===== */

:root {
  --cobalto: #1746A2;
  --cobalto-dark: #0B2A6B;
  --cobalto-light: #2E66D6;
  --acento: #F59E0B;
  --acento-dark: #D97706;
  --tinta: #0F172A;
  --gris: #5A6B85;
  --linea: #E2E8F0;
  --bg: #FFFFFF;
  --bg-alt: #F1F5F9;
  --dark: #08193B;
  --radio: 16px;
  --sombra: 0 10px 30px rgba(15, 23, 42, .08);
  --sombra-hover: 0 18px 44px rgba(15, 23, 42, .14);
  --max: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--tinta);
  line-height: 1.65;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.15; color: var(--tinta); }

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

a { color: var(--cobalto); text-decoration: none; }

img { max-width: 100%; display: block; }

/* ===== Botones ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: .98rem; cursor: pointer; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--acento); color: #1a1206; box-shadow: 0 8px 22px rgba(245, 158, 11, .35); }
.btn-primary:hover { background: var(--acento-dark); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); }
.btn-acceso { background: var(--cobalto); color: #fff; padding: 10px 20px; }
.btn-acceso:hover { background: var(--cobalto-dark); color: #fff; }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: box-shadow .25s, border-color .25s;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(15, 23, 42, .08); border-color: var(--linea); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { height: 40px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.18rem; letter-spacing: 1px; color: var(--cobalto-dark); }
.brand-text small { font-size: .62rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gris); font-weight: 600; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--tinta); font-weight: 500; font-size: .96rem; position: relative; }
.nav a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--acento); transition: width .2s ease;
}
.nav a:not(.btn):hover::after,
.nav a:not(.btn).active::after { width: 100%; }
.nav a:not(.btn).active { color: var(--cobalto-dark); font-weight: 600; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--tinta); border-radius: 2px; transition: .25s; }

/* Toggle de idioma ES/EN */
.lang-toggle {
  background: none; border: 1px solid var(--linea); cursor: pointer;
  font-family: inherit; font-size: .78rem; font-weight: 700; letter-spacing: .5px;
  padding: 6px 10px; border-radius: 999px;
  color: var(--gris); display: inline-flex; align-items: center; gap: 6px;
  transition: border-color .2s, color .2s;
}
.lang-toggle:hover { border-color: var(--cobalto); color: var(--cobalto-dark); }
.lang-toggle .lang-opt { transition: color .2s; }
.lang-toggle .lang-sep { opacity: .35; }
html[lang="es"] .lang-toggle .lang-es,
html[lang="en"] .lang-toggle .lang-en { color: var(--cobalto-dark); }
html[lang="es"] .lang-toggle .lang-en,
html[lang="en"] .lang-toggle .lang-es { color: #b4bccc; }

/* ===== Hero ===== */
.hero {
  position: relative; padding: 140px 0 80px; color: #fff;
  min-height: 92vh; display: flex; flex-direction: column; justify-content: center;
  background:
    linear-gradient(115deg, rgba(8, 25, 59, .94) 0%, rgba(11, 42, 107, .82) 48%, rgba(23, 70, 162, .5) 100%),
    url('../img/flota/hero.jpg') center / cover no-repeat;
  background:
    linear-gradient(115deg, rgba(8, 25, 59, .94) 0%, rgba(11, 42, 107, .82) 48%, rgba(23, 70, 162, .5) 100%),
    image-set(url('../img/flota/hero.webp') type('image/webp'), url('../img/flota/hero.jpg') type('image/jpeg')) center / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1.2px, transparent 1.2px);
  background-size: 26px 26px; opacity: .5; pointer-events: none;
}
.hero-content { position: relative; padding-bottom: 50px; max-width: 760px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.hero-kicker { text-transform: uppercase; letter-spacing: 2px; font-size: .82rem; font-weight: 600; color: var(--acento); margin-bottom: 18px; }
.hero-title { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; color: #fff; }
.hero-title span { color: #cfe0ff; }
.hero-sub { font-size: clamp(1rem, 2.2vw, 1.22rem); margin: 22px 0 32px; color: #dbe6ff; max-width: 620px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.stats {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radio); padding: 26px 12px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.stat { text-align: center; padding: 0 14px; position: relative; }
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 12%; bottom: 12%;
  width: 1px; background: rgba(255, 255, 255, .14);
}
.stat strong { display: block; font-family: 'Poppins', sans-serif; font-size: 2rem; color: #fff; line-height: 1.1; }
.stat span { font-size: .86rem; color: #c4d4f5; display: block; margin-top: 4px; }

/* ===== Secciones ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: #dbe6ff; }
.section-dark h2 { color: #fff; }
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: .8rem; font-weight: 700; color: var(--cobalto); margin-bottom: 12px; }
.eyebrow-light { color: var(--acento); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }
.lead { font-size: 1.1rem; color: var(--gris); }
.section-dark .lead { color: #b9c8ea; }
p { margin-bottom: 14px; color: var(--gris); }
.section-dark p { color: #c4d4f5; }
.muted { font-size: .9rem; color: #94a3b8; }

/* grid 2 columnas */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.img-rounded { border-radius: var(--radio); box-shadow: var(--sombra); width: 100%; object-fit: cover; }

.check-list { list-style: none; margin: 18px 0; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--gris); }
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0; font-weight: 700; color: #fff;
  background: var(--acento); width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .7rem;
}

/* ===== Cards (servicios) ===== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff; border: 1px solid var(--linea); border-radius: var(--radio);
  padding: 32px 24px; box-shadow: var(--sombra); transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sombra-hover); }
.card-ico {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: #fff;
  background: linear-gradient(135deg, var(--cobalto), var(--cobalto-light));
}
.card-ico svg { width: 28px; height: 28px; }
.card p { color: var(--gris); margin-bottom: 0; }

/* ===== Clientes / Alianzas ===== */
.alianza-group { margin-bottom: 30px; }
.alianza-title {
  text-align: center; text-transform: uppercase; letter-spacing: 1.5px;
  font-size: .76rem; font-weight: 700; color: var(--cobalto); margin-bottom: 18px;
}
.logos { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: 22px; }
.logo-chip {
  background: #fff; border: 1px solid var(--linea); border-radius: 14px;
  box-shadow: var(--sombra); padding: 22px 30px; min-width: 200px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, box-shadow .2s;
}
.logo-chip:hover { transform: translateY(-4px); box-shadow: var(--sombra-hover); }
.logo-chip img { height: 50px; width: auto; max-width: 170px; object-fit: contain; }

/* Sectores */
.sectores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.sector { background: #fff; border: 1px solid var(--linea); border-radius: var(--radio); padding: 26px; text-align: center; box-shadow: var(--sombra); }
.sector-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; margin: 0 auto 14px;
  border-radius: 12px;
  background: rgba(23, 70, 162, .08); color: var(--cobalto);
}
.sector-ico svg { width: 28px; height: 28px; }
.sector h4 { font-family: 'Poppins', sans-serif; font-size: 1.05rem; margin-bottom: 6px; color: var(--tinta); }
.sector p { color: var(--gris); margin-bottom: 0; font-size: .94rem; }

/* ===== Mapa ===== */
.map { border-radius: var(--radio); overflow: hidden; box-shadow: var(--sombra); position: relative; min-height: 420px; }
.map iframe { display: block; width: 100%; height: 420px; border: 0; }
.map-facade {
  position: absolute; inset: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cobalto-dark) 0%, var(--cobalto) 60%, var(--cobalto-light) 100%);
  color: #fff; overflow: hidden;
  transition: filter .2s ease;
}
.map-facade:hover, .map-facade:focus-visible { filter: brightness(1.06); outline: none; }
.map-facade:focus-visible { box-shadow: inset 0 0 0 3px rgba(245, 158, 11, .6); }
.map-facade-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  opacity: .9;
}
.map-facade-content { position: relative; text-align: center; padding: 24px; max-width: 460px; }
.map-facade-pin {
  width: 56px; height: 56px; color: var(--acento);
  margin: 0 auto 14px; display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .3));
}
.map-facade-title {
  font-family: 'Poppins', sans-serif; font-size: 1.25rem; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}
.map-facade-sub { color: #cfe0ff; margin-bottom: 22px; }
.map-facade-btn { pointer-events: none; }

/* ===== Contacto ===== */
.contacto-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.contacto-inner .eyebrow-light { justify-content: center; }
.contact-list { list-style: none; margin: 28px 0 8px; display: inline-flex; flex-direction: column; gap: 4px; text-align: left; }
.contact-list li { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; color: #dbe6ff; }
.contact-list li svg { width: 20px; height: 20px; color: var(--acento); flex-shrink: 0; }
.contact-list a { color: #fff; }
.contacto-cta { margin: 18px 0 36px; }

/* ===== Footer ===== */
.site-footer { background: #050f24; color: #9fb2da; padding: 48px 0; text-align: center; }
.footer-logo { height: 46px; width: auto; margin: 0 auto 16px; opacity: .95; }
.footer-name { font-family: 'Poppins', sans-serif; font-weight: 600; color: #cdd9f2; margin-bottom: 4px; }
.site-footer p { color: #9fb2da; margin-bottom: 6px; }
.copy { font-size: .85rem; color: #6b7da6; }

/* ===== Empresa: misión / visión ===== */
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 26px; }
.mv-item { background: var(--bg-alt); border-left: 3px solid var(--acento); border-radius: 12px; padding: 18px 20px; }
.mv-item h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--cobalto-dark); }
.mv-item p { font-size: .95rem; margin-bottom: 0; }

/* Valores */
.valores { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 54px; }
.valor {
  background: #fff; border: 1px solid var(--linea); border-radius: 999px;
  padding: 9px 20px; font-weight: 600; font-size: .92rem; color: var(--cobalto-dark);
  box-shadow: var(--sombra);
}

/* ===== Especialidades (flota) ===== */
.especialidades { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.esp-card {
  background: #fff; border: 1px solid var(--linea); border-radius: var(--radio);
  overflow: hidden; box-shadow: var(--sombra); transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.esp-card:hover { transform: translateY(-6px); box-shadow: var(--sombra-hover); }
.esp-foto { height: 250px; overflow: hidden; background: var(--dark); }
.esp-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.esp-card:hover .esp-foto img { transform: scale(1.05); }
.esp-info { padding: 28px 30px 30px; }
.esp-info h3 { font-size: 1.45rem; color: var(--cobalto-dark); }
.esp-info > p { margin-bottom: 6px; }
.esp-info .check-list { margin-bottom: 0; }

/* Equipos (chips) */
.equipos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; margin-top: 40px; }
.equipos-label { font-weight: 700; color: var(--tinta); }
.chip {
  background: var(--cobalto-dark); color: #fff; border-radius: 999px;
  padding: 8px 18px; font-size: .9rem; font-weight: 600;
}

/* ===== Mini-stats (ventajas) ===== */
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 54px; }
.mini-stat {
  text-align: center; padding: 26px 22px; border-radius: var(--radio);
  background: linear-gradient(135deg, var(--cobalto-dark), var(--cobalto)); color: #fff;
}
.mini-stat strong { display: block; font-family: 'Poppins', sans-serif; font-size: 2.2rem; }
.mini-stat span { font-size: .9rem; color: #d6e2ff; }

/* ===== Banda Acceso al sistema ===== */
.acceso-band {
  background:
    linear-gradient(115deg, rgba(8, 25, 59, .96), rgba(23, 70, 162, .9)),
    url('../img/flota/detalle.jpg') center / cover no-repeat;
  background:
    linear-gradient(115deg, rgba(8, 25, 59, .96), rgba(23, 70, 162, .9)),
    image-set(url('../img/flota/detalle.webp') type('image/webp'), url('../img/flota/detalle.jpg') type('image/jpeg')) center / cover no-repeat;
  color: #fff;
}
.acceso-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 56px 24px; }
.acceso-inner h2 { color: #fff; margin-bottom: 8px; }
.acceso-inner p { color: #dbe6ff; margin-bottom: 0; max-width: 640px; }

/* ===== Contacto: personas ===== */
.people { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 12px; max-width: 580px; margin-left: auto; margin-right: auto; }
.person { display: flex; flex-direction: column; gap: 2px; align-items: center; text-align: center; }
.person strong { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .6px; }
.person span { color: #c4d4f5; font-size: .92rem; }

/* Botón WhatsApp (usado en contacto y en flotante) */
.btn-wa { background: #25D366; color: #fff; font-size: 1.05rem; padding: 15px 28px; }
.btn-wa:hover { background: #1da851; color: #fff; }

/* Scrim mobile nav */
.nav-scrim {
  position: fixed; inset: 0; background: rgba(8, 25, 59, .5);
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
  z-index: 90;
}
.nav-scrim.visible { opacity: 1; pointer-events: auto; }

/* ===== Cómo trabajamos (proceso) ===== */
.proceso {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  counter-reset: paso;
}
.proceso-step {
  background: #fff; border: 1px solid var(--linea); border-radius: var(--radio);
  padding: 30px 24px 28px; box-shadow: var(--sombra);
  position: relative; transition: transform .2s, box-shadow .2s;
}
.proceso-step:hover { transform: translateY(-6px); box-shadow: var(--sombra-hover); }
.proceso-num {
  position: absolute; top: 18px; right: 22px;
  font-family: 'Poppins', sans-serif; font-size: 2.4rem; font-weight: 800;
  color: rgba(23, 70, 162, .08); letter-spacing: -1px; line-height: 1;
}
.proceso-ico {
  width: 52px; height: 52px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(23, 70, 162, .08); color: var(--cobalto);
  margin-bottom: 18px;
}
.proceso-ico svg { width: 26px; height: 26px; }
.proceso-step h3 { margin-bottom: 6px; color: var(--cobalto-dark); }
.proceso-step p { margin-bottom: 0; }

/* ===== Botón flotante WhatsApp ===== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 14px 20px 14px 18px; border-radius: 999px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  font-weight: 600; font-size: .98rem;
  transform: translateY(140%); opacity: 0;
  transition: transform .35s cubic-bezier(.2, .9, .3, 1.2), opacity .25s, box-shadow .2s;
}
.wa-float.visible { transform: translateY(0); opacity: 1; }
.wa-float:hover { background: #1da851; color: #fff; box-shadow: 0 14px 34px rgba(37, 211, 102, .55); }
.wa-float svg { flex-shrink: 0; }
.wa-float::before {
  content: ''; position: absolute; inset: -4px; border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, .6); animation: waPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0% { transform: scale(.9); opacity: 0; }
  20% { opacity: .8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===== Animación reveal ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== prefers-reduced-motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .card:hover, .esp-card:hover, .logo-chip:hover { transform: none; }
  .esp-card:hover .esp-foto img, .card-unidad:hover .card-foto img { transform: none; }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav {
    position: fixed; top: 72px; right: 0; flex-direction: column; align-items: flex-start;
    background: #fff; width: min(78vw, 320px); height: calc(100vh - 72px); padding: 28px 26px;
    gap: 20px; transform: translateX(110%); transition: transform .3s ease; box-shadow: -10px 0 30px rgba(0, 0, 0, .12);
  }
  .nav.open { transform: translateX(0); }
  .nav-acceso { margin-top: 6px; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .grid-2-rev > div:first-child { order: 2; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .proceso { grid-template-columns: repeat(2, 1fr); }
  .check-list-2col { columns: 1; }
  .stats { grid-template-columns: repeat(2, 1fr); padding: 22px 14px; row-gap: 22px; }
  .stat:nth-child(2)::before { display: none; }
  .stat:nth-child(3) { padding-top: 22px; }
  .stat:nth-child(4) { padding-top: 22px; }
  .stat:nth-child(3)::before,
  .stat:nth-child(4)::before {
    content: ''; left: 12%; right: 12%; top: 0; bottom: auto; width: auto; height: 1px;
  }
  .especialidades { grid-template-columns: 1fr; }
  .mv { grid-template-columns: 1fr; gap: 16px; }
  .mini-stats { grid-template-columns: 1fr; }
  .sectores { grid-template-columns: 1fr; }
  .people { grid-template-columns: repeat(3, 1fr); }
  .acceso-inner { flex-direction: column; text-align: center; gap: 22px; }
  .hero { background-attachment: scroll; }
  .section { padding: 72px 0; }
}

@media (max-width: 540px) {
  .cards, .cards-3 { grid-template-columns: 1fr; }
  .proceso { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero-content { padding-bottom: 54px; }
  .stats { padding: 22px 18px; }
  .stat strong { font-size: 1.5rem; }
  .people { grid-template-columns: 1fr; gap: 12px; }
  .logos { gap: 16px; }
  .logo-chip { min-width: 0; width: 100%; padding: 18px; }
  .logo-chip img { height: 42px; }
  .wa-float .wa-float-label { display: none; }
  .wa-float { padding: 14px; }
  .brand-text small { display: none; }
}
