/* Fundo da página */
body {
  background-color: #F3FBFF;
  font-family: 'Rubik', sans-serif;
}
/* Ajuste fino na fonte */
h1 { line-height: 1.2; }

/* Efeito do tooltip com seta */
.tooltip-custom::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 16px;
  width: 12px;
  height: 12px;
  background-color: #CBD5E1;
  transform: rotate(45deg);
}

/* Efeito de brilho no botão */
.btn-glow {
  position: relative;
}

.btn-glow::after {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 2px solid rgba(100, 200, 100, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.btn-glow:hover::after {
  opacity: 1;
}