body {
    font-family: 'Arial', sans-serif;
    background: #ff009d;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.quiz-container {
    width: 90%;
    max-width: 400px;
    text-align: center;
    padding: 50px 10px;
    border-radius: 20px;
    background: #ffffff;
}

.quiz-header .logo {
    width: 130px;
    margin-bottom: 15px;
}

.quiz-header h2 {
    font-size: 1.4em;
    margin: 10px 0;
    color: #333;
}

.quiz-header p {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 25px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
     align-items: center;
}

.option-btn {
    /* display: flex; */
    align-items: center;
    gap: 15px;
    padding: 15px 70px;
    font-family:monospace;
    font-size: 1em;
    border: none;
    border-radius: 15px;
    background: #dddddd1f;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    color: #000000;
}

.option-btn:hover {
    transform: translateY(-3px);
    background: #ffe5e5;
}

.option-btn .icon {
    font-size: 1.8em;
}

.start-btn {
    margin-top: 20px;
    padding: 15px 25px;
    font-size: 1.1em;
    border-radius: 25px;
    background: linear-gradient(90deg, #ff0055, #ff0080);
    color: white;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.start-btn:hover {
    transform: scale(1.05);
}

.btn-buy {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 25px;
    font-size: 1.1em;
    border-radius: 25px;
    background: linear-gradient(90deg, #ff0055, #ff0080);
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn-buy:hover {
    transform: scale(1.05);
}

.hidden {
    display: none;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.personalizado{
    color: #0400ff;
    font-size: 17px;
    font-weight: 500;
}



/* segunda parte do quiz */
* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff7f2;
  margin: 0;
  display: flex;
  justify-content: center;
}

.quiz-wrapper {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

/* Header progresso */
.progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
}

/* Barra */
.progress-bar {
  height: 6px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
}

.progress-fill {
  height: 100%;
  width: 14%;
  background: linear-gradient(90deg, #ff4d4d, #ff8a00);
  transition: width 0.4s ease;
}

/* Pergunta */
h1 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 30px;
  color: #111;
}

/* Opções */
.options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.option {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 18px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.option:hover {
  transform: scale(1.03);
  border-color: #ff8a00;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
