body {
  font-family: Arial, sans-serif;
}
.navbar {
  border-radius: 20px;
  margin: 10px;
}
.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: red;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
}
.qr {
  position: fixed;
  bottom: 100px;
  left: 20px;
  width: 150px;
  z-index: 999;
}
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  padding: 15px;
  color: white;
  font-size: 25px;
  z-index: 999;
}
.servicios-container {
  background-color: #212529;
  padding: 40px 20px;
  border-radius: 30px;
  margin: 20px;
}
.servicio-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  height: 100%;
}
.servicio-card i {
  font-size: 30px;
}
footer {
  background-color: #111;
  color: white;
  padding: 10px;
  text-align: center;
}

.carousel-img {
  height: 450px;        /* altura fija (ajústala a tu gusto, ej. 400px, 500px) */
  object-fit: cover;    /* mantiene proporción y recorta si es necesario */
}


.store-float {
  position: fixed;
  bottom: 120px;       /* altura desde abajo */
  /* left: 20px;  */
  right: 40px;        /* lo colocamos a la izquierda */
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #ff0000;
  color: white;     /* color del ícono */
  font-size: 28px;    /* tamaño del ícono */
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: transform 0.2s ease-in-out;
}
.store-float:hover {
  transform: scale(1.1);
  background: #f8f9fa;
}

.img-card {
  width: 120px;     /* tamaño fijo cuadrado */
  height: 120px;    /* mismo alto que ancho */
  object-fit: cover; /* recorta la imagen sin deformarla */
  border-radius: 6px; /* opcional: esquinas suaves */
  display: block;
  margin: 0 auto;   /* centra la imagen */
}

