/* Fonte global ultramoderna */
body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #0f2027 0%, #2c5364 100%);
  color: #fff;
  margin: 0;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

/* Centralização e limites do conteúdo */
.espera-content {
  background: rgba(30, 38, 48, 0.96);
  border-radius: 2.5rem;
  box-shadow: 0 6px 30px rgba(44,83,100,0.18), 0 1.5px 20px rgba(0,0,0,0.12);
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp .85s cubic-bezier(.42,0,.58,1) 1;
}

/* Animação de entrada */
@keyframes fadeInUp {
  0% { transform: translateY(36px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Destaque para a logo com fundo branco circular */
.logo-bg-rounded {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.98);
  border-radius: 1.5rem;
  padding: 1.3rem 2.5rem;
  box-shadow: 0 4px 32px rgba(44,83,100,0.14), 0 1.5px 12px rgba(0,0,0,0.12);
  border: 1.5px solid rgba(200,200,200,0.13);
  margin: 0 auto 2rem auto;
  min-width: 110px;
  min-height: 80px;
}

.logo-cliente {
  max-width: 230px;
  width: 28vw;
  min-width: 90px;
  height: auto;
  border-radius: 1.2rem;
  background: transparent;
}
@media (max-width: 576px) {
  .logo-bg-rounded {
    padding: 0.7rem 1.2rem;
    border-radius: 0.9rem;
  }
  .logo-cliente {
    max-width: 38vw;
    min-width: 70px;
    border-radius: 0.7rem;
  }
}

/* Animação sutil na logo */
.animated-logo {
  animation: pulseLogo 2.2s infinite alternate cubic-bezier(.22,.68,.61,1.14);
}
@keyframes pulseLogo {
  0%   { transform: scale(1) rotate(-2deg);}
  100% { transform: scale(1.07) rotate(2deg);}
}

/* Contatos */
.contatos p {
  margin-bottom: 0.25rem;
  font-size: 1.08rem;
}
.link-contato {
  color: #00e676;
  text-decoration: none;
  font-weight: 600;
  transition: color .22s;
}
.link-contato:hover,
.link-contato:focus {
  color: #fff;
  text-decoration: underline;
}

/* Botão WhatsApp ultramoderno */
.btn-whatsapp {
  background: linear-gradient(90deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-weight: bold;
  font-size: 1.08rem;
  border: none;
  border-radius: 2em;
  padding: 0.85em 2.1em;
  box-shadow: 0 2px 16px rgba(44,83,100,0.13);
  transition: background .22s, transform .18s, box-shadow .18s;
  outline: none;
  min-width: 200px;
  cursor: pointer;
  text-decoration: none;
}
.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: linear-gradient(90deg, #128c7e 0%, #25d366 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 28px rgba(44,83,100,0.19);
  text-decoration: none;
}

/* Rodapé */
footer {
  font-size: 0.92rem;
  opacity: 0.75;
  letter-spacing: 0.02em;
}

/* Responsividade */
@media (max-width: 576px) {
  .espera-content {
    padding: 2rem 0.7rem 1.7rem 0.7rem;
    border-radius: 1.5rem;
    max-width: 98vw;
  }
  .logo-bg {
    padding: 0.95rem;
  }
  .logo-cliente {
    max-width: 38vw;
    min-width: 70px;
  }
  .btn-whatsapp {
    font-size: 1rem;
    min-width: 140px;
    padding: 0.7em 1.1em;
  }
}
/* Efeito bounce para a logo */
.bounce-logo {
  animation: bounce 0.52s cubic-bezier(.42,0,.58,1) 1;
}
@keyframes bounce {
  0%   { transform: scale(1) rotate(0deg);}
  35%  { transform: scale(1.13) rotate(4deg);}
  55%  { transform: scale(0.95) rotate(-4deg);}
  75%  { transform: scale(1.07) rotate(2deg);}
  100% { transform: scale(1) rotate(0deg);}
}