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

/* ─── DESIGN TOKENS ──────────────────────────────── */
:root {
  --primary:                #001e40;
  --primary-container:      #003366;
  --primary-subtle:         #f0f4f9;
  --on-primary:             #ffffff;

  --secondary:              #006a6a;
  --secondary-light:        #007f7f;
  --secondary-subtle:       #e6f4f4;
  --on-secondary:           #ffffff;

  --tertiary:               #8b1a00;
  --tertiary-light:         #c0392b;
  --on-tertiary:            #ffffff;
  --coral:                  #D97B6A;

  --background:             #f8f9fa;
  --surface:                #ffffff;
  --surface-low:            #f3f4f6;
  --dark:                   #0a0f1a;

  --on-background:          #191c1d;
  --on-surface:             #191c1d;
  --on-surface-variant:     #505866;

  --outline-variant:        rgba(0, 30, 64, 0.08);

  --font-headline:          'Manrope', sans-serif;
  --font-body:              'Inter', sans-serif;

  --radius-sm:              0.75rem;
  --radius-lg:              1.5rem;
  --radius-xl:              2.5rem;
  --radius-full:            9999px;

  --shadow-sm:              0 2px 8px rgba(0,30,64,0.06);
  --shadow-md:              0 8px 32px rgba(0,30,64,0.10);
  --shadow-lg:              0 20px 60px rgba(0,30,64,0.14);

  --transition:             0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ─── RESET ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--on-background);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-headline);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

a { text-decoration: none; color: inherit; transition: all var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ─── LAYOUT ─────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.section-padding { padding: 6rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-overline {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.section-overline--light { color: rgba(255,255,255,0.55); }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--on-surface-variant);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.text-white { color: #fff !important; }
.text-coral { color: var(--coral); }
.bg-primary { background-color: var(--primary); }
.bg-primary-subtle { background-color: var(--primary-subtle); }
.bg-dark { background-color: var(--dark); }

/* ─── MOTION: DATA-MOTION ANIMATIONS ─────────────── */
[data-motion] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16,1,0.3,1);
}

[data-motion="fade-up"]    { transform: translateY(32px); }
[data-motion="fade-down"]  { transform: translateY(-20px); }
[data-motion="fade-right"] { transform: translateX(-32px); }
[data-motion="fade-left"]  { transform: translateX(32px); }

[data-motion].is-visible {
  opacity: 1;
  transform: none;
}

/* ─── HEADER ─────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--background); /* Solid for better contrast */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--outline-variant);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: all var(--transition);
}

/* Adjust main for fixed header */
main {
  margin-top: 72px; 
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--on-surface-variant);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.header.scrolled {
  background: rgba(248, 249, 250, 0.97);
  box-shadow: 0 2px 24px rgba(0, 30, 64, 0.10);
}


/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-family: var(--font-headline);
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

/* CTA: Teal (secondary) — high contrast, for conversion */
.btn-cta {
  background: var(--secondary);
  color: white;
  box-shadow: 0 0 0 0 rgba(0,106,106,0.4);
}

.btn-cta:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,106,106,0.35);
}

.btn-cta:active { transform: translateY(0); }

/* Ghost: for dark hero backgrounds */
.btn-secondary-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-family: var(--font-headline);
  font-size: 0.875rem;
  color: white;
  border: 2px solid rgba(255,255,255,0.45);
  background: transparent;
  backdrop-filter: blur(4px);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-secondary-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-2px);
}

.w-full { width: 100%; justify-content: center; }
.d-none-mobile { display: inline-flex; }

/* Mobile hamburger */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 28px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 10px;
  transition: all 0.3s linear;
}

.mobile-menu-btn.toggle span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
.mobile-menu-btn.toggle span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.toggle span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }

/* ─── HERO ───────────────────────────────────────── */
.hero.hero-video {
  position: relative;
  background-color: var(--primary);
  color: white;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.hero.hero-video::after { display: none; }

.hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-canvas.loaded { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 15, 40, 0.92) 0%,
    rgba(0, 15, 40, 0.75) 38%,
    rgba(0, 15, 40, 0.15) 60%,
    transparent 80%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-content-centered {
  max-width: 520px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.display-txt {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── STATS ──────────────────────────────────────── */
.stats {
  background-color: var(--surface);
  border-bottom: 1px solid var(--outline-variant);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 0;
}

.stat-item {
  padding: 3rem 2rem;
  border-right: 1px solid var(--outline-variant);
  transition: background var(--transition);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--primary-subtle); }

.stat-number {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.4rem;
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--on-surface-variant);
  font-weight: 500;
}

/* ─── BENEFITS ───────────────────────────────────── */
.benefits {
  background-color: var(--primary-subtle);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  background-color: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--outline-variant);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.bg-teal-soft  { background-color: rgba(0, 106, 106, 0.1); }
.bg-coral-soft { background-color: rgba(217, 123, 106, 0.1); }

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 0.6rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--on-surface-variant);
  line-height: 1.65;
}

/* ─── SOLUTIONS ──────────────────────────────────── */
.solutions { background-color: var(--background); }

.solutions-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 1.25rem;
}

.solution-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-main {
  grid-row: span 2;
  background-color: var(--primary);
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

/* Coverage pulse on card-main */
.card-main::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0,106,106,0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0.8);
  animation: pulse 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
  50%       { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
}

.card-secondary {
  background-color: var(--surface);
  border: 1px solid var(--outline-variant);
}

.card-teal { background-color: var(--secondary); }

.card-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.card-icon-sm { font-size: 1.75rem; }

.solution-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.solution-card p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.65;
  flex: 1;
}

.btn-link-light {
  font-weight: 700;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--transition), gap var(--transition);
}

.btn-link-light:hover { color: white; gap: 0.6rem; }

.btn-link-dark {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}

.btn-link-dark:hover { gap: 0.6rem; }

/* ─── PROCESS ────────────────────────────────────── */
.process { background-color: var(--primary-subtle); }

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.process-header { padding-top: 1rem; }
.process-header .section-title { text-align: left; }

.process-steps { padding-top: 0.5rem; }

.step-item {
  display: flex;
  gap: 1.75rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 52px;
  width: 2px;
  height: calc(100% - 30px);
  background: linear-gradient(to bottom, var(--secondary), transparent);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: var(--font-headline);
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--on-surface);
}

.step-content p {
  font-size: 0.9rem;
  color: var(--on-surface-variant);
  line-height: 1.65;
}

/* ─── TESTIMONIALS ───────────────────────────────── */
.testimonials { background-color: var(--background); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background-color: var(--surface);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--outline-variant);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.quote-mark {
  font-size: 3rem;
  font-family: Georgia, serif;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: -0.5rem;
}

.quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--on-surface);
  line-height: 1.7;
  flex: 1;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: white;
  flex-shrink: 0;
}

.avatar-teal  { background-color: var(--secondary); }
.avatar-coral { background-color: var(--tertiary); }

.user-name { font-weight: 600; font-size: 0.9rem; color: var(--on-surface); }
.user-role { font-size: 0.78rem; color: var(--on-surface-variant); }

/* ─── CONTACT ────────────────────────────────────── */
.contact { background-color: var(--primary); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-info .section-title { text-align: left; font-size: 2.2rem; }

.contact-desc {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details { display: flex; flex-direction: column; gap: 0.85rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}

.contact-icon { font-size: 1.1rem; }

.contact-form-container {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.45rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  background-color: rgba(255,255,255,0.08);
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.form-group input::placeholder { color: rgba(255,255,255,0.4); }

.form-group select option { background: var(--primary); color: white; }

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary-light);
  background-color: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(0,106,106,0.25);
}

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  background-color: var(--dark);
  padding: 2.5rem 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ─── SCROLL REVEAL (legacy) ─────────────────────── */
.reveal-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 968px) {
  .mobile-menu-btn { display: flex !important; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh; width: 280px;
    background: var(--surface);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    box-shadow: -10px 0 40px rgba(0,0,0,0.12);
    transition: right 0.4s ease;
    z-index: 1000;
  }

  .nav-links.nav-active { right: 0; }
  .d-none-mobile { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--outline-variant); }

  .solutions-grid { grid-template-columns: 1fr; }
  .card-main { grid-row: span 1; min-height: 260px; }

  .process-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .section-padding { padding: 4rem 0; }

  .display-txt { font-size: 2.75rem; }
  .hero-content-centered { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .hero.hero-video { min-height: 100svh; }
}

@media (max-width: 480px) {
  .display-txt { font-size: 2.25rem; }
  .hero-btns { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
  .benefits-grid { grid-template-columns: 1fr; }
}
/* ─── WHATSAPP FLOAT ─────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform var(--transition), background-color var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  background-color: #128c7e;
  color: white;
}

.icon-whatsapp {
  width: 28px;
  height: 28px;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-5.5-2.8-23.4-8.6-44.6-27.6-16.5-14.7-27.6-32.8-30.8-38.4-3.2-5.6-.3-8.6 2.5-11.4 2.5-2.5 5.5-6.5 8.3-9.7 2.8-3.2 3.7-5.5 5.6-9.2 1.9-3.7 1-6.9-.5-9.7-1.5-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 13.2 5.8 23.5 9.2 31.5 11.8 13.3 4.2 25.4 3.6 35 2.2 10.7-1.5 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-5.5-2.8-23.4-8.6-44.6-27.6-16.5-14.7-27.6-32.8-30.8-38.4-3.2-5.6-.3-8.6 2.5-11.4 2.5-2.5 5.5-6.5 8.3-9.7 2.8-3.2 3.7-5.5 5.6-9.2 1.9-3.7 1-6.9-.5-9.7-1.5-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 13.2 5.8 23.5 9.2 31.5 11.8 13.3 4.2 25.4 3.6 35 2.2 10.7-1.5 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E") no-repeat center;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
}
