/* ==========================================================================
   ChatBoot — Tabela de Preços interativa
   Identidade visual herdada do site institucional BootComp / ChatBoot
   ========================================================================== */

:root {
  --blue-700: #0A47C2;
  --blue-600: #2563EB;
  --blue-500: #0166FD;
  --blue-400: #4F8CFF;
  --navy-900: #0F172A;
  --slate-700: #334155;
  --slate-500: #64748B;
  --slate-300: #CBD5E1;
  --slate-100: #F1F5F9;
  --green-500: #0FA968;
  --green-100: #DCFCE9;
  --orange-500: #F37122;
  --amber-400: #FBAD39;
  --white: #FFFFFF;
  --bg: #F8FAFC;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.12);

  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  color: var(--navy-900);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button, input { font-family: inherit; }
button { cursor: pointer; }

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

.icon { width: 1em; height: 1em; flex-shrink: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--green-500);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(15, 169, 104, 0.28);
}
.btn-primary:hover { background: #0c9159; box-shadow: 0 10px 24px rgba(15, 169, 104, 0.35); }

.btn-secondary {
  background: var(--white);
  color: var(--blue-600);
  border: 1.5px solid var(--slate-300);
}
.btn-secondary:hover { border-color: var(--blue-600); background: #F5F8FF; }

.btn-block { width: 100%; }

/* ---------- Header (herdado do site institucional) ---------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--slate-100);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--navy-900); }
.brand-logo { height: 36px; width: auto; display: block; }

.brand-group {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
  border-right: 1px solid var(--slate-100);
}
.header-trust { display: flex; align-items: center; gap: 10px; }
.header-badge { height: 24px; width: auto; display: block; }

@media (max-width: 900px) {
  .brand-group { gap: 0; padding-right: 0; border-right: none; }
  .header-trust { display: none; }
}

.nav-links { display: flex; align-items: center; gap: 28px; font-size: 15px; font-weight: 600; color: var(--slate-700); }
.nav-links a:hover { color: var(--blue-600); }
.nav-links a.is-active { color: var(--blue-600); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.vendor-btn { padding: 10px 18px; }
@media (max-width: 560px) { .vendor-btn span.full { display: none; } }

.vendor-status {
  display: flex; align-items: center; gap: 10px;
  background: var(--green-100); border: 1px solid rgba(15,169,104,.3);
  border-radius: 999px; padding: 6px 8px 6px 14px;
}
.vendor-status span { font-size: 13px; font-weight: 700; color: var(--navy-900); white-space: nowrap; }
.vendor-status button {
  border: none; background: var(--white); border-radius: 999px; padding: 6px 12px;
  font-size: 12px; font-weight: 700; color: var(--slate-700);
}
.vendor-status button:hover { color: var(--blue-600); }

.mobile-menu .vendor-status { justify-content: space-between; padding: 10px 10px 10px 16px; }

.nav-toggle { display: none; background: none; border: none; padding: 8px; color: var(--navy-900); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 560px) {
  .header-actions .btn-primary span.full { display: none; }
}

.mobile-menu {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--white);
  z-index: 99;
  padding: 24px;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}
.mobile-menu.is-open {
  opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mobile-menu a { display: block; padding: 16px 4px; font-size: 18px; font-weight: 700; border-bottom: 1px solid var(--slate-100); color: var(--navy-900); }
.mobile-menu .btn { margin-top: 24px; }

/* ---------- Page hero ---------- */
.page-hero {
  padding: 56px 0 40px;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(37, 99, 235, 0.10), transparent 60%),
    radial-gradient(700px 360px at 0% 0%, rgba(15, 169, 104, 0.08), transparent 55%),
    var(--bg);
  text-align: center;
}
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue-600); background: #EEF3FF; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; letter-spacing: -0.02em; margin: 0 0 12px; color: var(--navy-900);
}
.page-hero p { font-size: 16.5px; color: var(--slate-500); max-width: 560px; margin: 0 auto; }

.product-switch {
  display: inline-flex;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: 999px;
  padding: 4px;
  margin-top: 28px;
  box-shadow: var(--shadow-sm);
}
.product-btn {
  border: none;
  background: transparent;
  padding: 10px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: var(--slate-500);
  transition: background 0.15s ease, color 0.15s ease;
}
.product-btn:hover { color: var(--blue-600); }
.product-btn.is-active { background: var(--blue-600); color: white; }

.is-hidden { display: none !important; }

/* ---------- Layout: main + summary rail ---------- */
.pricing-shell {
  padding: 32px 0 100px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .summary-card { display: none; }
}

.section-block { margin-bottom: 44px; scroll-margin-top: 92px; }
.section-block:last-child { margin-bottom: 0; }
.block-head { margin-bottom: 20px; }
.block-head h2 { font-size: 22px; font-weight: 800; margin: 0 0 4px; color: var(--navy-900); }
.block-head p { font-size: 14.5px; color: var(--slate-500); margin: 0; }
.block-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--blue-600);
  background: #EEF3FF; padding: 4px 10px; border-radius: 999px; margin-bottom: 8px;
}

/* ---------- Implementação banner ---------- */
.impl-banner {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: var(--white);
  border: 1.5px solid var(--slate-100);
  border-left: 4px solid var(--blue-600);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}
.impl-banner .impl-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: #EEF3FF; color: var(--blue-600);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.impl-banner .impl-text { flex: 1; min-width: 200px; }
.impl-banner strong { display: block; font-size: 15px; color: var(--navy-900); }
.impl-banner span { font-size: 13.5px; color: var(--slate-500); }
.impl-price { font-size: 20px; font-weight: 800; color: var(--blue-700); white-space: nowrap; }

/* ---------- Plan cards ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .plans-grid { grid-template-columns: 1fr; } }

.plan-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--slate-100);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  display: flex; flex-direction: column; gap: 10px;
}
.plan-card:hover { border-color: var(--blue-400); transform: translateY(-2px); }
.plan-card.is-selected { border-color: var(--blue-600); box-shadow: var(--shadow-md); background: #FBFDFF; }
.plan-card .plan-tag { font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-500); }
.plan-card .plan-users { font-size: 14px; font-weight: 700; color: var(--navy-900); }
.plan-card .plan-price { font-size: 26px; font-weight: 800; color: var(--blue-700); }
.plan-card .plan-price small { font-size: 13px; font-weight: 600; color: var(--slate-500); }
.plan-card .plan-radio {
  position: absolute; top: 18px; right: 18px;
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--slate-300);
  display: flex; align-items: center; justify-content: center;
}
.plan-card.is-selected .plan-radio { border-color: var(--blue-600); background: var(--blue-600); color: white; }
.plan-card.is-selected .plan-radio .icon { width: 12px; height: 12px; }
.plan-badge {
  position: absolute; top: -11px; left: 20px;
  background: linear-gradient(135deg, #F7D774, #D4A017);
  color: #4A2E00; font-size: 11px; font-weight: 800;
  padding: 4px 10px; border-radius: 999px; box-shadow: 0 2px 8px rgba(212,160,23,.35);
}

/* ---------- Option rows (módulos / serviços) ---------- */
.option-list { display: flex; flex-direction: column; gap: 12px; }
.option-card {
  background: var(--white);
  border: 1.5px solid var(--slate-100);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.option-card:has(.option-check:checked) { border-color: var(--blue-400); box-shadow: var(--shadow-sm); }
.option-row {
  display: flex; align-items: center; gap: 14px; cursor: pointer;
}
.option-check {
  width: 20px; height: 20px; flex-shrink: 0; accent-color: var(--blue-600);
}
.option-body { flex: 1; min-width: 0; }
.option-title { font-size: 14.5px; font-weight: 700; color: var(--navy-900); }
.option-note { font-size: 12.5px; color: var(--slate-500); margin-top: 2px; }
.option-price { font-size: 15px; font-weight: 800; color: var(--blue-700); white-space: nowrap; }

.option-sub {
  margin: 14px 0 0 34px;
  padding-top: 14px;
  border-top: 1px dashed var(--slate-100);
  display: none;
}
.option-sub.is-visible { display: block; }

.stepper { display: flex; align-items: center; gap: 10px; }
.stepper button {
  width: 30px; height: 30px; border-radius: 8px; border: 1.5px solid var(--slate-300);
  background: var(--white); color: var(--navy-900); font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.stepper button:hover { border-color: var(--blue-600); color: var(--blue-600); }
.stepper button:disabled { opacity: 0.4; cursor: default; }
.stepper .stepper-val { min-width: 26px; text-align: center; font-weight: 700; }

.radio-pill-group { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.radio-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px; border: 1.5px solid var(--slate-300);
  font-size: 13px; font-weight: 700; color: var(--slate-700); cursor: pointer;
  background: var(--white);
}
.radio-pill input { accent-color: var(--blue-600); }
.radio-pill.is-active { border-color: var(--blue-600); color: var(--blue-600); background: #EEF3FF; }

.row-between { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }

/* ---------- Summary rail ---------- */
.summary-card {
  position: sticky;
  top: 92px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-md);
  padding: 24px;
}
.summary-card h3 { font-size: 16px; font-weight: 800; margin: 0 0 4px; color: var(--navy-900); }
.summary-card .summary-plan { font-size: 13.5px; color: var(--slate-500); margin-bottom: 16px; }
.summary-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; max-height: 260px; overflow-y: auto; }
.summary-item { display: flex; justify-content: space-between; gap: 10px; font-size: 13.5px; color: var(--slate-700); }
.summary-item span:last-child { font-weight: 700; color: var(--navy-900); white-space: nowrap; }
.summary-empty { font-size: 13px; color: var(--slate-500); font-style: italic; }
.summary-divider { border-top: 1px solid var(--slate-100); margin: 14px 0; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.summary-total span:first-child { font-size: 14px; font-weight: 700; color: var(--navy-900); }
.summary-total strong { font-size: 26px; font-weight: 800; color: var(--green-500); }
.summary-note { font-size: 12px; color: var(--slate-500); margin-bottom: 16px; }
.summary-impl { display: flex; justify-content: space-between; font-size: 13px; color: var(--slate-500); margin-bottom: 18px; padding-top: 10px; border-top: 1px dashed var(--slate-100); }
.summary-impl strong { color: var(--blue-700); }

/* ---------- Mobile sticky bar ---------- */
.mobile-summary-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: var(--white);
  border-top: 1px solid var(--slate-100);
  box-shadow: 0 -8px 24px rgba(15,23,42,.1);
  padding: 12px 16px;
  align-items: center; justify-content: space-between; gap: 12px;
}
.mobile-summary-bar .msb-info { display: flex; flex-direction: column; }
.mobile-summary-bar .msb-info span { font-size: 11.5px; color: var(--slate-500); }
.mobile-summary-bar .msb-info strong { font-size: 19px; color: var(--green-500); }
@media (max-width: 980px) {
  .mobile-summary-bar { display: flex; }
  .pricing-shell { padding-bottom: 190px; }
}

.mobile-summary-panel {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 96;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -16px 40px rgba(15,23,42,.2);
  padding: 22px 22px 26px;
  max-height: 75vh; overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.mobile-summary-panel.is-open { transform: translateY(0); }
.mobile-summary-panel .panel-close {
  display: block; margin: 0 auto 14px; width: 40px; height: 4px; border-radius: 999px; background: var(--slate-300); border: none;
}

/* ---------- Inclui / condições ---------- */
.includes-section { padding: 8px 0 56px; }
.includes-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  padding: 36px;
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
  margin-bottom: 32px;
}
@media (max-width: 760px) { .includes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .includes-grid { grid-template-columns: 1fr; } }
.includes-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--navy-900); }
.includes-item .icon { color: var(--green-500); background: var(--green-100); border-radius: 50%; padding: 4px; width: 22px; height: 22px; flex-shrink: 0; }

.includes-grid.is-list { grid-template-columns: 1fr; gap: 14px; }
.includes-grid.is-list .includes-item { align-items: flex-start; font-weight: 500; line-height: 1.5; }
.includes-grid.is-list .includes-item .icon { margin-top: 2px; }

.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .info-cards { grid-template-columns: 1fr; } }
.info-card {
  background: var(--bg);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}
.info-card .info-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; margin-bottom: 12px; font-size: 18px;
}
.info-card h4 { font-size: 15.5px; font-weight: 800; margin: 0 0 8px; color: var(--navy-900); }
.info-card p, .info-card li { font-size: 13.5px; color: var(--slate-500); margin: 0 0 6px; line-height: 1.6; }
.info-card ul { padding-left: 18px; list-style: disc; }

/* ---------- Footer (herdado do site institucional) ---------- */
.site-footer { background: var(--navy-900); color: #CBD5E1; padding: 64px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo img { height: 56px; width: auto; display: block; background: white; padding: 8px 12px; border-radius: 8px; }
.footer-brand p { font-size: 14px; color: #94A3B8; max-width: 300px; margin: 0 0 20px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700;
  color: #CBD5E1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 12px; border-radius: 999px;
}
.badge-pill .icon { color: var(--green-500); }
.badge-pill-img { padding: 5px 10px; background: white; border-color: transparent; }
.badge-pill-img img { height: 16px; width: auto; display: block; }
.badge-pill-gold {
  color: #4A2E00; background: linear-gradient(135deg, #F7D774, #D4A017); border-color: transparent;
  font-weight: 800; box-shadow: 0 2px 10px rgba(212, 160, 23, 0.35);
}
.badge-pill-gold .icon { color: #4A2E00; }

.footer-col h4 { color: white; font-size: 14px; font-weight: 700; margin: 0 0 18px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a, .footer-col span { font-size: 14.5px; color: #94A3B8; }
.footer-col a:hover { color: white; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact .icon { margin-top: 3px; color: var(--blue-400); flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: white;
}
.footer-social a:hover { background: var(--blue-600); }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #64748B; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Links de pagamento (Asaas) ---------- */
.payment-links { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.payment-link-item {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--green-100); border: 1px solid rgba(15,169,104,.25);
  border-radius: var(--radius-sm); padding: 10px 12px;
}
.payment-link-item .pli-info { min-width: 0; }
.payment-link-item .pli-name { font-size: 12.5px; font-weight: 700; color: var(--navy-900); }
.payment-link-item .pli-url { font-size: 12px; color: var(--blue-700); word-break: break-all; }
.payment-link-item .pli-copy {
  flex-shrink: 0; border: 1px solid var(--slate-300); background: var(--white);
  border-radius: 8px; padding: 6px 10px; font-size: 12px; font-weight: 700; color: var(--slate-700);
}
.payment-link-item .pli-copy:hover { border-color: var(--blue-600); color: var(--blue-600); }
.payment-link-error {
  font-size: 12.5px; color: #B91C1C; background: #FEF2F2; border: 1px solid #FECACA;
  border-radius: var(--radius-sm); padding: 10px 12px;
}
.payment-link-loading { font-size: 12.5px; color: var(--slate-500); font-style: italic; }

/* ---------- Modal (acesso do vendedor) ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15,23,42,.55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.15s ease, visibility 0s linear 0.15s;
}
.modal-overlay.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity 0.15s ease;
}
.modal-box {
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 28px; width: 100%; max-width: 360px;
}
.modal-box h3 { margin: 0 0 8px; font-size: 17px; font-weight: 800; color: var(--navy-900); }
.modal-box p { margin: 0 0 16px; font-size: 13.5px; color: var(--slate-500); }
.modal-input {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--slate-300); font-size: 14px; margin-bottom: 8px;
}
.modal-input:focus { outline: none; border-color: var(--blue-600); }
.modal-error { min-height: 18px; font-size: 12.5px; color: #B91C1C; margin-bottom: 8px; }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; }
.modal-actions .btn { padding: 10px 18px; }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-500); display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: 0 10px 24px rgba(15, 169, 104, 0.4); font-size: 24px;
}
.whatsapp-float:hover { background: #0c9159; }
@media (max-width: 980px) { .whatsapp-float { bottom: 96px; } }
