* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('Ubuntu-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('Ubuntu-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('Ubuntu-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Ubuntu';
    font-size: 20px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    color: #212121;
}

body {
    background-image: url(../imagens/fundo.png);
    background-size: cover;
    background-position: bottom;
}

header,
footer {
    padding: 1rem;
}

footer {
    background-color: #ffffff;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 2rem;
    border-radius: 8% 8% 0 0;
    background-color: #ffffff;
}

h1 {
    font-size: 8vw;
    font-weight: bold;
    color: #212121;
    text-align: center;
}

h2 {
    font-size: 4vw;
    color: #212121;
    text-align: center;
}

h3 {
    font-size: 3vw;
    font-weight: normal;
}

h4 {
    font-size: 2vw;
    font-weight: lighter;
}

.btn-quiz {
    background-color: #7a4de7;
    border: 2px solid #7a4de7;
    color: #ffffff;
    padding: .5vw 3.5vw;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 5.5vw;
    cursor: pointer;
    border-radius: 100px;
}

.btn-quiz:hover,
.btn-quiz:focus {
    background-color: #ffffff;
    border: 2px solid #7a4de7;
    color: #7a4de7;
}

.btn-back:not(.btn-quiz) {
    font-size: 1vw;
    cursor: pointer;
}

.btn-next:not(.btn-quiz) {
    font-size: 2.5vw;
    cursor: pointer;
}

label:not(.label-radio) {
    font-size: 2.5vw;
}

label.pergunta {
    line-height: 1;
}

input[type="text"],
input[type="email"] {
    font-size: 1.5vw;
    border: 1px solid #ccc;
    border-radius: 1vw;
}

.label-radio {
    border: 2px solid #7a4de7;
    background-color: #ffffff;
    color: #212121;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    border-radius: 50px;
    width: 650px;

    /* alinhamento */
    display: flex;
    align-items: center;
    gap: 10px;
    /* espaço entre a bolinha e o texto */
    font-size: 2.3vw;
}

/* .label-radio input {
    display: none;
} */

.radio-content {
    display: flex;
    align-items: center;
}

.bullet {
    width: 50px;
    flex-shrink: 0;
    /* não deixa a imagem reduzir */
}

.radio-text {
    display: inline-block;
    line-height: 1.4;
}

input[type="radio"] {
    height: 50px;
    width: 50px;
    vertical-align: middle;
    flex-shrink: 0; /* Prevent shrinking */
}

.modal-informativo h1 {
    font-size: 4.5vw;
}

.texto-azul {
    color: #45c0f0 !important;
}

.texto-roxo {
    color: #b400ff !important;
}

.texto-azul-roxo {
    color: #5160ff !important;
}

.modal-informativo .btn-quiz{
    font-size: 4vw;
}

.texto-smart{
    color: #ffffff !important;
    background-color: #45c0f0 I !important;
}

.texto-telemetria{
    color: #ffffff !important;
    background-color: #b400ff !important;
}

.texto-videotelemetria{
    color: #ffffff !important;
    background-color: #8300ff !important;
}

.texto-flex{
    color: #ffffff !important;
    background-color: #5160ff !important;
}

.btn-quiz.spin-btn{
    padding: 0;
    width: 200px;
    height: 100px;
    box-shadow: 0px 0px 10px;
}

hr{
    opacity: 1;
    border-top: 1px solid #b400ff;
}

.modal-content {
    border-radius: 100px;
}

input[type="radio"]:checked {
    accent-color: #b400ff; /* Altera a cor para vermelho quando checado */
}

#logo-rodape{
    width: 10vw;
}