/* Botao SOS grande da home. */
.sos-button {
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  max-width: 510px;
  padding: 0;
  transition: transform 0.2s;
  width: 73%;
}

.sos-button:hover {
  transform: scale(1.1);
}

/* Animacao de destaque para o acionamento do SOS. */
@keyframes blinkAndPulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.blink-pulse {
  animation: blinkAndPulse 2.5s infinite ease-in-out;
}

@media (min-width: 1024px) {
  .sos-button {
    height: 50%;
  }
}

@media (min-width: 1440px) {
  .sos-button {
    height: 60%;
  }
}
