/* Layout Principal */
.survey-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 20px;
}

/* Campos de Entrada */
.full-width {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 12px;
    margin: 8px 0 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

/* Seções */
.form-section {
    background: #fff;
    padding: 25px;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.section-title {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 15px;
    margin: 0 auto 25px;
    text-align: center;
    width: 80%;
}

/* Perguntas */
.survey-question {
    font-weight: 600;
    margin: 25px 0 15px;
    color: #2c3e50;
    font-size: 16px;
}

.survey-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.survey-options label {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.survey-options label:hover {
    background: #e9ecef;
}

/* Status de Verificação */
#verification-status {
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
}

#verification-status.loading {
    background: #e3f2fd;
    color: #0d47a1;
}

#verification-status.success {
    background: #e8f5e9;
    color: #2e7d32;
}

#verification-status.error {
    background: #ffebee;
    color: #c62828;
}

/* Dados da Empresa */
#company-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

#company-info h3 {
    color: #2c3e50;
    margin: 0 0 10px;
}

#company-info p {
    color: #666;
    margin: 5px 0;
}

/* Data Fixa */
#data {
    background: #f8f9fa;
    cursor: not-allowed;
}