/* Variables y estilos base */
:root {
  --background-color: #fff;
  --text-color: #181818;
  --header-bg: #fff;
  --btn-bg: #ee4b2b;
  --btn-hover-bg: #1375b6;
  --border-color: #ddd;
}

body {
  background: var(--background-color);
  color: var(--text-color);
}

/* Modo oscuro */
body.dark-mode {
  --background-color: #181818;
  --text-color: #e0e0e0;
  --header-bg: #222;
  --btn-bg: #555;
  --btn-hover-bg: #777;
}

header {
  background: var(--header-bg);
}

/* Actualiza botones (ejemplo para .store-status y .producto button) */
.store-status,
.producto button,
#checkout-btn,
.contacto form button[type="submit"] {
  background: var(--btn-bg);
  transition: background 0.3s, box-shadow 0.3s;
}
.store-status:hover,
.producto button:hover,
#checkout-btn:hover,
.contacto form button[type="submit"]:hover {
  background: var(--btn-hover-bg);
}

/* Reset and base styles */
body {
  background: var(--background-color);
  color: var(--text-color);
  margin: 0;
  font-family: 'Noto Sans JP', 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  min-height: 100vh;
}

/* Header layout adjustments */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-top {
  margin-bottom: 12px;
}
.header-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center; /* Centrar elementos */
  flex-wrap: wrap; /* Permitir que los elementos se envuelvan en pantallas pequeñas */
}

/* Logo */
.logo {
  display: block;
  max-width: 220px;
}

/* Navigation buttons with logo-color pattern */
.header-bottom nav {
  display: flex;
  gap: 9px;
  justify-content: center; /* Centrar botones de navegación */
  flex-wrap: wrap; /* Permitir que los botones de navegación se envuelvan */
}
.header-bottom nav .menu-btn {
  border: 2px solid;
  background: #fff;
  padding: 7px 23px;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(.58,1.64,.35,.82), background 0.2s, color 0.2s;
}
.header-bottom nav .menu-btn-lo-nuevo {
  border-color: #E53935;
  color: #E53935;
}
.header-bottom nav .menu-btn-rolls {
  border-color: #FDD835;
  color: #FDD835;
}
.header-bottom nav .menu-btn-combos {
  border-color: #43A047;
  color: #43A047;
}
.header-bottom nav .menu-btn-finger-food {
  border-color: #1E88E5;
  color: #1E88E5;
}
.header-bottom nav .menu-btn-niguiris {
  border-color: #E53935; /* Color de Lo Nuevo */
  color: #E53935;
}
.header-bottom nav .menu-btn-bebidas {
  border-color: #FDD835; /* Color de Rolls */
  color: #FDD835;
}
.header-bottom nav .menu-btn-contacto {
  border-color: #1E88E5; /* Color de Finger Food */
  color: #1E88E5;
}

/* Hover individual: fondo = color de borde, texto blanco */
.header-bottom nav .menu-btn-lo-nuevo:hover {
  background: #E53935;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
}
.header-bottom nav .menu-btn-rolls:hover {
  background: #FDD835;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
}
.header-bottom nav .menu-btn-combos:hover {
  background: #43A047;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
}
.header-bottom nav .menu-btn-finger-food:hover {
  background: #1E88E5;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
}
.header-bottom nav .menu-btn-niguiris:hover {
  background: #E53935; /* Color de Lo Nuevo */
  color: #fff;
  transform: translateY(-3px) scale(1.05);
}
.header-bottom nav .menu-btn-bebidas:hover {
  background: #FDD835; /* Color de Rolls */
  color: #fff;
  transform: translateY(-3px) scale(1.05);
}
.header-bottom nav .menu-btn-contacto:hover {
  background: #1E88E5; /* Color de Finger Food */
  color: #fff;
  transform: translateY(-3px) scale(1.05);
}

/* Cart icon inline */
.header-bottom .cart {
  font-size: 1.4em;
  background: #fff;
  color: #ee4b2b;
  border: 2px solid #ee4b2b;
  padding: 4px 17px;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.header-bottom .cart:hover {
  background: #ee4b2b;
  color: #fff;
}

/* Hamburger menu */
.hamburger {
  display: none;
  background: none;
  border: 2px solid #ee4b2b;
  color: #ee4b2b;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 1.2em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-right: 10px;
}
.hamburger:hover {
  background: #ee4b2b;
  color: #fff;
}

/* Banner */
.banner {
  position: relative;
  width: 100%;
  max-height: 260px;
  overflow: hidden;
}
.banner img {
  width: 100%;
  object-fit: cover;
  min-height: 180px;
  filter: brightness(0.92) saturate(1.15);
}
.banner-text {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.1em;
  font-weight: bold;
  text-shadow: 0 3px 13px #000c;
  background: rgba(238,75,43,0.92);
  padding: 18px 44px;
  border-radius: 30px 4px 40px 4px;
}

/* Main catalog */
main {
  max-width: 1100px;
  margin: 38px auto;
  padding: 0 16px 36px;
}

/* Map container */
.map-container {
  max-width: 1100px;
  margin: 36px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* Footer */
footer {
  background: var(--header-bg);
  color: var(--text-color);
  text-align: center;
  padding: 18px;
  border-top: 2px solid #eee;
  margin-top: 24px;
}

/* Category section */
.categoria {
  margin: 36px 0 50px;
  padding-bottom: 16px;
}
.categoria h2 {
  font-family: 'San Francisco', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.8rem;         /* Tamaño de fuente reducido */
  font-weight: 600;
  text-transform: uppercase;
  color: #111;
  letter-spacing: 0.05em;
  margin: 0 auto 1rem auto;
  padding: 20px;             /* Más padding */
  border-bottom: 1px solid #eee;
  text-align: center;        /* Centrado */
  animation: fadeInUp 0.7s ease-out forwards;
}

/* Products grid */
.productos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px 24px;
  margin-top: 16px;
}

/* Product card */
.producto {
  background: linear-gradient(170deg, #fff 75%, #ee4b2b09 100%);
  border-radius: 23px;
  box-shadow: 0 2px 20px #ee4b2b14;
  border: 1.5px solid #ee4b2b16;
  padding: 0 0 70px 0; /* Añadir padding inferior para el botón */
  text-align: center;
  transition: box-shadow 0.19s cubic-bezier(.58,1.64,.35,.82), transform 0.19s;
  min-height: 380px; /* Aumentar la altura mínima para la imagen */
  position: relative;
  overflow: hidden; /* Para que la imagen redondeada no se salga */
  padding-top: 20px; /* Más margen superior para la tarjeta */
}
.producto:hover {
  box-shadow: 0 8px 40px #ee4b2b33;
  transform: scale(1.03) translateY(-7px);
}

.imagen-producto {
  width: 100%;
  height: 200px; /* Altura fija para la imagen */
  background-size: cover; /* Cubrir el área */
  background-position: center; /* Centrar la imagen */
  border-radius: 23px 23px 0 0; /* Redondear solo las esquinas superiores */
  margin-bottom: 15px;
}

.producto .nombre {
  font-family: 'Montserrat', sans-serif; /* Fuente más moderna */
  font-weight: 700; /* Más destaque */
  font-size: 1.4em; /* Tamaño de fuente aumentado */
  margin-top: 15px; /* Más margen superior */
  margin-bottom: 8px;
  color: #181818;
  letter-spacing: 0.02em;
  padding: 0 18px; /* Añadir padding para el texto */
}

.producto .precio {
  color: #ee4b2b;
  font-size: 1.6em; /* Tamaño de fuente aumentado */
  font-weight: 700; /* Más destaque */
  margin: 14px 0 4px;
  padding: 0 18px; /* Añadir padding para el texto */
}
.producto .descripcion {
  font-size: 0.96em;
  color: #3d4250;
  min-height: 36px;
  margin: 0 0 8px;
  padding: 0 18px; /* Añadir padding para el texto */
}

.producto .add-btn {
  background: #ee4b2b;
  color: #fff;
  border: none;
  border-radius: 50px; /* Botón redondeado */
  padding: 12px 30px; /* Aumentar padding para un botón más grande */
  font-size: 1.1em; /* Aumentar tamaño de fuente */
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.17s, transform 0.14s;
  box-shadow: 0 3px 10px #ee4b2b40; /* Sombra más pronunciada */
  position: absolute; /* Posicionar absolutamente */
  bottom: 15px; /* Distancia desde abajo */
  left: 50%; /* Centrar horizontalmente */
  transform: translateX(-50%);
  z-index: 1; /* Asegurar que esté por encima de otros elementos */
}
.producto .add-btn:hover {
  background: #1375b6;
  color: #fff;
  transform: translateX(-50%) translateY(-3px) scale(1.05); /* Efecto hover */
}

/* Quantity dropdown */
.producto .quantity-select {
  margin-top: 8px;
  padding: 6px 10px;
  font-size: 1em;
  border-radius: 8px;
  border: 1px solid #ee4b2b;
  background: #fff;
  cursor: pointer;
}

/* Cart modal */
.cart-modal {
  display: none;
  position: fixed;
  z-index: 300;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.27);
  align-items: center;
  justify-content: center;
}
.cart-modal.active { display: flex; }
.cart-modal-content {
  background: #fff;
  padding: 34px 26px 22px;
  border-radius: 18px;
  max-width: 410px;
  width: 90vw;
  box-shadow: 0 12px 54px #0007;
  position: relative;
  text-align: left;
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
}
.cart-modal-content h2 { margin-top: 0; }
.close {
  position: absolute;
  top: 7px; right: 16px;
  font-size: 2.1em;
  cursor: pointer;
  color: #ee4b2b;
  font-weight: bold;
}
#cart-items {
  margin: 16px 0 14px;
  min-height: 24px;
}
.cart-total {
  margin-bottom: 17px;
  font-size: 1.12em;
}
#checkout-btn {
  background: #ee4b2b;
  color: #fff;
  border: none;
  border-radius: 17px;
  padding: 10px 27px;
  font-size: 1em;
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.17s, transform 0.14s;
}
#checkout-btn:hover { background: #1375b6; }

/* New button styles */
.button {
    background-color: blue;
    color: black; /* Color original del texto */
    border: none;
    border-radius: 17px;
    padding: 10px 27px;
    font-size: 1em;
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.17s, transform 0.14s;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.24);
}

.button:hover {
    background-color: darkblue; /* O el color que desees */
    color: white; /* El texto pasará a blanco en hover */
    transform: translateY(-2px) scale(1.07);
}

.variation-group {
  margin: 10px 0;
  text-align: center; /* Centrar contenido */
}
.variation-label {
  font-weight: 600;
  margin-bottom: 4px;
}
.variation-group label {
  display: inline-block;
  margin-right: 12px;
  cursor: pointer;
  font-size: 0.95em;
}
.variation-group input {
  margin-right: 4px;
}

/* Bloque de dirección de envío */
#shipping-fields {
  margin-top: 16px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
#shipping-fields h2 {
  margin-top: 0;
}
#shipping-fields label {
  display: block;
  margin-bottom: 12px;
}
/* === Overlay y Modal === */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  padding: 24px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  max-height: 90vh;
  overflow-y: auto;
}

/* Botón de cerrar */
.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Estilo de formulario dentro del modal */
#checkout-modal form label {
  display: block;
  margin-bottom: 12px;
}
#checkout-modal form input,
#checkout-modal form select,
#checkout-modal form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
#checkout-modal form button[type="submit"] {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
}
#checkout-modal form button[type="submit"]:hover {
  background: #0056b3;
}

/* Estilos para el formulario de contacto */
.contacto form {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contacto form label {
  display: block;
  margin-bottom: 12px;
  font-weight: bold;
}

.contacto form input[type="text"],
.contacto form input[type="email"],
.contacto form input[type="tel"],
.contacto form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 30px;
  outline: none;
  font-size: 1rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
  background: #f9f9f9;
  color: var(--text-color);
}

.contacto form input[type="text"]:focus,
.contacto form input[type="email"]:focus,
.contacto form textarea:focus {
  border-color: #ee4b2b;
}

.contacto form button[type="submit"] {
  background: #ee4b2b;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 10px;
}

.contacto form button[type="submit"]:hover {
  background: #1375b6;
  transform: translateY(-2px);
}

/* Estilos para el estado del local */
.store-status-container {
  text-align: center;
  margin: 20px 0;
}

.store-hours-info {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 8px;
}

.store-status {
  background: #28a745; /* Verde para 'abierto' por defecto */
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: default;
  text-transform: uppercase;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(40,167,69,0.7);
  animation: glowBtn 1.5s infinite alternate;
  transition: background 0.3s, box-shadow 0.3s;
}

/* Estado cerrado */
.store-status.closed {
  background: #dc3545; /* Rojo para 'cerrado' */
  box-shadow: 0 0 10px rgba(220,53,69,0.7);
}

/* Animación de glow */
@keyframes glowBtn {
  from {
    box-shadow: 0 0 5px currentColor;
  }
  to {
    box-shadow: 0 0 15px currentColor;
  }
}

.store-hours {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: #555;
}

/* Slider toggle para modo oscuro */
.theme-toggle {
  display: inline-block;
  margin-left: 12px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #66bb6a;
}
input:checked + .slider:before {
  transform: translateX(26px);
}

body.dark-mode {
  background: #181818 !important;
  color: #e0e0e0 !important;
}

/* Unifica el fondo de todas las secciones y tarjetas a #181818 en modo oscuro */
body.dark-mode main,
body.dark-mode .map-container,
body.dark-mode .categoria,
body.dark-mode .cart-modal-content,
body.dark-mode .modal-content,
body.dark-mode .producto,
body.dark-mode .contacto form {
  background: #181818 !important;
  color: #e0e0e0 !important;
  border-color: #333 !important;
}

body.dark-mode .producto img {
  background: #181818 !important;
  box-shadow: 0 2px 10px #0006 !important;
}

body.dark-mode .cart-modal-content,
body.dark-mode .modal-content {
  box-shadow: 0 12px 54px #000c !important;
}

body.dark-mode .contacto form input,
body.dark-mode .contacto form textarea {
  background: #232323 !important;
  color: #e0e0e0 !important;
  border-color: #444 !important;
}

body.dark-mode .contacto form input:focus,
body.dark-mode .contacto form textarea:focus {
  border-color: #ee4b2b !important;
}

body.dark-mode .store-status.open {
  background: #2ecc71 !important;
  box-shadow: 0 0 15px #2ecc71cc !important;
}
body.dark-mode .store-status.closed {
  background: #e74c3c !important;
  box-shadow: 0 0 15px #e74c3ccc !important;
}

/* Quita el recuadro oscuro de la sección de productos en modo oscuro */
body.dark-mode .categoria {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Botones naranjas en modo oscuro */
body.dark-mode .button,
body.dark-mode .producto button,
body.dark-mode #checkout-btn,
body.dark-mode .contacto form button[type="submit"] {
  background: #ee4b2b !important;
  color: #fff !important;
}

body.dark-mode .button:hover,
body.dark-mode .producto button:hover,
body.dark-mode #checkout-btn:hover,
body.dark-mode .contacto form button[type="submit"]:hover {
  background: #1375b6 !important;
  color: #fff !important;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode .categoria h2 {
  color: #fff !important;
}

body.dark-mode .producto {
  background: #232323 !important;
  box-shadow: 0 2px 20px #000a !important;
  border: none !important;
}

body.dark-mode .producto .nombre {
  color: #fff !important;
}

body.dark-mode .producto .descripcion {
  color: #fff !important;
}

.variation-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 1.1em;
  border-radius: 18px;
  border: 2px solid #ee4b2b;
  background: #fff;
  color: #333;
  font-family: 'Montserrat', sans-serif;
  margin-top: 4px;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 14px #ee4b2b14;
}
.variation-select:focus {
  border-color: #1375b6;
  box-shadow: 0 0 0 2px #1375b646;
  outline: none;
}

/* --- Media Queries para Responsividad --- */

/* Para pantallas más pequeñas que 768px (tablets y móviles) */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .header-bottom {
    position: relative;
  }
  .header-bottom nav {
    display: none;
  }
  .header-bottom nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--header-bg);
    z-index: 1000;
    padding: 10px;
    gap: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .header-bottom nav.open .menu-btn {
    width: 100%;
    margin: 2px 0;
    text-align: center;
  }
  .productos {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .banner-text {
    font-size: 1.6em;
    padding: 12px 30px;
  }
  .map-container iframe {
    height: 350px;
  }
}

/* Para pantallas más pequeñas que 992px (ej. tablets y móviles) */
@media (max-width: 992px) {
  .header-bottom {
    flex-direction: column; /* Apilar logo/cart y nav */
    gap: 10px;
  }

  .header-bottom nav {
    flex-wrap: nowrap; /* No permitir que los botones se envuelvan */
    justify-content: flex-start; /* Alinear al inicio para el scroll */
    overflow-x: auto; /* Permitir scroll horizontal */
    width: 100%; /* Ocupar todo el ancho disponible */
    padding: 10px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  .header-bottom nav::-webkit-scrollbar {
    display: none;
  }

  .header-bottom nav .menu-btn {
    flex: 0 0 auto; /* No permitir que los botones crezcan o se encojan */
    margin: 0 5px; /* Espacio entre botones */
    font-size: 0.9rem;
    padding: 8px 15px;
  }

  main {
    padding: 0 10px 20px; /* Reducir padding en main */
  }

  .productos {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Ajustar min-width para 2 columnas */
    gap: 20px;
  }

  .producto .nombre {
    font-size: 1.2em;
  }

  .producto .precio {
    font-size: 1.4em;
  }

  .banner img {
    min-height: 150px;
  }

  .banner-text {
    font-size: 1.8em;
    padding: 15px 30px;
  }

  .map-container {
    margin: 20px auto;
  }

  .map-container iframe {
    height: 300px;
  }

  .cart-modal-content {
    max-width: 90%;
  }

  .contacto form input,
  .contacto form textarea {
    padding: 10px;
  }
}

/* Para pantallas muy pequeñas (ej. móviles) */
@media (max-width: 480px) {
  .header-bottom nav .menu-btn {
    flex: 1 1 100%; /* 1 botón por fila */
    max-width: 100%;
    margin: 5px 0;
    font-size: 0.95rem;
  }

  .productos {
    grid-template-columns: 1fr; /* 1 columna por defecto */
    gap: 25px;
  }

  .producto .nombre {
    font-size: 1.3em;
  }

  .producto .precio {
    font-size: 1.5em;
  }

  .banner-text {
    font-size: 1.5em;
    padding: 10px 20px;
  }

  .logo {
    max-width: 180px;
  }

  .header-bottom .cart {
    font-size: 1.2em;
    padding: 3px 12px;
  }

  .categoria h2 {
    font-size: 1.5rem;
    padding: 15px;
  }

  .producto {
    min-height: auto; /* Permitir que la altura se ajuste al contenido */
    padding-bottom: 60px; /* Ajustar padding para el botón */
  }

  .producto .add-btn {
    padding: 10px 25px;
    font-size: 1em;
  }

  footer {
    padding: 15px;
  }

  .hamburger {
    padding: 6px 10px;
    font-size: 1em;
  }

  .header-bottom nav.open {
    padding: 5px;
  }
}

.whatsapp-icon {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  animation: pulse 1.5s infinite;
  margin-left: 15px;
  vertical-align: middle;
}

.whatsapp-icon img {
  width: 100%;
  height: auto;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}