/* ========================================================= */
/* css/erro.css - Estilos específicos da tela de erro        */
/* ========================================================= */

.error-icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--vermelho);
  animation: shakeError 0.5s ease-in-out;
}

.error-svg {
  width: 40px;
  height: 40px;
}

@keyframes shakeError {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-5px);
  }
  40%,
  80% {
    transform: translateX(5px);
  }
}

/* ===== CAIXA DE CONTATO PADRÃO ===== */
.box-contato {
  background: rgba(52, 101, 164, 0.05);
  border: 1px solid var(--linha);
  border-radius: 16px;
  padding: 20px;
  margin: 25px 0;
  text-align: left;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== BOTÕES DE AÇÃO ===== */
.botoes-acao {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  border-radius: 15px;
  border: none;
  background-color: #25d366;
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

.btn-secundario {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  border-radius: 15px;
  background-color: transparent;
  color: var(--text-light);
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-secundario:hover {
  background-color: rgba(52, 101, 164, 0.05);
}
