:root {
  --bg-main: #0C002B;
  --bg-card: #2d176b;
  --accent: #ffb531;
  --accent-hover: #ffc94d;
  --text-dark: #3E2723;
  --text-light: #FFFFFF;
}

body {
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-main);
}

.quiz-card {
  background: rgba(45, 23, 107, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  margin: 0 auto;
  z-index: 5;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  max-width: 700px;
}

.quiz p.fw-bold {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.opcao {
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: 16px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: center;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.opcao:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.opcao img {
  width: 28px;
  margin-right: 15px;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}

.opcao-selecionada {
  background-color: rgba(255, 181, 49, 0.15) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 20px rgba(255, 181, 49, 0.25);
  color: #fff;
  font-weight: 600;
}

.cta-moldura {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 2rem;
}

.honey-bubble {
  position: relative;
  padding: 20px 25px;
  background: linear-gradient(135deg, #FFD54F, #FFB300);
  border-radius: 20px;
  border-bottom-right-radius: 0;
  box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
  max-width: 500px;
}

.honey-bubble p {
  font-size: 20px;
  margin: 0;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.honey-bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 15px solid #FFB300;
  transform: translateY(-50%);
}

.abelha-bubble {
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
  animation: floatBubble 2.5s ease-in-out infinite;
}

.abelha-bubble:hover {
  transform: scale(1.05) rotate(5deg);
}

.link-pular-quiz {
  display: inline-block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.link-pular-quiz:hover {
  color: var(--accent);
  border-color: var(--accent);
  text-decoration: none;
}

@keyframes floatBubble {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .cta-moldura {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .honey-bubble {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 0;
    text-align: center;
    max-width: 90%;
  }

  .honey-bubble::after {
    display: none;
  }

  .quiz-card {
    padding: 25px;
    width: 95%;
  }
}

.mt-4.d-flex.justify-content-between.mb-2{
display: block !important;
}

.quiz-btn {
  background-color: var(--accent);
  color: var(--text-dark);
  font-weight: bold;
  border: none;
  padding: 12px 24px;
  transition: background-color 0.3s, color 0.3s;
  border: var(--accent) 2px solid;
}

.quiz-btn-refazer {
  background-color: transparent;
  color: var(--accent);
  font-weight: bold;
  border: var(--accent) 2px solid;
  padding: 12px 24px;
  transition: background-color 0.3s, color 0.3s;
}