body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  iframe {
	position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    border: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    z-index: 1;

  }


.float {
  position: fixed;
        z-index: 999 !important;
        width: 65px;
        height: 65px;
        background:#000;
        border-radius: 50%;
        left: 25px;
        bottom: 50px;
        overflow: hidden;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
}

.float img {
  object-fit: cover;
        width: 100%;
        height: 100%;
  
}

.whatsapp{
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 999999;
    border-radius: 50%;
    bottom: 55px;
    right: 28px;
  
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.whatsapp img{
    max-width: 100%;
}

@media (max-width: 1024px) {
    .float{
   left: 10px;
          bottom: 10px;
    }
    .whatsapp{
        bottom: 15px ;
        right: 10px;
    }
}

@media (max-width: 992px) {
    .float{
             left: 10px;
          bottom: 80px;
    }
    .whatsapp{
        bottom: 85px ;
        right: 10px;
    }
  
}



#installButton {
        display: none; /* Ocultar por defecto */
        position: fixed;
        top: 10px;
        right: 10px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        z-index: 1000;
        animation: pulse 1.5s infinite;
      }

      #installButton:hover {
        background-color: #0056b3;
      }

      /* Animación de pulso */
      @keyframes pulse {
        0% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.1);
        }
        100% {
          transform: scale(1);
        }
      }




  
      