/* ==========================================================================
   Guía de Diseño — Landing Page Hipertex S.A.S
   Tono visual: Corporativo, clínico, elegante, sobrio y de alta gama
   Paleta: Azul Marino Profundo, Blanco Puro y Azul Claro Translúcido
   ========================================================================== */

/* 1. Importación de Tipografías de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700;800&display=swap');

/* 2. Variables del Sistema de Diseño */
:root {
  /* Paleta oficial calibrada: Azul Marino Profundo + Azul Claro Translúcido */
  --color-navy: #152238;        /* Azul Marino Clínico */
  --color-navy-dark: #0D1726;   /* Azul Marino Ultra Profundo */
  --color-header-bg: #111C30;   /* Fondo oscuro exclusivo para el encabezado */
  --color-text: #1E293B;        /* Slate 800 — Máxima legibilidad ejecutiva */
  --color-bg: #FFFFFF;          /* Blanco Puro */

  /* Azul claro translúcido elegante (reemplazo de verdes) */
  --color-accent-blue: #38BDF8;                /* Sky 400 luminoso */
  --color-accent-blue-deep: #0EA5E9;           /* Sky 500 */
  --color-btn: rgba(14, 165, 233, 0.90);       /* Azul claro translúcido */
  --color-btn-hover: #0284C7;                  /* Sky 600 al pasar cursor */
  --color-btn-glow: rgba(56, 189, 248, 0.40);
  --color-glass-blue: rgba(56, 189, 248, 0.10); /* Fondo suave transparentoso */
  --color-glass-border: rgba(56, 189, 248, 0.28);

  /* Superficies clínicas sobrias */
  --color-surface: #F8FAFC;     /* Slate 50 — Limpio y profesional */
  --color-surface-2: #F1F5F9;   /* Slate 100 sutil */
  --color-border: #E2E8F0;      /* Líneas de demarcación finas */
  --color-border-hover: #CBD5E1;
  --color-muted: #64748B;       /* Slate 500 para textos secundarios */

  /* Tipografías */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Bordes y Geometría */
  --radius-sm: 6px;
  --radius-btn: 8px;
  --radius-card: 10px;
  --radius-lg: 14px;

  /* Sombras ejecutivas tenues */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-card: 0 4px 16px -2px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 14px 28px -4px rgba(15, 23, 42, 0.09), 0 4px 8px -2px rgba(15, 23, 42, 0.04);
  --shadow-cta: 0 6px 22px -2px rgba(14, 165, 233, 0.38);
}

/* 3. Reset y Estilos Globales */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

/* 4. Tipografía Jerárquica */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
}

h1 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin-bottom: 18px;
}

h2 {
  font-size: 26px;
  line-height: 1.28;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
  color: var(--color-navy);
}

h3 {
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 8px;
}

h4 {
  font-size: 16px;
  line-height: 1.35;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
}

/* Etiquetas de sección elegantes con acento azul claro */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #475569;
  margin-bottom: 12px;
  position: relative;
  padding-left: 12px;
}

.section-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 14px;
  background-color: var(--color-accent-blue);
  border-radius: 2px;
}

.section-tag--primary::before {
  background-color: var(--color-accent-blue);
}

.section-tag--warning::before {
  background-color: #0284C7;
}

/* Trust Bar */
.trust-bar {
  background-color: var(--color-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid rgba(56, 189, 248, 0.5);
  box-shadow: 0 4px 14px rgba(13, 23, 38, 0.12);
}

.trust-bar__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 50%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--color-accent-blue);
  flex-shrink: 0;
}

/* Contenedores y Secciones */
.section-wrapper {
  width: 100%;
  background-color: var(--color-bg);
}

.section-wrapper--navy {
  background-color: var(--color-navy);
  background-image: linear-gradient(145deg, rgba(13, 23, 38, 0.90) 0%, rgba(21, 34, 56, 0.85) 60%, rgba(13, 23, 38, 0.92) 100%), url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-wrapper--surface {
  background-color: var(--color-surface);
}

.section-wrapper--surface-2 {
  background-color: var(--color-surface-2);
}

.container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  width: 100%;
}

footer {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 56px 0;
}

/* 6. Encabezado Protagonista — Fondo Azul Oscuro + Logo Blanco */
#header {
  width: 100%;
  background-color: rgba(17, 28, 48, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(56, 189, 248, 0.18);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
}

.header-container {
  display: flex;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo:hover {
  opacity: 0.95;
  transform: scale(1.02);
}

.logo-img {
  height: 58px;
  width: auto;
  max-width: 317px;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

@media (max-width: 480px) {
  .logo-img {
    height: 39px;
  }
  .header-container {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

/* 7. Botones de Acción (CTA) — Azul Claro Translúcido Elegante */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.90) 0%, rgba(2, 132, 199, 0.85) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  padding: 15px 24px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(125, 211, 252, 0.42);
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: all 0.25s ease;
  margin-top: 4px;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: linear-gradient(135deg, rgba(14, 165, 233, 1) 0%, rgba(2, 132, 199, 0.98) 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  border-color: rgba(186, 230, 253, 0.7);
  box-shadow: 0 8px 26px -2px rgba(14, 165, 233, 0.55);
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

/* 8. Sección 1: Hero (fondo Azul Marino) */
#hero {
  padding: 64px 0 56px;
}

#hero h1 {
  color: #FFFFFF;
  margin-bottom: 20px;
  max-width: 820px;
  letter-spacing: -0.8px;
  font-weight: 700;
}

#hero p {
  font-size: 17.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 26px;
  max-width: 680px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  background-color: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #7DD3FC;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-cta-wrapper {
  margin-bottom: 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(56, 189, 248, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 500;
}

.hero-badge-item .badge-icon {
  color: var(--color-accent-blue);
  flex-shrink: 0;
}

/* 9. Sección 2: El Problema */
#problema {
  padding: 56px 0;
}

.seccion-intro {
  max-width: 740px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.problema-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.problema-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-navy);
  border-radius: var(--radius-card);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.problema-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.problema-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.problema-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(56, 189, 248, 0.10);
  color: #0284C7;
  flex-shrink: 0;
}

.problema-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0;
  line-height: 1.35;
}

.problema-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* 10. Sección 3: Catálogo 360° */
#catalogo {
  padding: 56px 0;
}

.catalogo-categoria {
  margin-top: 36px;
  margin-bottom: 24px;
}

.categoria-header {
  margin-bottom: 18px;
  padding: 16px 20px;
  background-color: var(--color-navy);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 3px solid var(--color-accent-blue);
}

.categoria-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.categoria-header h3 {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 0;
  font-weight: 700;
}

.categoria-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background-color: rgba(56, 189, 248, 0.15);
  color: #BAE6FD;
  border: 1px solid rgba(56, 189, 248, 0.3);
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.categoria-header p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13.5px;
  margin-bottom: 0;
}

.productos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 16px;
}

.producto-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.producto-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: #CBD5E1;
}

.producto-img-box {
  width: 100%;
  height: 195px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
}

.producto-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.producto-card:hover img {
  transform: scale(1.04);
}

.producto-info {
  padding: 16px 18px 18px;
  flex-grow: 1;
}

.producto-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #0369A1;
  background-color: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.22);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.producto-card--destacado {
  border-color: #BAE6FD;
  position: relative;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.08);
}

.producto-card--destacado::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0284C7, #38BDF8);
  z-index: 2;
}

.producto-tag--destacado {
  background-color: rgba(2, 132, 199, 0.12);
  color: #0284C7;
  border-color: rgba(2, 132, 199, 0.3);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.producto-info h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.producto-info p {
  font-size: 13.5px;
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.catalogo-destacado {
  background-color: var(--color-navy);
  border-left: 4px solid var(--color-accent-blue);
  color: #FFFFFF;
  border-radius: var(--radius-card);
  padding: 22px 24px;
  margin-top: 40px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.destacado-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--color-accent-blue);
  flex-shrink: 0;
}

.destacado-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.destacado-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  line-height: 1.5;
}

/* 11. Sección 4: Cómo Funciona */
#como-funciona {
  padding: 56px 0;
}

.pasos-list {
  list-style: none;
  margin-left: 0;
  counter-reset: pasos;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.paso-card {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 20px 18px;
  margin-bottom: 0;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.paso-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.paso-numero {
  min-width: 38px;
  height: 38px;
  background-color: var(--color-navy);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.paso-contenido {
  flex: 1;
}

.paso-contenido h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-navy);
}

.paso-contenido p {
  font-size: 14.5px;
  color: var(--color-muted);
  margin-bottom: 0;
  line-height: 1.55;
}

/* 12. Sección 5: Prueba y Respaldo */
#prueba-respaldo {
  padding: 56px 0;
}

.respaldo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.respaldo-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.respaldo-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.respaldo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: rgba(56, 189, 248, 0.10);
  border: 1px solid rgba(56, 189, 248, 0.20);
  color: #0284C7;
  margin-bottom: 4px;
}

.respaldo-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 2px;
}

.respaldo-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

/* 13. Sección 6: Preguntas Frecuentes */
#faq {
  padding: 56px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.faq-item {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent-blue);
  border-radius: var(--radius-card);
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.faq-item__question {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: rgba(56, 189, 248, 0.12);
  color: #0284C7;
  flex-shrink: 0;
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0;
  line-height: 1.4;
}

.faq-item p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  padding-left: 36px;
}

/* 14. Sección 7: Cierre (fondo Azul Marino) */
#cierre {
  padding: 64px 0;
  text-align: left;
}

#cierre h2 {
  color: #FFFFFF;
  max-width: 620px;
  margin-bottom: 16px;
}

#cierre p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* 15. Pie de Página */
#footer {
  padding: 36px 20px 64px;
  font-size: 13.5px;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
}

#footer p {
  font-size: 13.5px;
  margin-bottom: 10px;
}

#footer a {
  color: var(--color-text);
  text-decoration: underline;
}

/* 16. Ajustes Responsive para Pantallas Medianas y Grandes */
@media (min-width: 540px) and (max-width: 767px) {
  .productos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 42px;
    letter-spacing: -1px;
    line-height: 1.16;
  }

  h2 {
    font-size: 30px;
    letter-spacing: -0.5px;
  }

  .trust-bar__item {
    flex: 1 1 25%;
    border-bottom: none;
  }

  .problema-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .productos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .pasos-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .paso-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 0;
  }

  .respaldo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 992px) {
  .pasos-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 17. Botón Flotante de WhatsApp — Azul Claro Translúcido */
.btn-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.92) 0%, rgba(2, 132, 199, 0.90) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: var(--radius-btn);
  box-shadow: 0 6px 22px rgba(14, 165, 233, 0.40);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(125, 211, 252, 0.45);
}

.btn-whatsapp-float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-whatsapp-float:hover,
.btn-whatsapp-float:focus {
  background: linear-gradient(135deg, rgba(14, 165, 233, 1) 0%, rgba(2, 132, 199, 0.98) 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.55);
}

.btn-whatsapp-float svg {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .btn-whatsapp-float {
    left: 20px;
    right: 20px;
    bottom: 16px;
    justify-content: center;
    font-size: 15px;
    padding: 13px 18px;
  }
}
