/* Box Successo Grafico */
.acf-suite-success-box {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  max-width: 500px;
  margin: 40px auto;
  border: 1px solid #eef2f7;
  animation: slideUp 0.5s ease-out;
}
.success-icon {
  width: 80px;
  height: 80px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}
.success-icon svg {
  width: 45px;
  fill: white;
}
.acf-suite-success-box h2 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 700;
}
.acf-suite-success-box p {
  color: #7f8c8d;
  margin-bottom: 25px;
}
.success-button {
  display: inline-block;
  padding: 12px 30px;
  background: #2c3e50;
  color: #fff !important;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}
.success-button:hover {
  background: #34495e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
