:root {
  --bg:          #f4f6fb;
  --bg-2:        #eaedf5;
  --bg-card:     #ffffff;
  --bg-dark:     #0a0f1e;
  --bg-dark-2:   #0f1628;
  --bg-dark-3:   #162038;

  --teal:        #3b82f6;
  --teal-deep:   #1d4ed8;
  --teal-light:  #93c5fd;
  --teal-pale:   #eff6ff;
  --teal-dim:    rgba(59,130,246,.12);
  --teal-glow:   rgba(59,130,246,.22);

  --indigo:      #f97316;
  --indigo-deep: #ea580c;
  --indigo-pale: #fff7ed;
  --indigo-dim:  rgba(249,115,22,.12);

  --rose:        #f59e0b;
  --rose-pale:   #fffbeb;
  --rose-dim:    rgba(245,158,11,.12);

  --amber:       #0ea5e9;
  --amber-pale:  #f0f9ff;

  --text:        #0a0f1e;
  --text-2:      #1e2d4d;
  --text-3:      #5a6a85;
  --text-4:      #8fa3c0;
  --text-inv:    #f0f5ff;

  --border:      rgba(0,0,0,.07);
  --border-2:    rgba(0,0,0,.13);
  --border-teal: rgba(59,130,246,.3);

  --font-h:  serif;
  --font-b:  sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow:    0 2px 12px rgba(10,15,30,.06), 0 1px 3px rgba(10,15,30,.04);
  --shadow-md: 0 8px 32px rgba(10,15,30,.1),  0 2px 8px rgba(10,15,30,.06);
  --shadow-lg: 0 24px 64px rgba(10,15,30,.14),0 4px 16px rgba(10,15,30,.08);
  --ease:      cubic-bezier(.4,0,.2,1);
  --spring:    cubic-bezier(.34,1.56,.64,1);

  --bottom-bar-h: 42px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; font-size: 16px }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: var(--bottom-bar-h);
}
a  { text-decoration: none; color: inherit }
ul { list-style: none }

#cur {
  position: fixed; width: 10px; height: 10px; border-radius: 50%;
  background: var(--indigo); pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s;
  mix-blend-mode: multiply;
}
#cur-o {
  position: fixed; width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(249,115,22,.5);
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: left .14s var(--ease), top .14s var(--ease), width .3s, height .3s, border-color .3s;
}
body.hov #cur   { width: 22px; height: 22px; background: var(--teal); mix-blend-mode: multiply }
body.hov #cur-o { width: 50px; height: 50px; border-color: rgba(59,130,246,.4) }

.w { max-width: 1200px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2 }

.rv { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease) }
.rv.in { opacity: 1; transform: none }
.d1 { transition-delay: .08s } .d2 { transition-delay: .16s } .d3 { transition-delay: .24s }
.d4 { transition-delay: .32s } .d5 { transition-delay: .40s }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 100px; border: none; cursor: pointer;
  font-family: var(--font-b); font-size: .875rem; font-weight: 600;
  letter-spacing: .01em; transition: box-shadow .3s var(--ease), transform .3s var(--ease); position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.15); opacity: 0; transition: opacity .25s; border-radius: inherit;
}
.btn:hover::after { opacity: 1 }
.btn-primary {
  background: linear-gradient(135deg, var(--indigo-deep) 0%, var(--indigo) 100%);
  color: #fff; box-shadow: 0 4px 20px rgba(234,88,12,.32);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(234,88,12,.5); transform: translateY(-2px) }
.btn-secondary {
  background: var(--bg-card); color: var(--text-2);
  border: 1.5px solid var(--border-2); box-shadow: var(--shadow);
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal-deep); transform: translateY(-2px); box-shadow: var(--shadow-md) }
.btn-indigo {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: #fff; box-shadow: 0 4px 20px rgba(29,78,216,.3);
}
.btn-indigo:hover { box-shadow: 0 8px 32px rgba(29,78,216,.45); transform: translateY(-2px) }
.btn-ghost {
  background: transparent; color: var(--text-3); border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-2); border-color: var(--border-2); color: var(--text-2) }
.btn-lg { padding: 15px 38px; font-size: .95rem }
.btn-xl { padding: 18px 48px; font-size: 1rem; border-radius: 100px }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 72px; overflow: visible;
  background: linear-gradient(135deg, #fdba74 0%, #ffffff 50%, #93c5fd 100%);
  backdrop-filter: blur(20px); will-change: transform;
  border-bottom: 2px solid rgba(249,115,22,.4);
  box-shadow: 0 2px 24px rgba(249,115,22,.2), 0 1px 4px rgba(59,130,246,.15);
  pointer-events: auto !important;
}
.nav::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, #ea580c 0%, #fb923c 30%, #60a5fa 70%, #1d4ed8 100%);
  z-index: 1;
}
.nav.scrolled {
  height: 62px;
  background: linear-gradient(135deg, #fb923c 0%, #ffffff 50%, #60a5fa 100%);
  box-shadow: 0 4px 28px rgba(249,115,22,.25), 0 1px 6px rgba(59,130,246,.15);
}
.nav .w {
  height: 100%; display: flex; align-items: center;
  max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 28px; justify-content: center;
}
.nav-row {
  display: flex; align-items: center; width: 100%; height: 100%; gap: 0; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-size: 1.25rem; font-weight: 600;
  color: var(--text); letter-spacing: -.01em; flex-shrink: 0; margin-right: 32px;
  background: rgba(255,255,255,0.75); padding: 6px 14px; border-radius: 10px;
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 2px 12px rgba(249,115,22,.15);
}
.logo-img { height: 34px; width: auto; display: block; }
.nav-links {
  display: flex; align-items: center; gap: 8px; flex: 1; height: 100%; justify-content: center;
}
.nav-links > li { display: flex; align-items: center; height: 100%; position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; height: 100%; padding: 0 16px;
  font-size: 1rem; font-weight: 600; color: #1e2d4d; transition: color .25s;
  white-space: nowrap; line-height: 1; text-shadow: 0 1px 2px rgba(255,255,255,0.6);
}
.nav-links > li > a:hover { color: var(--text); }
.nav-links > li > a.active { color: var(--indigo-deep); }
.nav-badge-link { display: inline-flex; align-items: center; gap: 6px; }
.nav-live-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 7px; border-radius: 100px;
  background: var(--indigo-deep); color: #fff;
  font-size: .6rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.live-dot { width: 5px; height: 5px; border-radius: 50%; background: #fff; animation: blink 1.4s infinite; }

.dropdown > a::after { content: "▾"; font-size: 1rem; margin-left: 4px; opacity: .5; display: inline-block; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 210px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 6px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .25s var(--ease); z-index: 1000; pointer-events: none;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.dropdown-menu li { height: auto; position: relative; display: block; }
.dropdown-menu li a {
  display: block; height: auto; padding: 10px 16px;
  font-size: .8rem; font-weight: 400; color: var(--text-2); transition: all .2s ease; line-height: 1.4;
}
.dropdown-menu li a:hover { background: var(--indigo-pale); color: var(--indigo-deep); }
.submenu-dropdown {
  position: absolute; top: 0; left: 100%; min-width: 220px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 6px 0;
  opacity: 0; visibility: hidden; transform: translateX(8px);
  transition: all .25s var(--ease); z-index: 1001; pointer-events: none;
}
.dropdown-menu li:hover .submenu-dropdown { opacity: 1; visibility: visible; transform: translateX(0); pointer-events: auto; }
.submenu > a::after { content: "▸"; float: right; font-size: .6rem; opacity: .5; margin-top: 2px; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s var(--ease); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.nav-hamburger.open span:nth-child(2) { opacity: 0 }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

.nav-mobile-drawer {
  display: none; flex-direction: column; gap: 2px; padding: 12px 16px 16px;
  border-top: 1px solid rgba(249,115,22,.2);
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  position: fixed; top: 72px; right: 0; left: auto; width: 220px; z-index: 901;
  border-radius: 0 0 0 16px; box-shadow: -4px 8px 24px rgba(0,0,0,.1);
}
.nav-mobile-drawer.open { display: flex; }
.nav-mobile-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: 0; width: 100%; }
.nav.scrolled ~ .nav-mobile-drawer { top: 62px; }
.nav-mobile-links a {
  padding: 10px 12px; font-size: .88rem; font-weight: 500; color: var(--text-2);
  border-radius: 8px; transition: background .2s, color .2s; display: block; width: 100%; text-align: left;
}
.nav-mobile-links a:hover { background: var(--indigo-pale); color: var(--indigo-deep); }

.sub-nav {
  position: fixed; left: 0; right: 0; top: 72px; z-index: 899;
  background: linear-gradient(90deg, #fb923c 0%, #fed7aa 25%, #ffffff 50%, #bfdbfe 75%, #60a5fa 100%);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid rgba(59,130,246,.3);
  box-shadow: 0 4px 16px rgba(249,115,22,.15), 0 2px 8px rgba(59,130,246,.1);
  transition: top .4s var(--ease);
}
.nav.scrolled ~ .sub-nav, .sub-nav.nav-scrolled { top: 62px; background: linear-gradient(90deg, #bfdbfe 0%, #ffffff 50%, #fed7aa 100%); }
.sub-nav-row {
  display: flex; align-items: center; justify-content: center; overflow-x: auto; scrollbar-width: none;
  max-width: 1200px; margin: 0 auto; padding: 0 28px; gap: 8px;
}
.sub-nav-row::-webkit-scrollbar { display: none; }
.sub-nav-item {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 25px;
  font-size: .76rem; font-weight: 500; color: var(--text-3); white-space: nowrap;
  border-bottom: 2px solid transparent; transition: color .25s, border-color .25s, background .25s;
  cursor: pointer; flex: 0 0 auto;
}
.sub-nav-item:hover { color: var(--indigo-deep); background: linear-gradient(180deg, rgba(249,115,22,.1) 0%, rgba(59,130,246,.04) 100%); }
.sub-nav-item.active { color: var(--indigo-deep); border-bottom-color: var(--indigo-deep); font-weight: 600; background: linear-gradient(180deg, rgba(249,115,22,.06) 0%, rgba(249,115,22,.01) 100%); }

section { padding: 100px 0; position: relative; z-index: 2 }
.sec-tag {
  display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 100px;
  background: var(--indigo-dim); font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--indigo-deep); margin-bottom: 14px;
}
.sec-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--indigo) }
.sec-h {
  font-family: var(--font-h); font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -.02em; color: var(--text);
}
.sec-h strong { font-weight: 700 }
.sec-h em {
  font-style: italic;
  background: linear-gradient(135deg, var(--teal-deep), var(--indigo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sec-sub { font-size: .95rem; color: var(--text-3); line-height: 1.8; margin-top: 12px; max-width: 560px }

.fg { margin-bottom: 12px }
.fl { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-4); margin-bottom: 5px; }
.fi, .fsel {
  width: 100%; padding: 11px 14px; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 8px; font-family: var(--font-b); font-size: .88rem; color: var(--text);
  outline: none; transition: all .25s; appearance: none;
}
.fi::placeholder { color: var(--text-4) }
.fi:focus, .fsel:focus { border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px var(--teal-dim); }
.fsel option { background: #fff }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px }
.hp-field { opacity: 0; position: absolute; top: -9999px; left: -9999px; height: 0; width: 0; }
.phone-group { display: flex; gap: 8px; align-items: stretch; }
.phone-select-wrap { position: relative; flex: 0 0 20%; min-width: 0; }
.phone-select-wrap::after {
  content: ''; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid var(--text-4); pointer-events: none; transition: border-top-color .25s;
}
.phone-select-wrap:focus-within::after { border-top-color: var(--teal); }
.fsel {
  width: 100%; height: 100%; padding: 11px 20px 11px 10px; background: var(--bg);
  border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font-b);
  font-size: .83rem; color: var(--text-2); outline: none; appearance: none; -webkit-appearance: none;
  cursor: pointer; transition: all .25s; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.fsel:focus { border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px var(--teal-dim); }
.fsel:hover { border-color: var(--border-2); }
.phone-input-wrap { flex: 0 0 80%; min-width: 0; }
.phone-input-wrap .fi { height: 100%; }

.mq-wrap { padding: 44px 0; overflow: hidden; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.mq-fade {
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.mq-row { display: flex; gap: 10px; width: max-content; animation: mq 28s linear infinite }
.mq-row:hover { animation-play-state: paused }
@keyframes mq { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.co-pill {
  display: flex; align-items: center; justify-content: center; padding: 8px 20px;
  background: #fff; border-radius: 40px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); flex-shrink: 0;
}
.alumni-pill {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 12px; background: #87CEEB; border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08); flex-shrink: 0; gap: 6px; min-width: 150px; text-align: center;
}
.co-logo { height: 32px; width: auto; max-width: 120px; object-fit: contain; display: block; }
.digi-fix { max-height: 38px; transform: scale(1.2); }
.alumni-img { height: 120px; width: 120px; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto; }
.alumni-name { font-size: 13px; font-weight: 600; color: #222; }
.alumni-company { font-size: 11px; font-weight: 400; color: #888; }

.toast-box {
  position: fixed; bottom: 30px; right: 30px; padding: 14px 24px;
  border-radius: 10px; font-size: 0.95rem; font-weight: 500; z-index: 9999;
  opacity: 0; animation: fadeInOut 4s ease forwards;
}
.toast-success { background: #28a745; color: #fff; }
.toast-error   { background: #dc3545; color: #fff; }
@keyframes fadeInOut {
  0%   { opacity: 0; transform: translateY(20px); }
  15%  { opacity: 1; transform: translateY(0); }
  80%  { opacity: 1; }
  100% { opacity: 0; }
}

.whatsapp-float {
  position: fixed; bottom: calc(var(--bottom-bar-h) + 16px); right: 20px;
  background-color: #25D366; color: white; width: 60px; height: 60px;
  border-radius: 50%; text-align: center; font-size: 28px; line-height: 60px;
  text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 10500;
  animation: bounce 2.5s infinite; display: flex; align-items: center; justify-content: center;
}
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }
@keyframes blink { 0%,100% { opacity: 1 } 50% { opacity: .3 } }

.bottom-bar {
  position: fixed; bottom: 0; left: 0; width: 100%; height: var(--bottom-bar-h); z-index: 10000;
  background: linear-gradient(90deg, var(--indigo-deep) 0%, var(--indigo) 40%, var(--teal-deep) 100%);
  display: flex; justify-content: center; align-items: center; text-align: center;
  padding: 0 20px; font-size: .88rem; font-weight: 600; color: rgba(255,255,255,0.88);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}
.bottom-bar span { font-weight: 800; color: #fff; margin-left: 6px; }
.bottom-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; height: 100%; text-decoration: none; color: inherit; }
.bottom-bar a:active { opacity: 0.8; }

footer {
  background: linear-gradient(135deg, #fdba74 0%, #ffffff 45%, #93c5fd 100%);
  border-top: 2px solid rgba(249,115,22,.4);
  padding: 64px 0 16px; position: relative; z-index: 2;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, #ea580c 0%, #fb923c 30%, #60a5fa 70%, #1d4ed8 100%);
}
.foot-grid { display: grid; grid-template-columns: 260px 1fr 1fr 220px; gap: 48px; margin-bottom: 48px; align-items: start; }
.foot-brand p { font-size: .83rem; color: var(--text-3); margin-top: 12px; line-height: 1.75; }
.foot-soc { display: flex; gap: 8px; margin-top: 16px; }
.fsoc {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, #fed7aa, #bfdbfe);
  border: 1.5px solid rgba(249,115,22,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--indigo-deep); cursor: pointer; transition: all .25s var(--ease);
}
.fsoc:hover { background: var(--indigo-pale); border-color: rgba(249,115,22,.35); color: var(--indigo-deep); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(249,115,22,.15); }
.foot-col h5, .foot-map-col h5 {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-2); margin-bottom: 16px; position: relative; padding-bottom: 10px;
}
.foot-col h5::after, .foot-map-col h5::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 24px; height: 2px;
  background: linear-gradient(90deg, #ea580c, #3b82f6); border-radius: 2px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col ul a { font-size: 1rem; color: var(--text-3); transition: color .2s, padding-left .2s; display: inline-flex; align-items: center; gap: 0; }
.foot-col ul a:hover { color: var(--indigo-deep); padding-left: 4px; }
.foot-map-col { display: flex; flex-direction: column; }
.foot-map-col .map-embed { height: 180px; border-radius: 10px; overflow: hidden; border: 1.5px solid rgba(249,115,22,.2); box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.foot-map-col .map-embed iframe { width: 100%; height: 100%; display: block; border: 0; }
.foot-btm {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 0; border-top: 2px solid rgba(249,115,22,.3);
  font-size: .78rem; color: var(--text-2); font-weight: 500; flex-wrap: wrap; gap: 12px;
}
.foot-links { display: flex; gap: 20px; }
.foot-links a { color: var(--text-2); font-weight: 500; transition: color .2s; }
.foot-links a:hover { color: var(--indigo-deep); }

.popup-overlay { z-index: 10000; }

.dark-section {
  --bg-card:  var(--bg-dark-2); --text: var(--text-inv); --text-2: #c0ceeb;
  --text-3: #6a7d9e; --border: rgba(255,255,255,.07); --border-2: rgba(255,255,255,.12);
  --shadow: 0 2px 12px rgba(0,0,0,.3); --shadow-md: 0 8px 32px rgba(0,0,0,.4);
}

@media (max-width: 1100px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-map-col { grid-column: 1 / -1; }
  .foot-map-col .map-embed { height: 200px; }
}

@media (max-width: 1024px) {
  .nav-links { gap: 2px }
  .nav-links > li > a { padding: 0 7px; font-size: .75rem }
}

@media (max-width: 768px) {
  :root { --bottom-bar-h: 38px; }
  .nav-links { display: none }
  .nav-hamburger { display: flex }
  .nav-row { flex-wrap: nowrap; align-items: center }
  .sub-nav { display: none !important }
  #cur, #cur-o { display: none }
  footer { padding: 48px 0 12px; }
  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
  .foot-brand { grid-column: auto; }
  .foot-map-col { grid-column: auto; }
  .foot-map-col .map-embed { height: 200px; }
  .foot-btm { flex-direction: column; text-align: center; }
  .foot-links { justify-content: center; }
  .bottom-bar { font-size: .8rem; padding: 0 16px; }
  .whatsapp-float { bottom: calc(var(--bottom-bar-h) + 10px) !important; right: 15px !important; width: 50px !important; height: 50px !important; font-size: 24px !important; line-height: 50px !important; }
}