/* Estilos Generales */
body { font-family: Arial, sans-serif; background-color: #f4f7f6; margin: 0; padding: 20px; display: flex; justify-content: center; align-items: center; min-height: 100vh;}
#app-container { width: 100%; max-width: 800px; background-color: #ffffff; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); padding: 40px; box-sizing: border-box; }
h1, h2 { color: #054B26; text-align: center; }
p { font-size: 16px; line-height: 1.6; color: #333333; margin-bottom: 1em; }

/* Formularios */
.form-group { margin-bottom: 20px; }
label { display: block; margin-bottom: 5px; font-weight: bold; color: #333; }
input[type="text"], input[type="email"], input[type="tel"] { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; }

/* Botones */
.btn { display: block; width: 100%; padding: 15px; border: none; border-radius: 5px; background-color: #045B2B; color: white; font-size: 16px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; margin-top: 10px; }
.btn:hover { background-color: #054B26; }
.btn:disabled { background-color: #cccccc; cursor: not-allowed; }

/* Cuestionario */
.question-block { margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.question-block p { font-size: 16px; font-weight: 600; color: #1D643E; margin-bottom: 15px; padding-left: 5px; }
.options label { display: flex; align-items: center; background-color: #f9f9f9; padding: 12px 15px; margin-bottom: 10px; border-radius: 5px; cursor: pointer; border: 1px solid #ddd; font-size: 16px; color: #333333; transition: background-color 0.2s ease, border-color 0.2s ease; }
code { font-family: 'Consolas', 'Monaco', monospace; background-color: #e8e8e8; padding: 3px 6px; border-radius: 4px; color: #b7381d; font-size: 0.95em; white-space: nowrap; }
.options label:hover { background-color: #e9f2ff; border-color: #1a73e8; }
input[type="radio"] { margin-right: 12px; transform: scale(1.2); cursor: pointer; }

/* Resultados */
#results-view { text-align: center; }
#results-view h2 { color: #1e8e3e; }
#results-view p { font-size: 18px; }
.cta-button { display: inline-block; margin-top: 20px; padding: 15px 30px; background-color: #045B2B; color: white; text-decoration: none; border-radius: 5px; font-weight: bold; }

/* Validación y Loader */
.error-text { color: #d93025; font-weight: bold; text-align: center; margin-top: 15px; }
#loader { text-align: center; font-size: 20px; display: none; }
.hidden { display: none; }

#pagination-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.btn-secondary {
    padding: 10px 20px;
    background-color: #e8e8e8;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}
.btn-secondary:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    color: #aaa;
}