body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

/* ------------------------------------------- */
/* --- ESTILOS DO CABEÇALHO E RODAPÉ --- */
/* ------------------------------------------- */
.main-header-container {
    display: flex;
    justify-content: center;
    background-color: #ffe600;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000; 
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
    padding: 10px 20px;
}

.logo-img {
    max-width: 150px;
    display: block;
}

.menu-icon {
    width: 15px;
    height: auto;
}

.footer-container {
    display: flex;
    justify-content: center;
    width: 90%;
    padding: 20px;
    padding-bottom: 20px;
    background-color: #fff;
    border-top: 1px solid #D1D5DB;
    text-align: left;
    font-size: 14px;
    color: #333;
}

.footer-container1 {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px;
    padding-bottom: 20px;
    background-color: #fff;
    border-top: 1px solid #D1D5DB;
    text-align: left;
    font-size: 14px;
    color: #333;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 12px;
    max-width: 1200px;
    color: #777;
    padding-bottom: 0;
    text-align: left;
}

/* ------------------------------------------- */
/* --- AJUSTES DE RESPONSIVIDADE (MOBILE) --- */
/* ------------------------------------------- */

@media (min-width: 1024px) {
    .menu-icon {
        display: none;
    }
    .main-header {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: none;
    }
    .main-header {
        justify-content: center;
    }

    .footer-bottom {
        width: auto;
        text-align: center;
    }
}
/* ------------------------------------------- */
/* --- FIM DOS ESTILOS CLONADOS --- */
/* ------------------------------------------- */


.container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    text-align: center;
    padding: 24px;
    box-sizing: border-box;
    margin: 20px 10px;
}

.header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.progress-bar-container {
    flex-grow: 1;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #1976d2;
    width: 0%;
    transition: width 0.3s ease-in-out;
    border-radius: 4px;
}

.progress-text {
    font-weight: bold;
    color: #1976d2;
}

.image-section img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.question-text {
    font-size: 20px;
    color: #000;
    margin: 0 0 20px 0;
}

.question-text1 {
    font-size: 20px;
    font-weight: 700;
    color: #1976d2;
    margin: 0 0 20px 0;
}

.thanks-text {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.options-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.option-button {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    border: 1px solid #ccc;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, border-color 0.3s;
}

.option-button:hover {
    background-color: #e9e9e9;
    border-color: #aaa;
}

.option-button.selected {
    background-color: #1976d2;
    color: #ffffff;
    border-color: #1976d2;
}

.next-button {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    background-color: #1976d2;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s ease-in-out;
}

.next-button:disabled {
    background-color: #8ab0d6;
    cursor: not-allowed;
}

.quiz-step {
    display: none;
}

.quiz-step.active-step {
    display: block;
}

.quiz-footer {
    margin-top: 24px;
}

.cta-button {
    font-family: 'Poppins', sans-serif;
    display: flex;
    width: 90%;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s ease-in-out;
    text-decoration: none;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    animation: pulse 2s infinite ease-in-out;
}

.cta-button:hover {
    background-color: #218838;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

/* =========================================== */
/* === Classes para Ocultar Itens (Responsivo) === */
/* =========================================== */

/*
  Use a classe "div-desktop" em um elemento que você quer que
  APAREÇA APENAS EM TELAS PEQUENAS (Mobile).
  Ele será ocultado em telas maiores que 768px.
*/
@media (min-width: 769px) {
    .div-desktop {
        display: none !important;
    }
}

/*
  Use a classe "div-mobile" em um elemento que você quer que
  APAREÇA APENAS EM TELAS GRANDES (Desktop).
  Ele será ocultado em telas menores ou iguais a 768px.
*/
@media (max-width: 768px) {
    .div-mobile {
        display: none !important;
    }
}