/* =========================================================
   INTEGRA DENTAL COYOACÁN — CSS moderno (Etapa 7)
   Mobile-first. Sistema visual definido en Etapa 5.
   Contraste de color verificado contra WCAG AA (ver notas).
   ========================================================= */

/* ---------- 1. Variables globales ---------- */
:root {
  /* Color — alineado a la propuesta visual aprobada */
  --color-bg: #FFFFFF;
  --color-bg-soft: #F6F1E7;     /* crema cálido (antes gris neutro) */
  --color-stone: #DDD5C4;       /* greige cálido, sección de la doctora */
  --color-text: #2B2A28;        /* 14.34:1 sobre blanco */
  --color-text-soft: #6B6660;   /* 5.68:1 sobre blanco */
  --color-gold-decor: #A9863C;  /* solo decorativo: íconos, líneas, bordes — NO texto */
  --color-gold-accessible: #8A6D1F; /* 4.90:1 sobre blanco — texto y botones */
  --color-gold-accessible-hover: #6F5718;
  --color-urgencia: #B5573A;    /* 4.78:1 sobre blanco */
  --color-dark: #33322F;        /* 15.90:1 con texto blanco */
  --color-border: #E7E3DC;
  --color-nav: #FFFFFF;

  /* Tipografía */
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Espaciado (múltiplos de 8px) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;

  /* Otros */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-sticky: 0 -2px 12px rgba(0, 0, 0, 0.08);
  --container-max: 1200px;
  --header-height: 72px;
  --sticky-bar-height: 64px;
  --transition: 0.2s ease;
}

/* ---------- 2. Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

/* Scroll offset por header fijo, para que las anclas no queden tapadas */
section[id] { scroll-margin-top: var(--header-height); }

/* ---------- 3. Accesibilidad ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-2);
  background: var(--color-dark);
  color: #fff;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--transition);
}
.skip-link:focus {
  top: var(--space-2);
}

:focus-visible {
  outline: 2px solid var(--color-gold-accessible);
  outline-offset: 2px;
}

/* ---------- 4. Layout ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
@media (min-width: 1024px) {
  .container { padding: 0 var(--space-4); }
}

section {
  padding: var(--space-6) 0;
}
@media (min-width: 1024px) {
  section { padding: var(--space-7) 0; }
}

.section-subtitle {
  color: var(--color-text-soft);
  margin-top: var(--space-1);
  margin-bottom: var(--space-4);
  max-width: 60ch;
}

h2 { font-size: 1.75rem; margin-bottom: var(--space-1); }
@media (min-width: 768px) {
  h2 { font-size: 2.25rem; }
}

/* Fondo alterno entre secciones, para dar ritmo sin líneas duras */
.por-que, .resenas, .agenda { background: var(--color-bg-soft); }

/* ---------- 5. Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  min-height: 44px;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-align: center;
  border: 1.5px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, #C9A45C, #9C7B3A);
  color: #fff;
  box-shadow: 0 10px 24px rgba(156, 123, 58, 0.28);
}
.btn--primary:hover { background: linear-gradient(135deg, #D2AE68, #A9863C); box-shadow: 0 12px 28px rgba(156, 123, 58, 0.4); }

.btn--secondary {
  background: #fff;
  color: var(--color-gold-accessible);
  border: 1.5px solid var(--color-gold-decor);
}
.btn--secondary:hover { background: var(--color-gold-decor); color: #fff; }

.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* Eyebrow: etiqueta pequeña sobre los títulos de sección (patrón de la propuesta aprobada) */
.eyebrow {
  position: relative;
  display: inline-block;
  color: var(--color-gold-accessible);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
  padding-bottom: 0.75rem;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 2px;
  background: var(--color-gold-decor);
}
.section-head--center { text-align: center; max-width: 640px; margin: 0 auto var(--space-4); }
.section-head--center .eyebrow::after { left: 50%; transform: translateX(-50%); }

/* ---------- 6. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-dark);
  border-bottom: 1px solid rgba(169, 134, 60, 0.4);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  height: var(--header-height);
}
@media (min-width: 1024px) {
  .site-header__inner { height: 104px; }
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.25;
  color: #F1EADA;
  white-space: nowrap;
}
.site-header__logo img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
@media (min-width: 1024px) {
  .site-header__logo img { width: 60px; height: 60px; }
}

.site-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.site-nav__toggle-icon,
.site-nav__toggle-icon::before,
.site-nav__toggle-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #F1EADA;
  position: relative;
  transition: transform var(--transition);
}
.site-nav__toggle-icon::before,
.site-nav__toggle-icon::after {
  content: "";
  position: absolute;
}
.site-nav__toggle-icon::before { top: -7px; }
.site-nav__toggle-icon::after { top: 7px; }

.site-nav__menu {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0; right: 0;
  background: var(--color-dark);
  border-bottom: 1px solid rgba(169, 134, 60, 0.4);
  padding: var(--space-2) var(--space-3);
  flex-direction: column;
  gap: var(--space-2);
}
.site-nav__menu.is-open { display: flex; }
.site-nav__menu a { display: block; padding: var(--space-1) 0; font-weight: 600; color: #D9D4C4; }

.site-header__call { display: none; }

@media (min-width: 1024px) {
  .site-nav__toggle { display: none; }
  .site-nav__menu {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    border: none;
    padding: 0;
    gap: 2.4rem;
  }
  .site-nav__menu a { padding: 0; font-weight: 500; color: #D9D4C4; }
  .site-nav__menu a:hover { color: var(--color-gold-decor); }
  .site-header__call {
    display: inline-flex;
    background: transparent;
    color: #F1EADA;
    border: 1.5px solid rgba(241, 234, 218, 0.5);
  }
  .site-header__call:hover { background: rgba(241,234,218,0.12); }
}

/* ---------- 7. Hero ---------- */
.hero { padding-top: var(--space-5); }
.hero__inner {
  display: grid;
  gap: var(--space-4);
}
.hero__content { order: 1; }
.hero__media { order: 2; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4 / 3; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

.hero h1 {
  font-size: 2rem;
  margin-bottom: var(--space-2);
}
.hero__subtitle {
  color: var(--color-text-soft);
  font-size: 1.0625rem;
  margin-bottom: var(--space-3);
  max-width: 52ch;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}
.hero__trustbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-1) var(--space-3);
  font-size: 0.9rem;
  color: var(--color-text-soft);
}
.hero__trustbar li:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid rgba(169,134,60,0.35);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  box-shadow: var(--shadow-card);
  color: var(--color-text);
  font-weight: 600;
}
.hero__trustbar li:first-child::before {
  content: "★★★★★";
  color: var(--color-gold-decor);
  letter-spacing: 1px;
}
.hero__trustbar li:not(:first-child) { display: inline-flex; align-items: center; gap: var(--space-3); }
.hero__trustbar li:not(:first-child)::before {
  content: "✓";
  color: var(--color-gold-accessible);
  font-weight: 700;
  margin-right: 0.35rem;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .hero__content { order: 1; }
  .hero__media { order: 2; }
  .hero h1 { font-size: 3rem; }
}

/* Variante de campaña "urgencias" (Etapa 8 la activa vía JS según ?campana=) */
.hero--urgencia #hero-cta-whatsapp {
  background: var(--color-urgencia);
}
.hero--urgencia #hero-cta-whatsapp:hover {
  background: #963f28;
}

/* ---------- 8. Por qué elegirnos ---------- */
.por-que__grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
.por-que__item h3 { font-size: 1.125rem; margin: var(--space-2) 0 var(--space-1); }
.por-que__item p { color: var(--color-text-soft); }

@media (min-width: 768px) {
  .por-que__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .por-que__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- 9. Servicios (lista editorial ícono + texto, sin recuadros) ---------- */
.servicios__grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  column-gap: var(--space-5);
}
.servicio-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(169, 134, 60, 0.25);
  min-width: 0;
}
.servicio-card__icon {
  flex: none;
  width: 26px; height: 26px;
  margin-top: 2px;
}
.servicio-card__icon svg {
  width: 100%; height: 100%;
  stroke: var(--color-gold-decor);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.servicio-card__body { min-width: 0; }
.servicio-card h3 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-bottom: 0.25rem;
  overflow-wrap: break-word;
}
.servicio-card p { color: var(--color-text-soft); font-size: 0.92rem; margin-bottom: 0.4rem; overflow-wrap: break-word; }
.servicio-card a { color: var(--color-gold-accessible); font-weight: 600; font-size: 0.9rem; }
.servicio-card a:hover { text-decoration: underline; }

.servicio-card--urgencia { border-bottom-color: var(--color-urgencia); }
.servicio-card--urgencia .servicio-card__icon svg { stroke: var(--color-urgencia); }

.badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--color-bg-soft);
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.4rem;
}
.badge--urgencia {
  background: var(--color-urgencia);
  color: #fff;
}

@media (min-width: 768px) {
  .servicios__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 10. Casos clínicos (banner antes/después) ---------- */
.casos__grid { max-width: none; }
.caso-card {
  background: #fff;
  border: 1px solid rgba(169, 134, 60, 0.28);
  border-radius: 26px;
  box-shadow: 0 24px 54px rgba(43, 42, 40, 0.12);
  padding: var(--space-4);
  display: grid;
  gap: var(--space-3);
}
.caso-card__images {
  display: flex;
  gap: var(--space-2);
}
.caso-card__img { position: relative; flex: 1; border-radius: 16px; overflow: hidden; }
.caso-card__img img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.caso-card__img span {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(43,42,40,0.75);
  color: #fff;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.caso-card .badge { margin-bottom: var(--space-1); }
.disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-soft);
  margin-top: var(--space-1);
}

@media (min-width: 768px) {
  .caso-card { grid-template-columns: 1.1fr 1fr; align-items: center; padding: var(--space-4) var(--space-5); }
  .caso-card__images { gap: var(--space-3); }
}

/* ---------- 11. Sobre la doctora ---------- */
.doctora { background: var(--color-stone); }
.doctora__inner {
  display: grid;
  gap: var(--space-4);
}
.doctora__inner img { border-radius: var(--radius-md); border: 3px solid var(--color-gold-decor); }
.doctora__content p { color: var(--color-text-soft); margin: var(--space-2) 0 var(--space-3); }

@media (min-width: 1024px) {
  .doctora__inner {
    grid-template-columns: 0.65fr 1.35fr;
    align-items: center;
    gap: var(--space-6);
  }
}

/* ---------- 12. Reseñas ---------- */
.resenas__grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-3);
}
.resena-card {
  background: #fff;
  border: 1px solid rgba(169, 134, 60, 0.25);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: var(--shadow-card);
}
.resena-card::before {
  content: "★★★★★";
  display: block;
  color: var(--color-gold-decor);
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: var(--space-1);
}
.resena-card p { margin-bottom: var(--space-2); }
.resena-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text-soft);
}
.link-arrow {
  color: var(--color-gold-accessible);
  font-weight: 600;
}
.link-arrow:hover { text-decoration: underline; }

@media (min-width: 768px) {
  .resenas__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- 13. Proceso de atención ---------- */
.proceso__steps {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
.proceso__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A45C, #9C7B3A);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: var(--space-2);
  box-shadow: 0 8px 18px rgba(156, 123, 58, 0.3);
}
.proceso__steps h3 { font-size: 1.0625rem; margin-bottom: var(--space-1); }
.proceso__steps p { color: var(--color-text-soft); }

@media (min-width: 1024px) {
  .proceso__steps {
    grid-template-columns: repeat(4, 1fr);
    position: relative;
  }
  .proceso__steps li { position: relative; }
  .proceso__steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18px;
    left: calc(50% + 40px);
    width: calc(100% - 40px);
    height: 1px;
    background: var(--color-border);
  }
}

/* ---------- 14. FAQ ---------- */
.faq__list { border-top: 1px solid var(--color-border); }
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-2) 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding-right: var(--space-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--color-gold-decor);
  font-size: 1.5rem;
  font-weight: 400;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--color-text-soft); margin-top: var(--space-2); }

/* ---------- 15. Ubicación ---------- */
.ubicacion__inner {
  display: grid;
  gap: var(--space-4);
  background: #fff;
  border: 1px solid rgba(169, 134, 60, 0.28);
  border-radius: 26px;
  padding: var(--space-4);
  box-shadow: 0 24px 54px rgba(43, 42, 40, 0.1);
}
.ubicacion__info p {
  margin-bottom: var(--space-2);
  padding-left: var(--space-3);
  border-left: 2px solid var(--color-gold-decor);
}
.ubicacion__info p strong { display: block; color: var(--color-text); margin-bottom: 0.15rem; }
.ubicacion__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.ubicacion__mapa {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(169, 134, 60, 0.25);
}
.ubicacion__mapa iframe { width: 100%; height: 100%; border: 0; }

@media (min-width: 1024px) {
  .ubicacion__inner { grid-template-columns: 1fr 1fr; align-items: center; padding: var(--space-5); }
}

/* ---------- 16. Formulario ---------- */
.form-agenda {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.form-field label, .form-field legend {
  font-weight: 600;
  font-size: 0.9375rem;
}
.form-field input, .form-field select {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  background: #fff;
}
.form-field input:focus, .form-field select:focus {
  border-color: var(--color-gold-accessible);
  outline: 2px solid rgba(169, 134, 60, 0.35);
  outline-offset: 1px;
}
.form-field--radio { border: 0; padding: 0; }
.form-field--radio label {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 400;
  margin-right: var(--space-3);
}
.form-microcopy {
  font-size: 0.9375rem;
  color: var(--color-text-soft);
}
.form-microcopy a { color: var(--color-gold-accessible); font-weight: 600; }
.form-confirmacion {
  background: var(--color-bg-soft);
  border-radius: var(--radius-sm);
  padding: var(--space-2);
  font-weight: 600;
}

/* ---------- 17. CTA final ---------- */
.cta-final {
  background: var(--color-dark);
  color: #fff;
  text-align: center;
}
.cta-final h2 { color: #fff; }
.cta-final p { color: rgba(255,255,255,0.75); margin: var(--space-2) 0 var(--space-4); }
.cta-final__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
}
.cta-final .btn--secondary { color: #fff; border-color: rgba(255,255,255,0.6); }
.cta-final .btn--secondary:hover { background: #fff; color: var(--color-dark); }

/* ---------- 18. Footer ---------- */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.75);
  padding: var(--space-4) 0 calc(var(--space-4) + var(--sticky-bar-height));
  font-size: 0.875rem;
}
.site-footer__brand { color: #fff; font-weight: 600; margin-bottom: var(--space-1); font-family: var(--font-heading); }
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer p { margin-bottom: var(--space-1); }
.site-footer__social {
  display: flex;
  gap: 14px;
  margin: var(--space-3) 0;
}
.site-footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold-decor);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.site-footer__social a:hover { background: var(--color-gold-decor); text-decoration: none; }
.site-footer__social svg { width: 18px; height: 18px; fill: var(--color-gold-decor); }
.site-footer__social a:hover svg { fill: #fff; }

@media (min-width: 1024px) {
  .site-footer { padding-bottom: var(--space-4); }
}

/* ---------- 19. Barra sticky móvil ---------- */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: var(--sticky-bar-height);
  background: #fff;
  box-shadow: var(--shadow-sticky);
}
.sticky-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.sticky-bar__btn--whatsapp { background: var(--color-gold-accessible); color: #fff; }
.sticky-bar__btn--call { background: #fff; color: var(--color-text); border-top: 1px solid var(--color-border); }

@media (min-width: 1024px) {
  .sticky-bar { display: none; }
}

/* ---------- 20. Botón WhatsApp flotante (escritorio) ---------- */
/* En móvil (<1024px) la barra sticky ya cubre WhatsApp/Llamar; este botón
   solo se muestra en escritorio, donde no había ningún WhatsApp flotante. */
.whatsapp-float {
  display: none;
  position: fixed;
  right: var(--space-3);
  bottom: var(--space-3);
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
  .whatsapp-float { display: flex; }
}
