@charset "utf-8";
/* CSS Document */

/* poll-style.css - Estilo moderno e interativo para enquetes (frontend) */

.spp-option {
  margin-bottom: 12px;
}

.spp-option label {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #f1f1f1;
  border-radius: 8px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.spp-option label:hover {
  background-color: #e7f4ff;
  border-color: #2e9fff;
}



.spp-box {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: all 0.3s ease-in-out;
}

.spp-box h4 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: inherit;
}

.spp-box form label {
  display: block;
  margin-bottom: 12px;
  padding: 12px;
  background: #f1f1f1;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  border: 1px solid #ddd;
}

.spp-box form label:hover {
  background: #e7f4ff;
  border-color: #2e9fff;
}

.spp-box input[type="radio"] {
  margin-right: 10px;
}

.spp-box button {
  background-color: #2e9fff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: none;
}

.spp-box button:hover {
  background-color: #178ae0;
  transform: translateY(-1px);
}

.spp-box ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.spp-box li {
  margin-bottom: 15px;
  background: rgba(0, 0, 0, 0.04);
  padding: 10px 15px;
  border-radius: 6px;
}

.spp-box .progress-wrapper {
  background: #e0e0e0;
  border-radius: 20px;
  overflow: hidden;
  height: 10px;
  margin-top: 6px;
}

.spp-box .progress-bar {
  height: 10px;
  background-color: #2e9fff;
  transition: width 0.4s ease;
}

@media (max-width: 500px) {
  .spp-box {
    padding: 15px;
  }

  .spp-box button {
    width: 100%;
  }
}
