/* Exemplo de reset de CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;

    font-family: 'Montserrat', sans-serif;
}

/* Carrossel Pequeno */
.testimonial-carousel-small {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  margin: 20px 0;
  border-radius: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}

.carousel-track-small {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-small {
  min-width: 100%;
}

.testimonial-small p {
  margin: 5px 0;
}

.testimonial-small h4 {
  margin: 0;
  font-weight: bold;
  font-size: 13px;
  color: #ffd700;
}

.carousel-btn-small {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 50%;
}

.carousel-btn-small:hover {
  background: rgba(255,255,255,0.3);
}

.carousel-btn-small.prev-small {
  left: 10px;
}

.carousel-btn-small.next-small {
  right: 10px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0px 20px 30px;
    text-align: center;
}

.header {
    background-color: #006336;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: center;
    border-bottom: 2px solid black;
}

.header img {
    width: 37px;
    margin: 20px 0px;
}

.valor-desconto{
   display: flex;
   justify-content:end;
   color: red;
  
}

.valor-total{
    display: flex;
    justify-content:end;
    color: green;
}

.valor-total p{
    font-weight: bold;
    margin: 0px;
}

.valor-desconto p{
    font-weight: bold;
}
.titllee {
    font-size: 16px;
    display: flex;
    text-align: center;
    margin-top: 30px;
    justify-content: center;
    margin-bottom: 20px;
}


.popUp-dica {
    background-color: #dfdfdf;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(114, 114, 114);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: relative;
    bottom: 500px;
    margin: 20px;
  
}

.dica-p  {
    font-weight: 400;
}
.dica-errado{
    font-weight: 800;
}

.selecione-resposta {
    background-color: #dfdfdf;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(114, 114, 114);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: relative;
    bottom: 400px;
    margin: 20px;
  
}

.selecione-resposta-p {
    font-weight: 800;

}


.opacity {
    opacity: 0.3;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgb(0, 0, 0);
    color: white;
    text-align: center;
    padding: 5px 0;       /* altura bem menor */
    font-size: 10px;      /* texto bem pequeno */
    z-index: -1;
}



.content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(114, 114, 114);
}

.btn {
    background-color: red;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    /* Suaviza a transição */
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 30px;
}

p {
    font-size: 16px;
    font-weight: 500;
}

.btn:hover {
    background-color: rgb(7, 100, 38);
}

.options {
    margin-top: 20px;
}

.btn {
    background-color:rgb(16, 150, 56);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    /* Suaviza a transição */
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    width: 100%;
}

.options button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid red
    ;
    background-color: #f1f1f1;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 20px;
    font-size: 17px;
}

/* Estilo para o botão correto quando selecionado */
.options button.correct-selected {
    background-color: green;
    color: white;
    opacity: 0.6;
}

/* Estilo para o botão incorreto quando selecionado */
.options button.incorrect-selected {
    background-color: rgb(136, 82, 82);
    color: white;
    opacity: 0.4;
}

/* Estilo padrão para botão, removendo a necessidade de :focus */
.options button {
    outline: none;
    cursor: pointer;
}

.hidden {
    display: none;
}

/* Estilos padrões para os botões */
.option {
    background-color: #f4f4f4;
    color: rgb(0, 0, 0);
    border: 1px solid #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
    /* Suaviza a transição */
}

.btn-resgate{
    
    text-decoration: none;
}

.p-resgate{
    margin-bottom: 30px;
    
}