/*# Modal Cookies */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none;
}

.cookie-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.cookie-content h4 {
  margin-bottom: 10px;
}

.cookie-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.cookie-content button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-content button:hover {
  background-color: #0056b3;
}

/*# Modal Social Media Tip */
#socialTip {
  position: fixed;
  top: 80px; /* distância do topo */
  right: 30px; /* distância da borda direita */
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
  animation: fadeIn 0.4s ease-in-out;
  max-width: 320px;
  font-size: 15px;
  line-height: 1.4;
}

#socialTip.show {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
