/* -------------------------------------------
   CONTENEDOR GENERAL DEL TEST
------------------------------------------- */
#fti-test-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

#fti-test-container h2 {
    margin-bottom: 20px;
}

/* -------------------------------------------
   BARRA DE PROGRESO
------------------------------------------- */
#fti-progress-bar {
    width: 100%;
    height: 10px;
    background: #e5e5e5;
    border-radius: 5px;
    margin-bottom: 25px;
    overflow: hidden;
}

#fti-progress {
    height: 10px;
    width: 0;
    background: #2c7dec;
    transition: width 0.3s ease;
}

/* -------------------------------------------
   PÁGINAS DEL TEST
------------------------------------------- */
.fti-page {
    display: none;
}

.fti-page.active {
    display: block;
}

/* -------------------------------------------
   CAMPOS INICIALES
------------------------------------------- */
#fti-test-form input[type="text"],
#fti-test-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 12px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* -------------------------------------------
   PREGUNTAS
------------------------------------------- */
.fti-question {
    margin-bottom: 20px;
}

.fti-question p {
    font-weight: bold;
    margin-bottom: 8px;
}

.fti-question label {
    margin-right: 20px;
}

/* -------------------------------------------
   BOTONES
------------------------------------------- */
.fti-next,
#fti-submit-button {
    padding: 12px 20px;
    background: #2c7dec;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
}

.fti-next:hover,
#fti-submit-button:hover {
    background: #1b5fb8;
}

/* -------------------------------------------
   RESUMEN FINAL
------------------------------------------- */
#fti-summary {
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    background: #fafafa;
}
