.fraseDeFelicidade {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  padding: 25px;
  border-radius: 15px;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
  animation: suavePulsar 4s infinite;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

@keyframes suavePulsar {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
  }
}

.fraseDeFelicidade::before {
  content: "❤️";
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 24px;
  opacity: 0.6;
  animation: suaveBrilho 3s infinite;
}

.fraseDeFelicidade::after {
  content: "❤️";
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 24px;
  opacity: 0.6;
  animation: suaveBrilho 3s infinite 1.5s;
}

@keyframes suaveBrilho {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
}

/* Efeito de brilho no texto */
.fraseDeFelicidade span {
  position: relative;
  display: inline-block;
}

.fraseDeFelicidade span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  animation: brilhoLinha 2s infinite;
}

@keyframes brilhoLinha {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.subtitleAtendimento{
 
  display: flex;
  justify-content: left;
}
@media screen  and (max-width: 576px) {
  .subtitleAtendimento{
    display: flex;
    font-size: 12px;
    justify-content: left;
   margin-top: 45px;

  }
  
}