/* ============================================================
   EPOC Pereira — Dra. Martha Sofía Sánchez
   CSS específico construido sobre las clases del index.html
   Paleta y tipografía: manual de marca
   ============================================================ */

:root {
  --navy: #031D3D;
  --navy-soft: #0a2c52;
  --blue: #7FADD4;
  --blue-mid: #4a89b8;
  --cream: #FDF6E1;
  --warm-white: #fffdf5;
  --gray: #5d6b7a;
  --gray-soft: #8a96a3;
  --light-gray: #e6e1d0;
  --accent: #c8a96e;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da955;
}

/* Reset mínimo */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--warm-white);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ============================================================
   .icon — sistema de iconos SVG inline
   ============================================================ */
.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

/* ============================================================
   NAVEGACIÓN — clases: .nav-logo · .nav-links · .nav-cta · .hamburger · .mobile-menu
   ============================================================ */
.nav-logo {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,253,245,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--light-gray);
  padding: 0 5%;
  height: 64px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.nav-logo span { color: var(--blue-mid); font-style: italic; margin-left: 0.2rem; }

/* Como .nav-logo está fixed, el resto del nav se desplaza junto: agrupamos con un wrapper */
.nav-links {
  position: fixed;
  top: 0; right: 5%;
  height: 64px;
  z-index: 101;
  display: none;
  gap: 1.5rem;
  align-items: center;
}
.nav-links li { display: inline-flex; }
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--blue-mid); }

.nav-cta {
  background: var(--navy) !important;
  color: white !important;
  padding: 0.55rem 1.2rem;
  border-radius: 4px;
  transition: background 0.25s, transform 0.25s !important;
  font-size: 0.76rem !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.nav-cta:hover { background: var(--blue-mid) !important; transform: translateY(-1px); }

.hamburger {
  position: fixed;
  top: 0; right: 5%;
  height: 64px;
  z-index: 101;
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  display: block;
}

/* Espaciador para que el contenido no quede tapado por el header fijo */
body { padding-top: 64px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--light-gray);
  padding: 1.25rem 5% 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 99;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--light-gray);
}
.mobile-menu .btn-primary {
  text-align: center;
  justify-content: center;
  border-bottom: none;
  margin-top: 0.5rem;
}

/* ============================================================
   HERO — .condition-hero · .condition-hero-inner · .condition-quick-facts · .condition-fact
   ============================================================ */
.condition-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: white;
  padding: 4rem 5% 3rem;
  position: relative;
  overflow: hidden;
}
.condition-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(127,173,212,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.condition-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.condition-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.condition-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}

/* .post-tag — la etiqueta superior del hero */
.post-tag {
  display: inline-block;
  background: rgba(127,173,212,0.18);
  border: 1px solid rgba(127,173,212,0.32);
  color: var(--blue);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.95rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

/* .post-lead — descripción del hero */
.post-lead {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 720px;
}
.post-lead strong { color: white; font-weight: 600; }

/* Quick facts grid */
.condition-quick-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1.5rem;
}
.condition-fact {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.condition-fact .icon {
  width: 22px; height: 22px;
  color: var(--blue);
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
}
.condition-fact > div { flex: 1; }
.condition-fact strong {
  display: block;
  color: white;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.condition-fact span {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.55;
}

/* ============================================================
   BODY — .condition-body · .condition-content · .condition-sidebar · .sidebar-card
   ============================================================ */
.condition-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.condition-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #2a3441;
}
.condition-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 4vw, 2.1rem);
  font-weight: 500;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  line-height: 1.25;
}
.condition-content h2:first-child { margin-top: 0; }
.condition-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.75rem 0 0.65rem;
}
.condition-content p { margin-bottom: 1.1rem; font-weight: 300; }
.condition-content strong { color: var(--navy); font-weight: 600; }
.condition-content em { color: var(--blue-mid); font-style: italic; }
.condition-content ul,
.condition-content ol {
  margin: 0 0 1.35rem 1.35rem;
  font-weight: 300;
}
.condition-content ul li,
.condition-content ol li {
  list-style: revert;
  margin-bottom: 0.45rem;
}
.condition-content ul li::marker { color: var(--blue-mid); }
.condition-content ol li::marker { color: var(--blue-mid); font-weight: 600; }
.condition-content a {
  color: var(--blue-mid);
  text-decoration: underline;
  text-decoration-color: rgba(74,137,184,0.4);
  text-underline-offset: 3px;
}
.condition-content a:hover { text-decoration-color: var(--blue-mid); }

/* Sidebar */
.condition-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sidebar-card {
  background: white;
  border: 1px solid rgba(3,29,61,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(3,29,61,0.04);
}
.sidebar-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.sidebar-card p {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.65;
}
.sidebar-card p:last-child { margin-bottom: 0; }
.sidebar-card strong { color: var(--navy); font-weight: 600; }
.sidebar-card a { color: var(--blue-mid); font-weight: 500; }
.sidebar-card a:hover { text-decoration: underline; }

/* ============================================================
   SÍNTOMAS — .symptoms-grid · .symptom-pill
   ============================================================ */
.symptoms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
.symptom-pill {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border-radius: 8px;
  border-left: 3px solid var(--blue-mid);
}
.symptom-pill .icon {
  width: 18px; height: 18px;
  color: var(--blue-mid);
  fill: none;
  stroke: currentColor;
  margin-top: 2px;
}
.symptom-pill span {
  font-size: 0.93rem;
  color: var(--navy);
  line-height: 1.5;
  font-weight: 400;
}
.symptom-pill strong { font-weight: 600; }

/* ============================================================
   CALLOUT y CTA del cuerpo — .post-callout · .post-cta
   ============================================================ */
.post-callout {
  background: var(--cream);
  border-left: 4px solid var(--blue-mid);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  border-radius: 4px;
  font-weight: 300;
}
.post-callout strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}
.post-callout p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--gray);
}

.post-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: white;
  padding: 2.2rem 1.75rem;
  border-radius: 14px;
  margin: 2.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.post-cta::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(127,173,212,0.22), transparent 70%);
  pointer-events: none;
}
.post-cta > * { position: relative; z-index: 1; }
.post-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.post-cta p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.4rem;
  font-weight: 300;
  font-size: 0.95rem;
}

/* ============================================================
   GALERÍA — .gallery-grid · .gallery-grid--blog · .gallery-item · .gallery-caption
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.gallery-grid--blog {
  grid-template-columns: 1fr;
  margin: 2rem 0;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  background: var(--navy);
  box-shadow: 0 10px 30px rgba(3,29,61,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(3,29,61,0.18);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(to top, rgba(3,29,61,0.65), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-caption {
  position: absolute;
  bottom: 1rem; left: 1.1rem; right: 1.1rem;
  color: white;
  font-size: 0.85rem;
  font-weight: 400;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ============================================================
   FAQ — .faq-item · .faq-answer
   ============================================================ */
.faq-item {
  background: white;
  border: 1px solid rgba(3,29,61,0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 0.65rem;
}
.faq-item[open] {
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(3,29,61,0.06);
}
.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--blue-mid);
  flex-shrink: 0;
  font-weight: 300;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer {
  padding: 0 1.25rem 1.2rem;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
}
.faq-answer strong { color: var(--navy); font-weight: 600; }

/* ============================================================
   BOTONES — .btn-primary · .whatsapp-btn
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--blue-mid);
  color: white;
  padding: 0.9rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(3,29,61,0.25);
}
.btn-primary .icon {
  width: 18px; height: 18px;
  fill: currentColor;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--whatsapp);
  color: white;
  padding: 1rem 1.4rem;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.25s;
  font-size: 0.95rem;
  line-height: 1.3;
  box-shadow: 0 8px 22px rgba(37,211,102,0.3);
}
.whatsapp-btn:hover {
  background: var(--whatsapp-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
}
.whatsapp-btn .icon {
  width: 24px; height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}
.whatsapp-btn strong { font-weight: 600; }
.whatsapp-btn small { opacity: 0.9; font-size: 0.78em; }

/* CTA del post-cta tiene contraste invertido (fondo oscuro, botón claro) */
.post-cta .whatsapp-btn {
  background: var(--whatsapp);
  color: white;
}
.post-cta .whatsapp-btn:hover {
  background: white;
  color: var(--whatsapp-dark);
}
.post-cta .whatsapp-btn:hover .icon { color: var(--whatsapp-dark); }

/* ============================================================
   CTA STRIP — .cta-strip
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--navy) 100%);
  padding: 3.5rem 5%;
  text-align: center;
  color: white;
}
.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 4.5vw, 2.4rem);
  font-weight: 500;
  color: white;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}
.cta-strip h2 em { font-style: italic; color: var(--blue); }
.cta-strip p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.75rem;
  font-weight: 300;
  font-size: 0.95rem;
}
.cta-strip .btn-primary {
  background: white;
  color: var(--navy);
  font-size: 0.95rem;
}
.cta-strip .btn-primary:hover {
  background: var(--cream);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(255,255,255,0.2);
}

/* ============================================================
   FOOTER — .footer-grid · .footer-col · .footer-logo · .footer-bottom
   ============================================================ */
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 5% 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: var(--navy);
  color: rgba(255,255,255,0.55);
}
.footer-col h4 {
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}
.footer-col p {
  color: rgba(255,255,255,0.55);
  font-size: 0.86rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
  line-height: 1.6;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.86rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
  transition: color 0.2s;
  line-height: 1.6;
}
.footer-col a:hover { color: var(--blue); }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: white;
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
}
.footer-logo span { color: var(--blue); font-style: italic; }

.footer-bottom {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 1.75rem 5%;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.78rem;
  text-align: center;
}
.footer-bottom p { margin: 0; }

/* ============================================================
   FLOATING WHATSAPP — .floating-cta · .floating-cta-pill · .floating-whatsapp · .dot
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.floating-cta-pill {
  background: white;
  color: var(--navy);
  padding: 0.6rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 8px 26px rgba(3,29,61,0.18);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(3,29,61,0.06);
  animation: epoc-slideIn 0.5s 1.2s ease both;
  transition: all 0.25s;
}
.floating-cta-pill:hover {
  background: var(--navy);
  color: white;
  transform: translateX(-2px);
}
.floating-cta-pill .dot {
  width: 8px; height: 8px;
  background: var(--whatsapp);
  border-radius: 50%;
  animation: epoc-pulse 2s infinite;
  flex-shrink: 0;
}

.floating-whatsapp {
  background: var(--whatsapp);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  transition: all 0.25s;
  position: relative;
  animation: epoc-bounceIn 0.6s 0.8s ease both;
}
.floating-whatsapp:hover { background: var(--whatsapp-dark); transform: scale(1.08); }
.floating-whatsapp .icon {
  width: 28px; height: 28px;
  color: white;
  fill: white;
}
.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--whatsapp);
  border-radius: 50%;
  opacity: 0.5;
  animation: epoc-ringPulse 2s infinite;
  pointer-events: none;
}

@keyframes epoc-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}
@keyframes epoc-ringPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes epoc-bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes epoc-slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   RESPONSIVE — mobile-first
   ============================================================ */

/* Tablet ≥ 700px */
@media (min-width: 700px) {
  .condition-quick-facts { grid-template-columns: 1fr 1fr; }
  .symptoms-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid--blog { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .condition-hero { padding: 5rem 5% 4rem; }
}

/* Desktop ≥ 950px */
@media (min-width: 950px) {
  body { padding-top: 70px; }

  .nav-logo {
    height: 70px;
    font-size: 1.25rem;
  }
  .nav-links {
    height: 70px;
    display: flex;
    gap: 2rem;
  }
  .nav-cta {
    font-size: 0.82rem !important;
    padding: 0.6rem 1.35rem;
  }
  .hamburger { display: none; }
  .mobile-menu { top: 70px; }

  .condition-hero { padding: 6rem 5% 5rem; }
  .condition-hero-inner {
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
  }

  .condition-body {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 5rem 5%;
  }
  .condition-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; }
  .footer-bottom { text-align: left; flex-wrap: nowrap; }

  .floating-cta { bottom: 24px; right: 24px; gap: 0.65rem; }
  .floating-cta-pill { padding: 0.7rem 1.05rem; font-size: 0.85rem; }
  .floating-whatsapp { width: 62px; height: 62px; }
  .floating-whatsapp .icon { width: 30px; height: 30px; }
}
