.policy-main {
    background-color: white;
    padding: 20px 15px;
    margin: 15px;
    border-radius: 8px;
    max-width: 800px;
    margin: 15px auto;
    line-height: 1.7;
}

.policy-main h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.policy-main .last-updated {
    font-size: 12px;
    color: #666;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.policy-main section {
    margin-bottom: 25px;
}

.policy-main h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1A2B3C;
}

.policy-main p {
    font-size: 14px;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #1A2B3C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;

  /* Estilo do círculo */
  background-color: #25d366; /* sua cor principal */
  border-radius: 50%;
  width: 60px;  /* largura fixa do botão */
  height: 60px; /* altura fixa do botão */
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.whatsapp-button img {
  width: 32px;   /* ícone proporcional */
  height: 32px;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  background-color: #4A4A4A; /* muda a cor no hover */
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}
