#gemini-wrapper {
  position: fixed;
  bottom: 30px;
  z-index: 9999;
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
}
#gemini-wrapper.ttg-center {
  left: 50%;
  transform: translateX(-50%);
}
#gemini-wrapper.ttg-left {
  left: 60px; /* antes 30px */
}
#gemini-wrapper.ttg-right {
  right: 60px; /* antes 30px */
}
#gemini-label {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #6e522c;
  font-size: 13px;
  font-weight: 300;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  white-space: nowrap;
  max-width: 90vw;
}
#gemini-label::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 8px 0 8px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
#gemini-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4285F4, #9b72cb, #34a853, #fbbc04);
  background-size: 300% 300%;
  animation: gradientShift 5s ease infinite;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  border: none;
  cursor: pointer;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#gemini-btn:hover {
  transform: scale(1.1);
}
#gemini-msg {
  display: none;
  position: fixed;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #333;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  z-index: 9999;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}