.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
  }
  
  .whatsapp-btn a {
    display: block;
    background-color: #25D366; /* Color de fondo del botón */
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Para hacerlo circular */
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Sombra ligera */
    transition: all 0.3s ease; /* Transición suave */
  }
  
  .whatsapp-btn a img {
    width: 50%; /* Ajusta el tamaño del icono */
    margin-top: 15px; /* Ajusta el posicionamiento del icono */
  }
  
  .whatsapp-btn a:hover {
    background-color: #128C7E; /* Cambia el color de fondo al pasar el mouse */
  }

/* Estilos para la barra flotante */
/* Estilos para la barra flotante más ancha */
.floating-bar {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%; /* Ajusta el ancho según preferencia */
  max-width: 1200px; /* Valor máximo para pantallas grandes */
  background: linear-gradient(to right, #F3A6C8, #BBA6F8);
  color: #fff;
  font-size: 16px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  padding: 5px 20px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.floating-bar .promo-text {
  font-weight: bold;
  margin-right: 15px; /* Espacio entre texto y contador */
}

.floating-bar .countdown-timer {
  padding: 10px 20px;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    border-radius: 10px 0 0 10px;
    padding: 10px;
}

.icon {
    display: block;
    color: white;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}

.icon.facebook {
    background-color: #3b5998;
}

.icon.linkedin {
    background-color: #0077b5;
}

.icon.whatsapp {
    background-color: #25D366;
}

.icon:hover {
    opacity: 0.8;
}

