 :root {
   --bege: #FAF2E9;
   --azulEscuro: #0A2A59;
   --azulClaro: #3E5493;
   --branco: #fff;
   --fonteBolha: 'bolha';
   --shadow: 0 10px 20px rgba(10, 42, 89, .12);
   --grafico-tamanho: 250px;
   --fatia-espessura: 50px;
   --espacamento-fatia: 5px;
 }

 /* ==================== GERAL ==================== */
 * {
   box-sizing: border-box;
 }

 @font-face {
   font-family: 'bolha';
   src: url('/public/fontes/bobbleboddy.ttf') format('truetype');
 }

 @font-face {
   font-family: 'brasika';
   src: url('/public/fontes/brasika-display-trial.otf') format('opentype');
 }

 body,
 html {
   margin: 0;
   padding: 0;
   font-family: 'bolha', system-ui, Arial, sans-serif;
   background-color: var(--bege);
   text-align: center;
   min-height: 100svh;
   display: grid;
   place-items: center;
   color: var(--azulEscuro);
   display: block;
   text-align: center;
   max-width: 100%;
   overflow-x: hidden;
 }

 h1 {
   font-family: 'bolha', system-ui, Arial, sans-serif;
   margin-bottom: 10px;
   margin-top: 10px;
 }

 h3 {
   margin-top: 20px;
 }

 a {
   color: var(--azulClaro);
   text-decoration: none;
 }


 .btnPadrao {
   background-color: var(--azulClaro);
   color: #fdf5eb;
   border: none;
   font-family: 'bolha', system-ui, Arial, sans-serif;
   border-radius: 40px;
   padding: 0.8em 3em;
   flex-shrink: 0;
   font-size: 1.2rem;
   cursor: pointer;
   text-decoration: none;
   box-shadow: 0 4px 10px var(--azulEscuro);
   transition: 0.3s;
   margin-top: 20px;
 }

 .btnPadrao:hover {
   background-color: var(--azulClaro);
   box-shadow: 0 15px 25px rgba(10, 42, 89, .2);
   transform: translateY(-2px);
 }

 .btnAlterar {
   background-color: var(--azulClaro);
   color: #fdf5eb;
   border: none;
   font-family: 'bolha', system-ui, Arial, sans-serif;
   border-radius: 40px;
   padding: 0.8em 3em;
   flex-shrink: 0;
   font-size: 1.2rem;
   cursor: pointer;
   text-decoration: none;
   box-shadow: 0 4px 10px var(--azulEscuro);
   transition: 0.3s;
   margin-top: 20px;
 }

 .titulo {
   font-family: 'brasika', sans-serif;
   font-size: 370%;
   margin-top: 30px;
   margin-bottom: -30px;
   line-height: 1;
 }

 .tituloMenu {
   font-family: 'brasika', sans-serif;
   font-size: 300%;
   margin-top: 30px;
   margin-bottom: -60px;
   line-height: 1;
 }

 /* ==================== TELA DE CORRETO ==================== */
 .pagina-container {
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   align-items: center;
   width: 100%;
   min-height: 100svh;
   background-color: #72727254;
 }

 .cartao {
   background-color: var(--azulClaro);
   color: var(--bege);
   padding: 60px 30px 40px;
   border-radius: 20px;
   box-shadow: 0 10px 30px rgba(6, 31, 68, 0.432);
   text-align: center;
   display: flex;
   flex-direction: column;
   align-items: center;
   width: 100%;
 }

 .iconeResultado {
   font-size: 5.5em;
   margin-top: 10px;
   line-height: 1;
 }

 .iconeResultado .certo {
   color: #005f10;
 }

 .iconeResultado .errado {
   color: #910101;
 }

 .area-acao {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 20px;
   margin-top: 20px;
 }

 .area-acao .btnPadrao {
   margin: 0;
 }

 .imagemCelebracao {
   width: clamp(220px, 45vw, 250px);
   height: auto;
   z-index: 10;
   margin-left: 140px;
 }

 .cartao .tituloMenu {
   color: var(--bege);
   margin: -15px 0 -5px;
   font-size: 280%;
   line-height: 1;
 }

 .cartao .btnPadrao {
   margin-top: 25px;
   font-size: 20px;

 }

 /* ==================== TELA PRINCIPAL ==================== */
 #telaPrincipal {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: flex-start;
   padding: 20px;
   min-height: 100vh;
   box-sizing: border-box;
   position: relative;
 }

 .livoLogo {
   max-width: 60%;
   height: auto;
   margin: 15px 0 -5px;
 }

 .persona {
   max-width: 75%;
   height: auto;
   margin: 0;
 }

 .telaBranca {
   margin-top: 10px;
 }

 .telaBranca.btnPadrao {
   width: 51px;
 }

 /* ==================== (MENU) ==================== */
 .Menu {
   width: 100%;
   height: 60px;
   background-color: var(--azulEscuro);

   display: flex;
   align-items: center;
   gap: 10px;

   padding: 0 15px;

   position: sticky;
   top: 0;
   z-index: 100;
 }

 .logoUsuario {
   width: 40px;
   height: 40px;
   object-fit: cover;
 }

 .texto_barra {
   font-size: 20px;
   font-weight: bold;
   color: #fff;
 }


 /* ==================== PÁGINA HISTÓRIAS (MENU) ==================== */
 .fundoAzul {
   margin: 0;
   background-color: var(--azulClaro);
   color: var(--azulEscuro);
   line-height: 1.6;
   padding: 0;
   font-family: var(--fonteBolha);
 }

 .conteinerPrincipal {
   width: 100%;
   max-width: 900px;
   margin: 0 auto;
   padding: 20px;
   box-sizing: border-box;
 }


 .cabecalhoPrincipal h1 {
   margin-top: 30px;
   font-size: 42px;
   color: var(--bege);
 }

 .cabecalhoPrincipal p {
   margin-top: -20px;
   margin-bottom: 30px;
   color: var(--bege);
   font-size: 25px;
 }

 .tituloSecao {
   background: var(--bege);
   padding: 16px;
   border-radius: 12px;
   margin-bottom: 16px;
   max-width: 100%;
   width: 90%;
   text-align: center;
 }

 .tituloSecao h2 {
   margin-bottom: -15px;
   font-size: 40px;
   color: var(--azulEscuro);
 }

 .tituloSecao p {
   margin: 25px 0 0;
   font-size: 25px;
   color: var(--azulEscuro);
 }

 /* ==================== SEU PROGRESSO ==================== */
 .cartaoProgresso {
   background: var(--bege);
   padding: 20px;
   border-radius: 16px;
   box-shadow: var(--shadow);
   text-align: center;
   color: var(--azulEscuro);
   position: relative;
   z-index: 2;
 }

 .cartaoProgresso h3 {
   margin: 0;
   font-size: 40px;
   color: var(--azulEscuro);
 }

 .linhaProgresso {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 10px;
   margin-top: 20px;
 }

 .itemProgresso {
   flex: 1;
   display: flex;
   flex-direction: column;
   align-items: center;
 }

 .itemProgresso h3 {
   margin: 0;
   font-size: 32px;
   font-weight: bold;
   color: inherit;
   background: none;
   position: relative;
   z-index: 3;
 }

 .itemProgresso p {
   margin-top: 6px;
   font-size: 18px;
   color: var(--azulEscuro);
 }

 .cartaoProgresso,
 .itemProgresso,
 .itemProgresso * {
   backdrop-filter: none !important;
 }

 /* ==================== LISTA DE HISTÓRIAS ==================== */
 .listaCartoes {
   display: flex;
   flex-direction: column;
   gap: 20px;
   width: 100%;
 }



 .cartaoHistoria {
   background: var(--bege);
   border-radius: 16px;
   padding: 28px 20px 24px;
   position: relative;
   box-shadow: var(--shadow);
   overflow: hidden;
   border: 6px solid transparent;
   width: 330px;
   max-width: 100%;
 }

 .cartaoHistoria.certo {
   border-color: var(--azulEscuro);
 }

 .cartaoHistoria.errado {
   position: relative;
   background: var(--bege);
   border-radius: 16px;
   padding: 28px 20px 24px;
   box-shadow: var(--shadow);
   overflow: hidden;
   border: 6px solid transparent;
 }

 .cartaoHistoria.errado::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.25);
   backdrop-filter: blur(4px);
   border-radius: 16px;
   z-index: 1;
 }

 .cartaoHistoria.errado * {
   position: relative;
   z-index: 2;
   opacity: 0.7;
 }

 .avatarIcone {
   width: 104px;
   height: 104px;
   border-radius: 999px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 12px;
   background: #ccc5dd;
   box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
 }

 .chapeu {
   width: 90%;
 }

 .avatarIcone img {
   width: 48px;
   height: 48px;
 }

 .tituloHistoria {
   font-family: 'brasika', sans-serif;
   text-align: center;
   margin: 4px 0 0;
   font-size: 40px;
   color: var(--azulEscuro);
   font-weight: 700;
   line-height: 40px;
 }

 .nivelHistoria {
   display: block;
   text-align: center;
   color: var(--azulEscuro);
   font-size: 25px;
 }

 .pillulaStatus {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   margin: 16px auto 0;
   padding: 19px 30px;
   border-radius: 28px;
   background: var(--bege);
   min-width: 220px;
   justify-content: center;
   color: #ffffff;
   font-size: 25px;
 }

 .pillulaStatus.disponivel {
   background: linear-gradient(180deg, #3E5493, #0A2A59);
   color: white;
 }

 .pillulaStatus.disponivel a {
   color: white;
 }

 .pillulaStatus.bloqueado {
   background: linear-gradient(180deg, #919191, #c0c0c0);
 }

 /* ==================== HISTÓRIA DETALHE ==================== */
 .cabecalhoHistoria {
   width: 90%;
   max-width: 720px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 12px 0;

 }

 .cabecalhoHistoria h1 {
   margin: 0;
   font-size: 36px;
   color: var(--bege);
 }

 .containerHistoria {
   background: var(--bege);
   border-radius: 16px;
   box-shadow: var(--shadow);
   padding: 28px;
   width: 90%;
   margin-top: 20px;
   text-align: justify;
 }

 .capaHistoria {
   width: 100%;
   height: 220px;
   border-radius: 16px;
   background: linear-gradient(135deg, #b1cef5ff, #03517eff);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 56px;
   color: #fff;
   margin-bottom: 24px;
 }

 h2 {
   font-size: 35px;
   margin-top: 0;
   margin-bottom: -5px;
   color: var(--azulClaro);
   text-align: center;
 }

 p {
   font-size: 25px;
   margin: 14px 0;
 }

 .dialogo {
   background: #e7f8ec;
   border-left: 4px solid var(--azulEscuro);
   padding: 10px 14px;
   border-radius: 6px;
   margin: 16px 0;
   font-style: italic;
   font-size: 25px;
   color: var(--azulEscuro);
 }

 /* ==================== TELA SOBRE ==================== */
 .conteudoSobre {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 30px;
   width: 90%;
   max-width: 720px;
   margin: 20px auto;
 }

 .textoExplicativo {
   flex: 1;
   text-align: center;
   font-size: 1.5rem;
   max-width: 60%;
   margin-top: 150px;
   font-family: 'bolha';
 }

 .flor {
   max-width: 35%;
   height: auto;
   flex-shrink: 0;
   margin-top: 150px;
 }

 /* ==================== CADASTRAR E LOGAR ==================== */
 .formCadastrar {
   width: 300px;
   padding: clamp(5%, 4vw, 32px);
   border-radius: 16px;
   background: var(--branco);
   margin-top: 60px;
   margin-bottom: 30px;
   box-shadow: 0 4px 10px #000000;
 }

 .historiaContainer {
   width: 100%;
   max-width: 900px;
   margin: 0 auto;
   padding: 20px;
   display: flex;
   flex-direction: column;
   align-items: center;
 }


 .formEntrar {
   width: 300px;
   padding: clamp(5%, 4vw, 32px);
   border-radius: 16px;
   background: var(--branco);
   margin-top: -25px;
   box-shadow: 0 10px 20px #000000;
 }


 .containerInput label {
   text-align: left;
 }

 .containerInput input {
   border: none;
   outline: none;
   border-radius: 100px;
   padding: 1em;
   background-color: #e1e2e3;
   box-shadow: var(--azulEscuro);
   transition: 300ms ease-in-out;
   width: 95%;
   margin-top: -10px;
 }

 .containerInput input:focus {
   background-color: #ffffff;
   transform: scale(1.05);
   box-shadow: 8px 8px 20px #969696, -13px -13px 100px #ffffff;
 }

 /* ==================== FORMULÁRIO DE CADASTRO ==================== */
 .cadastrar {
   background: linear-gradient(145deg, #ffffffb8, #f3ebdd);
   backdrop-filter: blur(8px);
   border-radius: 22px;
   padding: 45px 25px;
   box-shadow: 0 10px 30px rgba(10, 42, 89, 0.15);
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 25px;
   width: 100%;
   max-width: 380px;
   animation: surgir 0.6s ease-out;
   transition: all 0.3s ease-in-out;
   margin-top: 20px;
   box-sizing: border-box;
 }

 /* ======== INPUTS / SELECT / TEXTAREA ======== */
 .cadastrar input,
 .cadastrar select,
 .cadastrar textarea {
   width: 100%;
   padding: 14px 20px;
   border: none;
   border-radius: 14px;
   font-size: 1rem;
   font-family: 'bolha', system-ui, Arial, sans-serif;
   color: var(--azulEscuro);
   background: #ffffff;
   box-shadow: inset 0 0 0 2px var(--azulEscuro);
   transition: all 0.3s ease;
   outline: none;
   max-width: 100%;
   box-sizing: border-box;
 }

 .cadastrar textarea {
   height: 130px;
   resize: vertical;
 }

 .btnsCadastro {
   margin-top: 10px;
   width: 80%;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }


 .containerAdm {
   flex-direction: column;
   width: 80%;
   align-items: center;
 }

 .containerAdm h2 {
   font-size: 50px;
   text-align: center;
   margin-top: 35px;
   margin-bottom: 25px;
 }

 :root {
   --gap: 22px;
   --btnRadius: 28px;
   --pillPaddingX: 2.2rem;
   --pillPaddingY: 0.9rem;
 }

 /*=============TELAS DAS PERGUNTAS==============*/
 .appHeader {
   width: 100%;
   max-width: 720px;
   margin: 0 auto;
   padding: 18px 20px;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   gap: 18px;
   position: relative;
   box-sizing: border-box;
 }

 .appHeader .avatar {
   width: 68px;
   height: 68px;
   border-radius: 999px;
   background: linear-gradient(135deg, #ffffff55, #ffffff22);
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 6px 18px rgba(10, 42, 89, .12);
   flex: 0 0 68px;
 }

 .appHeader .tituloApp {
   font-size: clamp(22px, 4.5vw, 44px);
   color: var(--bege);
   margin-left: 6px;
   text-align: left;
 }



 .telaConteudo {
   width: 100%;
   max-width: 720px;
   margin: 20px auto;
   padding: 12px 18px 40px;
   box-sizing: border-box;
   position: relative;
 }

 .tituloGrande {
   font-size: clamp(36px, 9vw, 96px);
   color: var(--azulEscuro);
   text-align: left;
   line-height: 0.95;
   margin: 12px 0 28px;
 }

 .imagemPrincipal {
   width: clamp(150px, 45vw, 420px);
   height: auto;
   display: block;
   margin: 12px auto;
   object-fit: contain;
 }

 .linhasResposta {
   display: flex;
   flex-direction: column;
   gap: 22px;
   align-items: flex-start;
   margin: 26px 0;
 }

 .linhaCurta {
   width: clamp(140px, 45vw, 420px);
   height: 10px;
   background: linear-gradient(90deg, var(--azulEscuro) 0%, var(--azulEscuro) 100%);
   border-radius: 4px;
   box-shadow: none;
 }

 .opcoesGrid {
   display: flex;
   flex-direction: column;
   gap: 18px;
   align-items: center;
   margin-top: 18px;
 }

 .opcao {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-width: clamp(180px, 70%, 520px);
   padding: var(--pillPaddingY) var(--pillPaddingX);
   border-radius: var(--btnRadius);
   font-size: clamp(20px, 6vw, 44px);
   text-decoration: none;
   color: #fdf5eb;
   background: var(--azulEscuro);
   box-shadow: 0 6px 18px rgba(10, 42, 89, 0.18);
   border: none;
   font-family: 'bolha', system-ui, Arial, sans-serif;
   cursor: pointer;
 }

 .opcao.pequena {
   min-width: clamp(80px, 18vw, 140px);
   padding: 10px 18px;
   border-radius: 22px;
 }

 .opcoesLetras {
   display: grid;
   grid-template-columns: repeat(3, minmax(72px, 1fr));
   gap: 18px;
   justify-items: center;
   align-items: center;
   width: 100%;
   max-width: 520px;
   margin: 12px auto;
 }

 .opcaoQuadrada {
   width: 100%;
   aspect-ratio: 1/1;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 18px;
   font-size: clamp(28px, 6vw, 48px);
   background: var(--azulEscuro);
   color: #fdf5eb;
   box-shadow: 0 6px 18px rgba(10, 42, 89, 0.18);
   padding: 0.6rem;
   cursor: pointer;
 }

 .tracejado {
   display: flex;
   gap: 18px;
   justify-content: center;
   margin: 18px 0 30px;
 }

 .tracejado .ponto {
   width: clamp(48px, 18vw, 88px);
   height: 10px;
   background: var(--azulEscuro);
   border-radius: 6px;
 }


 @media (min-width: 900px) {
   .opcoesLetras {
     grid-template-columns: repeat(4, minmax(72px, 1fr));
   }
 }

 /*=============RESULTADO==============*/
 .subtitulo {
   margin-top: 50px;
   font-size: 20px;
 }

 .graficoCircularContainer {
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 20px;
 }

 .graficoCircularShadowWrapper {
   padding: 0;
   border-radius: 50%;

   display: flex;
   justify-content: center;
   align-items: center;
 }

 .graficoCircularPrincipal {
   position: relative;
   width: var(--grafico-tamanho);
   height: var(--grafico-tamanho);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
 }

 .graficoCircularFundo {
   position: absolute;
   inset: 0;
   border-radius: 50%;
   background: var(--azulEscuro);
   z-index: 0;
 }

 .graficoCircularProgresso {
   position: absolute;
   inset: 0;
   border-radius: 50%;
   z-index: 1;
   box-shadow: 0 10px 20px var(--azulClaro);
   background: conic-gradient(var(--azulEscuro) 0 var(--percent), transparent var(--percent) 100%);
 }

 .graficoCircularCentro {
   position: absolute;
   width: calc(var(--grafico-tamanho) - var(--fatia-espessura)*2);
   height: calc(var(--grafico-tamanho) - var(--fatia-espessura)*2);
   background: var(--bege);
   border-radius: 50%;
   z-index: 2;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   font-size: clamp(17px, 3vw, 26px);
   box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.12);
   font-family: 'brasika', sans-serif;
   font-size: 50Px;
 }

 .graficoCircularCentro::after {
   content: attr(data-percent) "%";
 }

 .perfilContainer {
   width: 100%;
   max-width: 420px;
   margin: 0 auto;
   padding: 20px;
 }

 .perfil {
   display: flex;
   justify-content: center;
   margin-top: 20px;
 }

 .fotoUsuario {
   width: 120px;
   height: 120px;

 }

 .dados {
   margin-top: 25px;
 }

 .campo {
   margin-bottom: 28px;
   width: 80%;

 }

 .campo label {
   font-size: 25px;
   font-weight: 600;
   color: #0A2A59;
   font-family: 'bolha', system-ui, Arial, sans-serif;
 }

 .campo input {
   width: 100%;
   padding: 12px;
   border-radius: 10px;
   border: 2px solid #cccccc;
   margin-top: 5px;
   background-color: var(--branco);
   font-size: 16px;
   box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.12);
 }

 .acoes {
   margin-top: 30px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 /* ==================== EXPLICAÇÃO ==================== */
 .carrossel {
   position: relative;
   width: 100%;
   max-width: 380px;
   height: 420px;
   margin: 20px auto;
   overflow: hidden;
   border-radius: 12px;
 }

 .imagensEnvolvedor {
   display: flex;
   height: 100%;
   transition: transform 0.5s ease-in-out;
 }

 .imagem {
   flex-shrink: 0;
   width: 380px;
   height: 100%;
   object-fit: contain;
   transition: none;
 }

 .botaoNavegacao {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);

   background-color: var(--azulEscuro);
   color: white;
   border: 2px solid rgba(255, 255, 255, 0.5);
   padding: 12px;
   cursor: pointer;
   z-index: 10;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
   transition: all 0.25s ease-in-out;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .botaoNavegacao:hover {
   background-color: var(--azulEscuro);
   transform: translateY(-50%) scale(1.05);
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
   border: 2px solid white;
 }

 #botaoAnterior {
   left: 10px;
   border-radius: 9999px;
 }

 #botaoProximo {
   right: 10px;
   border-radius: 9999px;
 }

 .flores {
   width: 50%;
 }

 /* ========== LISTA QUESTAO ============ */
 .paginaQuestionarios {
   min-height: 100vh;
   background: var(--bege);
   padding: 40px 20px;
   display: flex;
   flex-direction: column;
   align-items: center;
   font-family: var(--fonteBolha);
 }

 .paginaQuestionarios h1 {
   width: 100%;
   max-width: 480px;
   text-align: center;
   color: var(--azulEscuro);
   font-size: 28px;
   margin-bottom: 30px;
 }

 .card {
   width: 100%;
   max-width: 480px;
   background: var(--branco);
   padding: 20px 24px;
   border-radius: 18px;
   box-shadow: var(--shadow);
   margin-bottom: 18px;
   transition: 0.2s;
   border: 4px solid transparent;
 }

 .card:hover {
   transform: translateY(-4px);
   border-color: var(--azulEscuro);
 }

 .card a {
   color: var(--azulEscuro);
   text-decoration: none;
   font-size: 20px;
   font-weight: bold;
   display: block;
 }

 .card a i {
   margin-right: 8px;
 }

 .graficoCircularCentro::after {
   content: none !important;
 }

 #percent {
   font-size: 48px;
   font-weight: bold;
   color: var(--azulEscuro);
   font-family: inherit;
   display: flex;
   align-items: center;
   justify-content: center;
   height: 100%;
 }

 .graficoCircularPrincipal {
   width: 210px;
   height: 210px;
   border-radius: 50%;
   position: relative;
   display: inline-block;
   --percent: 0%;
   background: conic-gradient(var(--azul-escuro, #1a2f5eff) var(--percent), #30529bff 0);
 }

 .graficoCircularCentro {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 120px;
   height: 120px;
   background: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: bold;
 }

 .detalhes-acertos {
   margin-top: 20px;
   text-align: left;
 }

 .pergunta-resultado {
   border: 1px solid #ccc;
   padding: 10px;
   margin: 10px 0;
   border-radius: 5px;
 }

 .correta {
   background-color: #d4edda;
 }

 .errada {
   background-color: #f8d7da;
 }

 .actions {
   margin-top: 20px;
   display: flex;
   gap: 10px;
   justify-content: center;
 }

 /* ========== QUESTÃO ============ */
 .cartaoPergunta {
   background: white;
   padding: 28px;
   border-radius: 22px;
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
   margin-bottom: 25px;
 }

 .tituloGrande {
   text-align: center;
   margin-bottom: 25px;
   font-size: 32px;
   color: #1C2E80;
   font-weight: 700;
 }

 .enunciado {
   font-size: 24px;
   margin-bottom: 22px;
   font-weight: 600;
 }

 .grupoOpcoes {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }

 .opcaoQuest {
   padding: 18px 20px;
   border-radius: 16px;
   cursor: pointer;
   display: flex;
   gap: 16px;
   align-items: center;
   font-size: 20px;
   transition: 0.2s;
   border: 3px solid #0A2A59;
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
 }

 .opcaoQuest:hover {
   transform: scale(1.02);
   border-color: white;
 }

 .opcaoQuest input {
   transform: scale(1.5);
 }

 .botoesNavegacao {
   margin-top: 30px;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }

 .btnCancelar {
   width: 100%;
   background: #d9534f;
   color: white;
   padding: 14px;
   border-radius: 16px;
   border: none;
   font-size: 20px;
   font-weight: 600;
   cursor: pointer;
   transition: .2s;
 }

 .cartaoPergunta {
   padding-bottom: 60px !important;
 }

 .boxProgresso {
   margin-top: 15px;
   text-align: center;
 }

 progress {
   width: 100%;
   height: 22px;
 }

 /* ========== BOTÃO DE ÁUDIO - fer ============ */
 .botaoAudio {
   background: none;
   border: none;
   font-size: 26px;
   cursor: pointer;
   margin-left: 15px;
   color: #fff;
 }

 .botaoAudio:hover {
   transform: scale(1.1);
 }