@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

html,
body {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* body {
    background: #f5f5f5;
} */

.modal-content {
    color: black !important;
    background: white !important;
}

.quiz-step .question { border-radius: 20px; background: lightgrey; line-height: 50px;  margin-bottom: 10px; cursor: pointer;}
.quiz-step .question input[type="radio"] { height: 25px; width: 25px; margin-left: 10px; padding: 5px; margin-top: 10px; }
.quiz-step .question .answer { text-align: center; display: inline-block; line-height: 28px; width: 80%; padding: 10px;}

.modal { color: black !important;}
.required { color: red !important; font-size: 15px; font-weight: bold;}


/* =========================
    HEADER FIXO
========================= */

header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 80px;

    background: #ffffff;
    /* border-bottom: 1px solid #ddd; */

    display: flex;
    align-items: center;

    z-index: 1000;
}

.header-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    height: 80px;
}

.logo img{
  height: 100%;
}


/* =========================
    CONTEÚDO
========================= */

main {
    position: fixed;

    top: 80px;
    bottom: 60px;

    left: 0;
    right: 0;

    overflow-y: auto;
    overflow-x: hidden;

    padding: 30px 20px;
}

.content {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}


/* =========================
    IMAGEM
========================= */

.imagem-principal {
    display: block;

    width: 100%;
    /* height: auto; */
    max-height: calc(100vh - 80px);
    object-fit: contain;

    border-radius: 8px;
}

.imagem-principal.fixed {
    max-height: calc(100vh - 240px);
}


/* =========================
    TEXTO
========================= */

.texto {
    background: #ffffff;

    margin-top: 25px;
    padding: 30px;

    border-radius: 8px;
}

.texto h1 {
    margin-bottom: 15px;
}

.texto p {
    margin-bottom: 15px;
    line-height: 1.6;
}


/* =========================
    FOOTER FIXO
========================= */

footer {
    position: fixed;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 130px;

    background: #ffffff;
    /* border-top: 1px solid #ddd; */

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 1000;
}

.footer-content {
    font-size: 14px;
    color: #666;
}


/* =========================
    MOBILE
========================= */

@media only screen and (max-width:899px) {
    footer{
        padding: 10px;
        height: 180px;
    }

    .imagem-principal.fixed {
        max-height: calc(100vh - 290px);
    }
}

.blink-soft {
  animation: fade 2s linear infinite;
}

@keyframes fade {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}